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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
/*
kirc_commands.h - IRC Client
Copyright (c) 2003-2004 by Michel Hermier <michel.hermier@wanadoo.fr>
Copyright (c) 2002 by Nick Betcher <nbetcher@kde.org>
Copyright (c) 2003 by Jason Keirstead <jason@keirstead.org>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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. *
* *
*************************************************************************
*/
#include "kircengine.h"
#include <kextsock.h>
#include <qtimer.h>
using namespace KIRC;
void Engine::bindCommands()
{
bind("ERROR", this, SLOT(error(KIRC::Message &)), 0, 0);
bind("JOIN", this, SLOT(join(KIRC::Message &)), 0, 1);
bind("KICK", this, SLOT(kick(KIRC::Message &)), 2, 2);
bind("NICK", this, SLOT(nick(KIRC::Message &)), 0, 0);
bind("MODE", this, SLOT(mode(KIRC::Message &)), 1, 1);
bind("NOTICE", this, SLOT(notice(KIRC::Message &)), 1, 1);
bind("PART", this, SLOT(part(KIRC::Message &)), 1, 1);
bind("PING", this, SLOT(ping(KIRC::Message &)), 0, 0);
bind("PONG", this, SLOT(pong(KIRC::Message &)), 0, 0);
bind("PRIVMSG", this, SLOT(privmsg(KIRC::Message &)), 1, 1);
bind("QUIT", this, SLOT(quit(KIRC::Message &)), 0, 0);
// bind("SQUIT", this, SLOT(squit(KIRC::Message &)), 1, 1);
bind("TOPIC", this, SLOT(topic(KIRC::Message &)), 1, 1);
}
void Engine::away(bool isAway, const QString &awayMessage)
{
if(isAway)
if( !awayMessage.isEmpty() )
writeMessage("AWAY", QString::null, awayMessage);
else
writeMessage("AWAY", QString::null, QString::fromLatin1("I'm away."));
else
writeMessage("AWAY", QString::null);
}
// FIXME: Really handle this message
void Engine::error(Message &)
{
setStatus(Closing);
}
void Engine::ison(const QStringList &nickList)
{
if (!nickList.isEmpty())
{
QString statement = QString::fromLatin1("ISON");
for (QStringList::ConstIterator it = nickList.begin(); it != nickList.end(); ++it)
{
if ((statement.length()+(*it).length())>509) // 512(max buf)-2("\r\n")-1(<space separator>)
{
writeMessage(statement);
statement = QString::fromLatin1("ISON ") + (*it);
}
else
statement.append(QChar(' ') + (*it));
}
writeMessage(statement);
}
}
void Engine::join(const QString &name, const QString &key)
{
QStringList args(name);
if ( !key.isNull() )
args << key;
writeMessage("JOIN", args);
}
void Engine::join(Message &msg)
{
/* RFC say: "( <channel> *( "," <channel> ) [ <key> *( "," <key> ) ] ) / "0""
* suspected: ":<channel> *(" "/"," <channel>)"
* assumed ":<channel>"
* This is the response of someone joining a channel.
* Remember that this will be emitted when *you* /join a room for the first time */
if (msg.argsSize()==1)
emit incomingJoinedChannel(Kopete::Message::unescape(msg.arg(0)), msg.nickFromPrefix());
else
emit incomingJoinedChannel(Kopete::Message::unescape(msg.suffix()), msg.nickFromPrefix());
}
void Engine::kick(const QString &user, const QString &channel, const QString &reason)
{
writeMessage("KICK", QStringList(channel) << user << reason);
}
void Engine::kick(Message &msg)
{
/* The given user is kicked.
* "<channel> *( "," <channel> ) <user> *( "," <user> ) [<comment>]"
*/
emit incomingKick( Kopete::Message::unescape(msg.arg(0)), msg.nickFromPrefix(), msg.arg(1), msg.suffix());
}
void Engine::mode(const QString &target, const QString &mode)
{
writeMessage("MODE", QStringList(target) << mode);
}
void Engine::mode(Message &msg)
{
/* Change the mode of a user.
* "<nickname> *( ( "+" / "-" ) *( "i" / "w" / "o" / "O" / "r" ) )"
*/
QStringList args = msg.args();
args.pop_front();
if( Entity::isChannel( msg.arg(0) ) )
emit incomingChannelModeChange( msg.arg(0), msg.nickFromPrefix(), args.join(" "));
else
emit incomingUserModeChange( msg.nickFromPrefix(), args.join(" "));
}
void Engine::nick(const QString &newNickname)
{
m_PendingNick = newNickname;
writeMessage("NICK", newNickname);
}
void Engine::nick(Message &msg)
{
/* Nick name of a user changed
* "<nickname>" */
QString oldNick = msg.prefix().section('!', 0, 0);
QString newNick = msg.suffix();
if( codecs[ oldNick ] )
{
QTextCodec *c = codecs[ oldNick ];
codecs.remove( oldNick );
codecs.insert( newNick, c );
}
if (oldNick.lower() == m_Nickname.lower())
{
emit successfullyChangedNick(oldNick, msg.suffix());
m_Nickname = msg.suffix();
}
else
emit incomingNickChange(oldNick, msg.suffix());
}
void Engine::part(const QString &channel, const QString &reason)
{
/* This will part a channel with 'reason' as the reason for parting
*/
writeMessage("PART", channel, reason);
}
void Engine::part(Message &msg)
{
/* This signal emits when a user parts a channel
* "<channel> *( "," <channel> ) [ <Part Message> ]"
*/
kdDebug(14120) << "User parting" << endl;
emit incomingPartedChannel(msg.arg(0), msg.nickFromPrefix(), msg.suffix());
}
void Engine::pass(const QString &password)
{
writeMessage("PASS", password);
}
void Engine::ping(Message &msg)
{
writeMessage("PONG", msg.arg(0), msg.suffix());
}
void Engine::pong(Message &/*msg*/)
{
}
void Engine::quit(const QString &reason, bool /*now*/)
{
kdDebug(14120) << k_funcinfo << reason << endl;
if (isDisconnected())
return;
if (isConnected())
writeMessage("QUIT", QString::null, reason);
setStatus(Closing);
}
void Engine::quit(Message &msg)
{
/* This signal emits when a user quits irc.
*/
kdDebug(14120) << "User quiting" << endl;
emit incomingQuitIRC(msg.prefix(), msg.suffix());
}
void Engine::user(const QString &newUserName, const QString &hostname, const QString &newRealName)
{
/* RFC1459: "<username> <hostname> <servername> <realname>"
* The USER command is used at the beginning of connection to specify
* the username, hostname and realname of a new user.
* hostname is usualy set to "127.0.0.1" */
m_Username = newUserName;
m_realName = newRealName;
writeMessage("USER", QStringList(m_Username) << hostname << m_Host, m_realName);
}
void Engine::user(const QString &newUserName, Q_UINT8 mode, const QString &newRealName)
{
/* RFC2812: "<user> <mode> <unused> <realname>"
* mode is a numeric value (from a bit mask).
* 0x00 normal
* 0x04 request +w
* 0x08 request +i */
m_Username = newUserName;
m_realName = newRealName;
writeMessage("USER", QStringList(m_Username) << QString::number(mode) << QChar('*'), m_realName);
}
void Engine::topic(const QString &channel, const QString &topic)
{
writeMessage("TOPIC", channel, topic);
}
void Engine::topic(Message &msg)
{
/* The topic of a channel changed. emit the channel, new topic, and the person who changed it.
* "<channel> [ <topic> ]"
*/
emit incomingTopicChange(msg.arg(0), msg.nickFromPrefix(), msg.suffix());
}
void Engine::list()
{
writeMessage("LIST", QString::null);
}
void Engine::motd(const QString &server)
{
writeMessage("MOTD", server);
}
void Engine::privmsg(const QString &contact, const QString &message)
{
writeMessage("PRIVMSG", contact, message, codecForNick( contact ) );
}
void Engine::privmsg(Message &msg)
{
/* This is a signal that indicates there is a new message.
* This can be either from a channel or from a specific user. */
Message m = msg;
if (!m.suffix().isEmpty())
{
QString user = m.arg(0);
QString message = m.suffix();
const QTextCodec *codec = codecForNick( user );
if (codec != defaultCodec) {
m.decodeAgain( codec );
message = m.suffix();
}
if (Entity::isChannel(user))
emit incomingMessage(m.nickFromPrefix(), Kopete::Message::unescape(m.arg(0)), message );
else
emit incomingPrivMessage(m.nickFromPrefix(), Kopete::Message::unescape(m.arg(0)), message );
// emit receivedMessage(PrivateMessage, msg.entityFrom(), msg.entityTo(), message);
}
if( m.hasCtcpMessage() )
{
invokeCtcpCommandOfMessage(m_ctcpQueries, m);
}
}
void Engine::notice(const QString &target, const QString &message)
{
writeMessage("NOTICE", target, message);
}
void Engine::notice(Message &msg)
{
if(!msg.suffix().isEmpty())
emit incomingNotice(msg.prefix(), msg.suffix());
if(msg.hasCtcpMessage())
invokeCtcpCommandOfMessage(m_ctcpReplies, msg);
}
void Engine::whois(const QString &user)
{
writeMessage("WHOIS", user);
}
|