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.
169 lines
4.6 KiB
169 lines
4.6 KiB
/*
|
|
* jabbergroupmembercontact.cpp - Regular Kopete Jabber protocol contact
|
|
*
|
|
* Copyright (c) 2002-2004 by Till Gerken <till@tantalo.net>
|
|
*
|
|
* Kopete (c) 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 "jabbergroupmembercontact.h"
|
|
|
|
#include <kdebug.h>
|
|
#include <tdelocale.h>
|
|
#include <tdefiledialog.h>
|
|
#include "jabberprotocol.h"
|
|
#include "jabberaccount.h"
|
|
#include "jabberfiletransfer.h"
|
|
#include "jabbergroupchatmanager.h"
|
|
#include "jabberchatsession.h"
|
|
#include "jabbercontactpool.h"
|
|
#include "kopetemetacontact.h"
|
|
|
|
/**
|
|
* JabberGroupMemberContact constructor
|
|
*/
|
|
JabberGroupMemberContact::JabberGroupMemberContact (const XMPP::RosterItem &rosterItem,
|
|
JabberAccount *account, Kopete::MetaContact * mc)
|
|
: JabberBaseContact ( rosterItem, account, mc)
|
|
{
|
|
|
|
mc->setDisplayName ( rosterItem.jid().resource() );
|
|
setNickName ( rosterItem.jid().resource() );
|
|
|
|
setFileCapable ( true );
|
|
|
|
mManager = 0;
|
|
|
|
}
|
|
|
|
/**
|
|
* JabberGroupMemberContact destructor
|
|
*/
|
|
JabberGroupMemberContact::~JabberGroupMemberContact ()
|
|
{
|
|
if(mManager)
|
|
{
|
|
mManager->deleteLater();
|
|
}
|
|
}
|
|
|
|
TQPtrList<TDEAction> *JabberGroupMemberContact::customContextMenuActions ()
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
Kopete::ChatSession *JabberGroupMemberContact::manager ( Kopete::Contact::CanCreateFlags canCreate )
|
|
{
|
|
|
|
if ( mManager )
|
|
return mManager;
|
|
|
|
if ( !mManager && !canCreate )
|
|
return 0;
|
|
|
|
Kopete::ContactPtrList chatMembers;
|
|
chatMembers.append ( this );
|
|
|
|
/*
|
|
* FIXME: We might have to use the group chat contact here instead of
|
|
* the global myself() instance for a correct representation.
|
|
*/
|
|
mManager = new JabberChatSession ( protocol(), static_cast<JabberBaseContact *>(account()->myself()), chatMembers );
|
|
connect ( mManager, TQT_SIGNAL ( destroyed ( TQObject * ) ), this, TQT_SLOT ( slotChatSessionDeleted () ) );
|
|
|
|
return mManager;
|
|
|
|
}
|
|
|
|
void JabberGroupMemberContact::slotChatSessionDeleted ()
|
|
{
|
|
|
|
mManager = 0;
|
|
|
|
}
|
|
|
|
void JabberGroupMemberContact::handleIncomingMessage ( const XMPP::Message &message )
|
|
{
|
|
// message type is always chat in a groupchat
|
|
TQString viewType = "kopete_chatwindow";
|
|
Kopete::Message *newMessage = 0L;
|
|
|
|
kdDebug (JABBER_DEBUG_GLOBAL) << k_funcinfo << "Received Message Type:" << message.type () << endl;
|
|
|
|
/**
|
|
* Don't display empty messages, these were most likely just carrying
|
|
* event notifications or other payload.
|
|
*/
|
|
if ( message.body().isEmpty () )
|
|
return;
|
|
|
|
Kopete::ChatSession *kmm = manager( Kopete::Contact::CanCreate );
|
|
if(!kmm)
|
|
return;
|
|
Kopete::ContactPtrList contactList = kmm->members();
|
|
|
|
// check for errors
|
|
if ( message.type () == "error" )
|
|
{
|
|
newMessage = new Kopete::Message( message.timeStamp (), this, contactList,
|
|
i18n("Your message could not be delivered: \"%1\", Reason: \"%2\"").
|
|
arg ( message.body () ).arg ( message.error().text ),
|
|
message.subject(), Kopete::Message::Inbound, Kopete::Message::PlainText, viewType );
|
|
}
|
|
else
|
|
{
|
|
// retrieve and reformat body
|
|
TQString body = message.body ();
|
|
|
|
if( !message.xencrypted().isEmpty () )
|
|
{
|
|
body = TQString ("-----BEGIN PGP MESSAGE-----\n\n") + message.xencrypted () + TQString ("\n-----END PGP MESSAGE-----\n");
|
|
}
|
|
|
|
// convert XMPP::Message into Kopete::Message
|
|
newMessage = new Kopete::Message ( message.timeStamp (), this, contactList, body,
|
|
message.subject (), Kopete::Message::Inbound,
|
|
Kopete::Message::PlainText, viewType );
|
|
}
|
|
|
|
// append message to manager
|
|
kmm->appendMessage ( *newMessage );
|
|
|
|
delete newMessage;
|
|
|
|
}
|
|
|
|
void JabberGroupMemberContact::sendFile ( const KURL &sourceURL, const TQString &/*fileName*/, uint /*fileSize*/ )
|
|
{
|
|
TQString filePath;
|
|
|
|
// if the file location is null, then get it from a file open dialog
|
|
if ( !sourceURL.isValid () )
|
|
filePath = KFileDialog::getOpenFileName( TQString() , "*", 0L, i18n ( "Kopete File Transfer" ) );
|
|
else
|
|
filePath = sourceURL.path(-1);
|
|
|
|
TQFile file ( filePath );
|
|
|
|
if ( file.exists () )
|
|
{
|
|
// send the file
|
|
new JabberFileTransfer ( account (), this, filePath );
|
|
}
|
|
|
|
}
|
|
|
|
|
|
#include "jabbergroupmembercontact.moc"
|