diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/protocols/jabber/jabbergroupmembercontact.cpp | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/jabber/jabbergroupmembercontact.cpp')
-rw-r--r-- | kopete/protocols/jabber/jabbergroupmembercontact.cpp | 168 |
1 files changed, 168 insertions, 0 deletions
diff --git a/kopete/protocols/jabber/jabbergroupmembercontact.cpp b/kopete/protocols/jabber/jabbergroupmembercontact.cpp new file mode 100644 index 00000000..2e86b898 --- /dev/null +++ b/kopete/protocols/jabber/jabbergroupmembercontact.cpp @@ -0,0 +1,168 @@ + /* + * 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 <klocale.h> +#include <kfiledialog.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(); + } +} + +QPtrList<KAction> *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, SIGNAL ( destroyed ( QObject * ) ), this, SLOT ( slotChatSessionDeleted () ) ); + + return mManager; + +} + +void JabberGroupMemberContact::slotChatSessionDeleted () +{ + + mManager = 0; + +} + +void JabberGroupMemberContact::handleIncomingMessage ( const XMPP::Message &message ) +{ + // message type is always chat in a groupchat + QString 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 + QString body = message.body (); + + if( !message.xencrypted().isEmpty () ) + { + body = QString ("-----BEGIN PGP MESSAGE-----\n\n") + message.xencrypted () + QString ("\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 QString &/*fileName*/, uint /*fileSize*/ ) +{ + QString filePath; + + // if the file location is null, then get it from a file open dialog + if ( !sourceURL.isValid () ) + filePath = KFileDialog::getOpenFileName( QString::null , "*", 0L, i18n ( "Kopete File Transfer" ) ); + else + filePath = sourceURL.path(-1); + + QFile file ( filePath ); + + if ( file.exists () ) + { + // send the file + new JabberFileTransfer ( account (), this, filePath ); + } + +} + + +#include "jabbergroupmembercontact.moc" |