X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=52ecb6a56435bec240b45c987f96cb9011534551;hp=591c86fbe2a773350bc1427f86a9ff79a71e66b7;hb=712781ef33198acb7267e02ee6f8f9bfc8598d5a;hpb=d1b6499b0b848d4287efae89107576548533502c diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 591c86fb..52ecb6a5 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-10 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,54 +18,45 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _IRCSERVERHANDLER_H_ -#define _IRCSERVERHANDLER_H_ +#ifndef IRCSERVERHANDLER_H +#define IRCSERVERHANDLER_H -#include "basichandler.h" +#include "corebasichandler.h" +#include "netsplit.h" -class IrcServerHandler : public BasicHandler { +class IrcServerHandler : public CoreBasicHandler { Q_OBJECT public: - IrcServerHandler(NetworkConnection *parent); + IrcServerHandler(CoreNetwork *parent); ~IrcServerHandler(); void handleServerMsg(QByteArray rawMsg); - QString serverDecode(const QByteArray &string); - QStringList serverDecode(const QList &stringlist); - QString bufferDecode(const QString &bufferName, const QByteArray &string); - QStringList bufferDecode(const QString &bufferName, const QList &stringlist); - QString userDecode(const QString &userNick, const QByteArray &string); - QStringList userDecode(const QString &userNick, const QList &stringlist); +public slots: + void handleNotice(const QString &prefix, const QList ¶ms); + void handlePrivmsg(const QString &prefix, const QList ¶ms); + void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); -public slots: - void handleJoin(QString, QList); - void handleKick(QString, QList); - void handleMode(QString, QList); - void handleNick(QString, QList); - void handleNotice(QString, QList); - void handlePart(QString, QList); - void handlePing(QString, QList); - void handlePrivmsg(QString, QList); - void handleQuit(QString, QList); - void handleTopic(QString, QList); +private: + void tryNextNick(const QString &errnick, bool erroneus = false); + bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams); - void handle001(QString, QList); // RPL_WELCOME - void handle005(QString, QList); // RPL_ISUPPORT - void handle331(QString, QList); // RPL_NOTOPIC - void handle332(QString, QList); // RPL_TOPIC - void handle333(QString, QList); // Topic set by... - void handle353(QString, QList); // RPL_NAMREPLY - void handle432(QString, QList); // ERR_ERRONEUSNICKNAME - void handle433(QString, QList); // ERR_NICKNAMEINUSE + // holds the target for numeric replies or is invalid otherwise + inline const QString &target() const { return _target; } - void defaultHandler(QString cmd, QString prefix, QList params); + bool _whois; + QString _target; - private: - NetworkConnection *server; -}; + // structure to organize netsplits + // key: quit message + // value: the corresponding netsplit object + QHash _netsplits; +#ifdef HAVE_QCA2 + QByteArray decrypt(const QString &target, const QByteArray &message, bool isTopic = false); +#endif +}; #endif