You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
221 lines
7.3 KiB
221 lines
7.3 KiB
/*
|
|
ircservercontact.cpp - IRC Server Contact
|
|
|
|
Copyright (c) 2003 by Michel Hermier <mhermier@kde.org>
|
|
Copyright (c) 2002 by Nick Betcher <nbetcher@kde.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 "ircusercontact.h"
|
|
#include "ircservercontact.h"
|
|
#include "ircaccount.h"
|
|
#include "ircprotocol.h"
|
|
|
|
#include "kopetechatsessionmanager.h"
|
|
#include "kopeteview.h"
|
|
|
|
#include <kaction.h>
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
|
|
#include <tqtimer.h>
|
|
|
|
IRCServerContact::IRCServerContact(IRCContactManager *contactManager, const TQString &servername, Kopete::MetaContact *m)
|
|
: IRCContact(contactManager, servername, m, "irc_server")
|
|
{
|
|
KIRC::Engine *engine = kircEngine();
|
|
|
|
TQObject::connect(engine, TQT_SIGNAL(internalError(KIRC::Engine::Error, KIRC::Message &)),
|
|
this, TQT_SLOT(engineInternalError(KIRC::Engine::Error, KIRC::Message &)));
|
|
/*
|
|
//FIXME: Have some kind of a debug option for raw input/ouput display??
|
|
TQObject::connect(engine, TQT_SIGNAL(sentMessage(KIRC::Message &)),
|
|
this, TQT_SLOT(engineSentMessage(KIRC::Message &)));
|
|
TQObject::connect(engine, TQT_SIGNAL(receivedMessage(KIRC::Message &)),
|
|
this, TQT_SLOT(engineReceivedMessage(KIRC::Message &)));
|
|
*/
|
|
|
|
TQObject::connect(engine, TQT_SIGNAL(incomingNotice(const TQString &, const TQString &)),
|
|
this, TQT_SLOT(slotIncomingNotice(const TQString &, const TQString &)));
|
|
|
|
TQObject::connect(engine, TQT_SIGNAL(incomingCannotSendToChannel(const TQString &, const TQString &)),
|
|
this, TQT_SLOT(slotCannotSendToChannel(const TQString &, const TQString &)));
|
|
|
|
TQObject::connect(engine, TQT_SIGNAL(incomingUnknown(const TQString &)),
|
|
this, TQT_SLOT(slotIncomingUnknown(const TQString &)));
|
|
|
|
TQObject::connect(engine, TQT_SIGNAL(incomingConnectString(const TQString &)),
|
|
this, TQT_SLOT(slotIncomingConnect(const TQString &)));
|
|
|
|
TQObject::connect(engine, TQT_SIGNAL(incomingMotd(const TQString &)),
|
|
this, TQT_SLOT(slotIncomingMotd(const TQString &)));
|
|
|
|
TQObject::connect(Kopete::ChatSessionManager::self(), TQT_SIGNAL(viewCreated(KopeteView*)),
|
|
this, TQT_SLOT(slotViewCreated(KopeteView*)) );
|
|
|
|
updatetqStatus();
|
|
}
|
|
|
|
void IRCServerContact::updatetqStatus()
|
|
{
|
|
KIRC::Engine::tqStatus status = kircEngine()->status();
|
|
switch( status )
|
|
{
|
|
case KIRC::Engine::Idle:
|
|
case KIRC::Engine::Connecting:
|
|
if( m_chatSession )
|
|
m_chatSession->setDisplayName( caption() );
|
|
setOnlineStatus( m_protocol->m_ServerStatusOffline );
|
|
break;
|
|
|
|
case KIRC::Engine::Authentifying:
|
|
case KIRC::Engine::Connected:
|
|
case KIRC::Engine::Closing:
|
|
// should make some extra check here
|
|
setOnlineStatus( m_protocol->m_ServerStatusOnline );
|
|
break;
|
|
|
|
default:
|
|
setOnlineStatus( m_protocol->m_StatusUnknown );
|
|
}
|
|
}
|
|
|
|
const TQString IRCServerContact::caption() const
|
|
{
|
|
return i18n("%1 @ %2").tqarg(ircAccount()->mySelf()->nickName() ).tqarg(
|
|
kircEngine()->currentHost().isEmpty() ? ircAccount()->networkName() : kircEngine()->currentHost()
|
|
);
|
|
}
|
|
|
|
void IRCServerContact::engineInternalError(KIRC::Engine::Error engineError, KIRC::Message &ircmsg)
|
|
{
|
|
TQString error;
|
|
switch (engineError)
|
|
{
|
|
case KIRC::Engine::ParsingFailed:
|
|
error = i18n("KIRC Error - Parse error: ");
|
|
break;
|
|
case KIRC::Engine::UnknownCommand:
|
|
error = i18n("KIRC Error - Unknown command: ");
|
|
break;
|
|
case KIRC::Engine::UnknownNumericReply:
|
|
error = i18n("KIRC Error - Unknown numeric reply: ");
|
|
break;
|
|
case KIRC::Engine::InvalidNumberOfArguments:
|
|
error = i18n("KIRC Error - Invalid number of arguments: ");
|
|
break;
|
|
case KIRC::Engine::MethodFailed:
|
|
error = i18n("KIRC Error - Method failed: ");
|
|
break;
|
|
default:
|
|
error = i18n("KIRC Error - Unknown error: ");
|
|
}
|
|
|
|
ircAccount()->appendMessage(error + TQString(ircmsg.raw()), IRCAccount::ErrorReply);
|
|
}
|
|
|
|
void IRCServerContact::slotSendMsg(Kopete::Message &, Kopete::ChatSession *manager)
|
|
{
|
|
manager->messageSucceeded();
|
|
Kopete::Message msg( manager->myself(), manager->members(),
|
|
i18n("You can not talk to the server, you can only issue commands here. Type /help for supported commands."), Kopete::Message::Internal, Kopete::Message::PlainText, CHAT_VIEW);
|
|
manager->appendMessage(msg);
|
|
}
|
|
|
|
void IRCServerContact::appendMessage( const TQString &message )
|
|
{
|
|
Kopete::ContactPtrList members;
|
|
members.append( this );
|
|
Kopete::Message msg( this, members, message, Kopete::Message::Internal,
|
|
Kopete::Message::RichText, CHAT_VIEW );
|
|
appendMessage(msg);
|
|
}
|
|
|
|
void IRCServerContact::slotIncomingNotice( const TQString &orig, const TQString ¬ice )
|
|
{
|
|
if (orig.isEmpty()) {
|
|
// Prefix missing.
|
|
// NOTICE AUTH :*** Checking Ident
|
|
|
|
ircAccount()->appendMessage(i18n("NOTICE from %1: %2").tqarg(kircEngine()->currentHost(), notice),
|
|
IRCAccount::NoticeReply);
|
|
|
|
} else {
|
|
// :Global!service@rizon.net NOTICE foobar :[Logon News - Oct 12 2005] Due to growing problems ...
|
|
// :somenick!~fooobar@somehostname.fi NOTICE foobar :hello
|
|
|
|
if (orig.contains('!')) {
|
|
ircAccount()->appendMessage(i18n("NOTICE from %1 (%2): %3").tqarg(
|
|
orig.section('!', 0, 0),
|
|
orig.section('!', 1, 1),
|
|
notice),
|
|
IRCAccount::NoticeReply);
|
|
} else {
|
|
ircAccount()->appendMessage(i18n("NOTICE from %1: %2").tqarg(
|
|
orig, notice), IRCAccount::NoticeReply);
|
|
}
|
|
}
|
|
}
|
|
|
|
void IRCServerContact::slotIncomingUnknown(const TQString &message)
|
|
{
|
|
ircAccount()->appendMessage(message, IRCAccount::UnknownReply);
|
|
}
|
|
|
|
void IRCServerContact::slotIncomingConnect(const TQString &message)
|
|
{
|
|
ircAccount()->appendMessage(message, IRCAccount::ConnectReply);
|
|
}
|
|
|
|
void IRCServerContact::slotIncomingMotd(const TQString &message)
|
|
{
|
|
ircAccount()->appendMessage(message, IRCAccount::InfoReply);
|
|
}
|
|
|
|
void IRCServerContact::slotCannotSendToChannel(const TQString &channel, const TQString &message)
|
|
{
|
|
ircAccount()->appendMessage(TQString::tqfromLatin1("%1: %2").tqarg(channel).tqarg(message), IRCAccount::ErrorReply);
|
|
}
|
|
|
|
void IRCServerContact::appendMessage(Kopete::Message &msg)
|
|
{
|
|
msg.setImportance( Kopete::Message::Low ); //to don't distrub the user
|
|
|
|
if (m_chatSession && m_chatSession->view(false))
|
|
m_chatSession->appendMessage(msg);
|
|
/*
|
|
// disable the buffering for now: cause a memleak since we don't made it a *fixed size fifo*
|
|
else
|
|
mMsgBuffer.append( msg );
|
|
*/
|
|
}
|
|
|
|
void IRCServerContact::slotDumpMessages()
|
|
{
|
|
if (!mMsgBuffer.isEmpty())
|
|
{
|
|
manager()->appendMessage( mMsgBuffer.front() );
|
|
mMsgBuffer.pop_front();
|
|
TQTimer::singleShot( 0, this, TQT_SLOT( slotDumpMessages() ) );
|
|
}
|
|
}
|
|
|
|
void IRCServerContact::slotViewCreated( KopeteView *v )
|
|
{
|
|
kdDebug(14121) << k_funcinfo << "Created: " << v << ", mgr: " << v->msgManager() << ", Mine: " << m_chatSession << endl;
|
|
if (m_chatSession && v->msgManager() == m_chatSession)
|
|
TQTimer::singleShot(500, this, TQT_SLOT(slotDumpMessages()));
|
|
}
|
|
|
|
#include "ircservercontact.moc"
|