Files
@ 8d9a5fe3d8e3
Branch filter:
Location: libtransport.git/backends/libcommuni/session.h - annotation
8d9a5fe3d8e3
3.7 KiB
text/plain
add new repo for yowsup
Changed yowsup repo to maintained one
Changed yowsup repo to maintained one
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | addac0040c4a addac0040c4a e312a8602ec7 addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a addac0040c4a e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 47b1db7f432c c83fd4c4b188 79b69c4005d6 79b69c4005d6 79b69c4005d6 78e71f9345c7 1c5504d7c60b 1c5504d7c60b 11a084deb042 47b1db7f432c e312a8602ec7 e312a8602ec7 e312a8602ec7 0e56fb848472 0e56fb848472 c83fd4c4b188 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 0e56fb848472 11a084deb042 e312a8602ec7 79b69c4005d6 e312a8602ec7 58fbe0d388c6 58fbe0d388c6 58fbe0d388c6 58fbe0d388c6 efd14b776ccc a32e962a1a97 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 79b69c4005d6 79b50300351f 79b69c4005d6 79b69c4005d6 79b69c4005d6 e312a8602ec7 ab4740c7b632 ab4740c7b632 79b69c4005d6 ab4740c7b632 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 e312a8602ec7 5c2d081a315c ab4740c7b632 79b69c4005d6 e312a8602ec7 58fbe0d388c6 58fbe0d388c6 e312a8602ec7 e312a8602ec7 e312a8602ec7 0e56fb848472 e312a8602ec7 79b69c4005d6 79b69c4005d6 79b69c4005d6 79b69c4005d6 79b69c4005d6 79b69c4005d6 79b69c4005d6 79b69c4005d6 e312a8602ec7 11a084deb042 e312a8602ec7 ab4740c7b632 e312a8602ec7 ba5c6ce41e34 79b69c4005d6 ba5c6ce41e34 e312a8602ec7 e312a8602ec7 9e84e718548d 3201977efb6a 3201977efb6a a32e962a1a97 11a084deb042 ba5c6ce41e34 ab4740c7b632 79b69c4005d6 e312a8602ec7 e312a8602ec7 e312a8602ec7 | /**
* XMPP - libpurple transport
*
* Copyright (C) 2013, Jan Kaluza <hanzz.k@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#ifndef SESSION_H
#define SESSION_H
#ifndef Q_MOC_RUN
#include <IrcConnection>
#include <IrcBufferModel>
#include <IrcBuffer>
#include <IrcUserModel>
#include <transport/NetworkPlugin.h>
#include "Swiften/Swiften.h"
#include <boost/smart_ptr/make_shared.hpp>
#include <QTimer>
#endif
using namespace Transport;
class IRCNetworkPlugin;
class MyIrcSession : public IrcConnection
{
Q_OBJECT
public:
MyIrcSession(const std::string &user, IRCNetworkPlugin *np, const std::string &suffix = "", QObject* parent = 0);
virtual ~MyIrcSession();
void createBufferModel();
// We are sending PM message. On XMPP side, user is sending PM using the particular channel,
// for example #room@irc.freenode.org/hanzz. On IRC side, we are forwarding this message
// just to "hanzz". Therefore we have to somewhere store, that message from "hanzz" should
// be mapped to #room@irc.freenode.org/hanzz.
void addPM(const std::string &name, const std::string &room);
void setIdentify(const std::string &identify) {
m_identify = identify;
}
const std::string &getIdentify() {
return m_identify;
}
bool hasIrcUser(const std::string &channel, const std::string &name);
void correctNickname(std::string &nick);
IrcUser *getIrcUser(IrcBuffer *buffer, IrcMessage *message);
IrcUser *getIrcUser(IrcBuffer *buffer, std::string &nick);
void sendWhoisCommand(const std::string &channel, const std::string &to);
void sendMessageToFrontend(const std::string &channel, const std::string &nickname, const std::string &msg);
void sendUserToFrontend(IrcUser *user, pbnetwork::StatusType statusType, const std::string &statusMessage = "", const std::string &newNick = "");
void on_joined(IrcMessage *message);
void on_parted(IrcMessage *message);
void on_quit(IrcMessage *message);
void on_nickChanged(IrcMessage *message);
void on_topicChanged(IrcMessage *message);
void on_messageReceived(IrcMessage *message);
void on_numericMessageReceived(IrcMessage *message);
void on_noticeMessageReceived(IrcMessage *message);
void on_whoisMessageReceived(IrcMessage *message);
void on_namesMessageReceived(IrcMessage *message);
int rooms;
protected Q_SLOTS:
void on_connected();
void on_disconnected();
void on_socketError(QAbstractSocket::SocketError error);
void onBufferAdded(IrcBuffer* buffer);
void onBufferRemoved(IrcBuffer* buffer);
void onIrcUserAdded(IrcUser *user);
void onIrcUserChanged(const QString &);
void onIrcUserChanged(bool);
void onIrcUserRemoved(IrcUser *user);
void onMessageReceived(IrcMessage* message);
void awayTimeout();
protected:
IRCNetworkPlugin *m_np;
IrcBufferModel *m_bufferModel;
std::string m_user;
std::string m_identify;
std::string m_topicData;
bool m_connected;
std::list<std::string> m_rooms;
std::list<std::string> m_names;
std::map<std::string, std::string> m_pms;
QTimer *m_awayTimer;
std::string m_suffix;
std::map<std::string, std::string> m_whois;
QHash<IrcBuffer*, IrcUserModel*> m_userModels;
};
#endif // SESSION_H
|