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.
384 lines
10 KiB
384 lines
10 KiB
//
|
|
// Copyright (C) 2003 Grzegorz Jaskiewicz <gj at pointblue.com.pl>
|
|
// Copyright (C) 2002-2003 Zack Rusin <zack@kde.org>
|
|
//
|
|
// gaducontact.cpp
|
|
//
|
|
// 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.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
// 02110-1301, USA.
|
|
|
|
#include <tdelocale.h>
|
|
#include <tdeaction.h>
|
|
#include <kdebug.h>
|
|
#include <tdefiledialog.h>
|
|
#include <tdemessagebox.h>
|
|
|
|
#include "gaduaccount.h"
|
|
#include "gaduprotocol.h"
|
|
#include "gaducontact.h"
|
|
#include "gadupubdir.h"
|
|
#include "gadueditcontact.h"
|
|
#include "gaducontactlist.h"
|
|
#include "gadusession.h"
|
|
|
|
#include "kopetechatsessionmanager.h"
|
|
#include "kopetegroup.h"
|
|
#include "kopetemetacontact.h"
|
|
#include "kopetestdaction.h"
|
|
#include "kopeteuiglobal.h"
|
|
|
|
#include "userinfodialog.h"
|
|
|
|
using Kopete::UserInfoDialog;
|
|
|
|
GaduContact::GaduContact( uin_t uin, const TQString& name, Kopete::Account* account, Kopete::MetaContact* parent )
|
|
: Kopete::Contact( account, TQString::number( uin ), parent ), uin_( uin )
|
|
{
|
|
msgManager_ = 0L;
|
|
account_ = static_cast<GaduAccount*>( account );
|
|
|
|
remote_port = 0;
|
|
version = 0;
|
|
image_size = 0;
|
|
// let us not ignore the contact by default right? causes ugly bug if
|
|
// setContactDetails is not run on a contact right after it is added
|
|
ignored_ = false;
|
|
|
|
thisContact_.append( this );
|
|
|
|
initActions();
|
|
|
|
// don't call libkopete functions like these until the object is fully
|
|
// constructed. all GaduContact construction must be above this point.
|
|
setFileCapable( true );
|
|
|
|
//offline
|
|
setOnlineStatus( GaduProtocol::protocol()->convertStatus( 0 ) );
|
|
|
|
setProperty( Kopete::Global::Properties::self()->nickName(), name );
|
|
}
|
|
|
|
TQString
|
|
GaduContact::identityId() const
|
|
{
|
|
return parentIdentity_;
|
|
}
|
|
|
|
void
|
|
GaduContact::setParentIdentity( const TQString& id)
|
|
{
|
|
parentIdentity_ = id;
|
|
}
|
|
|
|
uin_t
|
|
GaduContact::uin() const
|
|
{
|
|
return uin_;
|
|
}
|
|
|
|
void
|
|
GaduContact::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);
|
|
|
|
kdDebug(14120) << k_funcinfo << "File chosen to send:" << filePath << endl;
|
|
|
|
account_->sendFile( this, filePath );
|
|
}
|
|
|
|
|
|
void
|
|
GaduContact::changedStatus( KGaduNotify* newstatus )
|
|
{
|
|
if ( newstatus->description.isNull() ) {
|
|
setOnlineStatus( GaduProtocol::protocol()->convertStatus( newstatus->status ) );
|
|
removeProperty( GaduProtocol::protocol()->propAwayMessage );
|
|
}
|
|
else {
|
|
setOnlineStatus( GaduProtocol::protocol()->convertStatus( newstatus->status ) );
|
|
setProperty( GaduProtocol::protocol()->propAwayMessage, newstatus->description );
|
|
}
|
|
|
|
remote_ip = newstatus->remote_ip;
|
|
remote_port = newstatus->remote_port;
|
|
version = newstatus->version;
|
|
image_size = newstatus->image_size;
|
|
|
|
setFileCapable( newstatus->fileCap );
|
|
|
|
kdDebug(14100) << "uin:" << uin() << " port: " << remote_port << " remote ip: " << remote_ip.ip4Addr() << " image size: " << image_size << " version: " << version << endl;
|
|
|
|
}
|
|
|
|
TQHostAddress&
|
|
GaduContact::contactIp()
|
|
{
|
|
return remote_ip;
|
|
}
|
|
|
|
unsigned short
|
|
GaduContact::contactPort()
|
|
{
|
|
return remote_port;
|
|
}
|
|
|
|
Kopete::ChatSession*
|
|
GaduContact::manager( Kopete::Contact::CanCreateFlags canCreate )
|
|
{
|
|
if ( !msgManager_ && canCreate ) {
|
|
msgManager_ = Kopete::ChatSessionManager::self()->create( account_->myself(), thisContact_, GaduProtocol::protocol() );
|
|
connect( msgManager_, TQT_SIGNAL( messageSent( Kopete::Message&, Kopete::ChatSession*) ),
|
|
this, TQT_SLOT( messageSend( Kopete::Message&, Kopete::ChatSession*) ) );
|
|
connect( msgManager_, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( slotChatSessionDestroyed() ) );
|
|
|
|
}
|
|
kdDebug(14100) << "GaduContact::manager returning: " << msgManager_ << endl;
|
|
return msgManager_;
|
|
}
|
|
|
|
void
|
|
GaduContact::slotChatSessionDestroyed()
|
|
{
|
|
msgManager_ = 0L;
|
|
}
|
|
|
|
void
|
|
GaduContact::initActions()
|
|
{
|
|
actionSendMessage_ = KopeteStdAction::sendMessage( this, TQT_SLOT( execute() ), this, "actionMessage" );
|
|
actionInfo_ = KopeteStdAction::contactInfo( this, TQT_SLOT( slotUserInfo() ), this, "actionInfo" );
|
|
}
|
|
|
|
void
|
|
GaduContact::messageReceived( Kopete::Message& msg )
|
|
{
|
|
manager(Kopete::Contact::CanCreate)->appendMessage( msg );
|
|
}
|
|
|
|
void
|
|
GaduContact::messageSend( Kopete::Message& msg, Kopete::ChatSession* mgr )
|
|
{
|
|
if ( msg.plainBody().isEmpty() ) {
|
|
return;
|
|
}
|
|
mgr->appendMessage( msg );
|
|
account_->sendMessage( uin_, msg );
|
|
}
|
|
|
|
bool
|
|
GaduContact::isReachable()
|
|
{
|
|
return account_->isConnected();
|
|
}
|
|
|
|
TQPtrList<TDEAction>*
|
|
GaduContact::customContextMenuActions()
|
|
{
|
|
TQPtrList<TDEAction> *fakeCollection = new TQPtrList<TDEAction>();
|
|
//show profile
|
|
TDEAction* actionShowProfile = new TDEAction( i18n("Show Profile") , "application-vnd.tde.info", 0,
|
|
this, TQT_SLOT( slotShowPublicProfile() ),
|
|
this, "actionShowPublicProfile" );
|
|
|
|
fakeCollection->append( actionShowProfile );
|
|
|
|
TDEAction* actionEditContact = new TDEAction( i18n("Edit...") , "edit", 0,
|
|
this, TQT_SLOT( slotEditContact() ),
|
|
this, "actionEditContact" );
|
|
|
|
fakeCollection->append( actionEditContact );
|
|
|
|
return fakeCollection;
|
|
}
|
|
|
|
void
|
|
GaduContact::slotEditContact()
|
|
{
|
|
new GaduEditContact( static_cast<GaduAccount*>(account()), this, Kopete::UI::Global::mainWidget() );
|
|
}
|
|
|
|
void
|
|
GaduContact::slotShowPublicProfile()
|
|
{
|
|
account_->slotSearch( uin_ );
|
|
}
|
|
|
|
void
|
|
GaduContact::slotUserInfo()
|
|
{
|
|
/// FIXME: use more decent information here
|
|
UserInfoDialog *dlg = new UserInfoDialog( i18n( "Gadu contact" ) );
|
|
|
|
dlg->setName( metaContact()->displayName() );
|
|
dlg->setId( TQString::number( uin_ ) );
|
|
dlg->setStatus( onlineStatus().description() );
|
|
dlg->setAwayMessage( description_ );
|
|
dlg->show();
|
|
}
|
|
|
|
void
|
|
GaduContact::deleteContact()
|
|
{
|
|
if ( account_->isConnected() ) {
|
|
account_->removeContact( this );
|
|
deleteLater();
|
|
}
|
|
else {
|
|
KMessageBox::error( Kopete::UI::Global::mainWidget(),
|
|
i18n( "<qt>Please go online to remove a contact from your contact list.</qt>" ),
|
|
i18n( "Gadu-Gadu Plugin" ));
|
|
}
|
|
}
|
|
|
|
void
|
|
GaduContact::serialize( TQMap<TQString, TQString>& serializedData, TQMap<TQString, TQString>& )
|
|
{
|
|
serializedData[ "email" ] = property( GaduProtocol::protocol()->propEmail ).value().toString();
|
|
serializedData[ "FirstName" ] = property( GaduProtocol::protocol()->propFirstName ).value().toString();
|
|
serializedData[ "SecondName" ] = property( GaduProtocol::protocol()->propLastName ).value().toString();
|
|
serializedData[ "telephone" ] = property( GaduProtocol::protocol()->propPhoneNr ).value().toString();
|
|
serializedData[ "ignored" ] = ignored_ ? "true" : "false";
|
|
}
|
|
|
|
bool
|
|
GaduContact::setContactDetails( const GaduContactsList::ContactLine* cl )
|
|
{
|
|
setProperty( GaduProtocol::protocol()->propEmail, cl->email );
|
|
setProperty( GaduProtocol::protocol()->propFirstName, cl->firstname );
|
|
setProperty( GaduProtocol::protocol()->propLastName, cl->surname );
|
|
setProperty( GaduProtocol::protocol()->propPhoneNr, cl->phonenr );
|
|
//setProperty( "ignored", i18n( "ignored" ), cl->ignored ? "true" : "false" );
|
|
ignored_ = cl->ignored;
|
|
//setProperty( "nickName", i18n( "nick name" ), cl->nickname );
|
|
|
|
return true;
|
|
}
|
|
|
|
GaduContactsList::ContactLine*
|
|
GaduContact::contactDetails()
|
|
{
|
|
Kopete::GroupList groupList;
|
|
TQString groups;
|
|
|
|
GaduContactsList::ContactLine* cl = new GaduContactsList::ContactLine;
|
|
|
|
cl->firstname = property( GaduProtocol::protocol()->propFirstName ).value().toString();
|
|
cl->surname = property( GaduProtocol::protocol()->propLastName ).value().toString();
|
|
//cl->nickname = property( "nickName" ).value().toString();
|
|
cl->email = property( GaduProtocol::protocol()->propEmail ).value().toString();
|
|
cl->phonenr = property( GaduProtocol::protocol()->propPhoneNr ).value().toString();
|
|
cl->ignored = ignored_; //( property( "ignored" ).value().toString() == "true" );
|
|
|
|
cl->uin = TQString::number( uin_ );
|
|
cl->displayname = metaContact()->displayName();
|
|
|
|
cl->offlineTo = false;
|
|
cl->landline = TQString("");
|
|
|
|
groupList = metaContact()->groups();
|
|
|
|
Kopete::Group* gr;
|
|
for ( gr = groupList.first (); gr ; gr = groupList.next () ) {
|
|
// if present in any group, don't export to top level
|
|
// FIXME: again, probably bug in libkopete
|
|
// in case of topLevel group, Kopete::Group::displayName() returns "TopLevel" ineasted of just " " or "/"
|
|
// imo TopLevel group should be detected like i am doing that below
|
|
if ( gr!=Kopete::Group::topLevel() ) {
|
|
groups += gr->displayName()+",";
|
|
}
|
|
}
|
|
|
|
if ( groups.length() ) {
|
|
groups.truncate( groups.length()-1 );
|
|
}
|
|
cl->group = groups;
|
|
|
|
return cl;
|
|
}
|
|
|
|
TQString
|
|
GaduContact::findBestContactName( const GaduContactsList::ContactLine* cl )
|
|
{
|
|
TQString name;
|
|
|
|
if ( cl == NULL ) {
|
|
return name;
|
|
}
|
|
|
|
if ( cl->uin.isEmpty() ) {
|
|
return name;
|
|
}
|
|
|
|
name = cl->uin;
|
|
|
|
if ( cl->displayname.length() ) {
|
|
name = cl->displayname;
|
|
}
|
|
else {
|
|
// no name either
|
|
if ( cl->nickname.isEmpty() ) {
|
|
// maybe we can use fistname + surname ?
|
|
if ( cl->firstname.isEmpty() && cl->surname.isEmpty() ) {
|
|
name = cl->uin;
|
|
}
|
|
// what a shame, i have to use UIN than :/
|
|
else {
|
|
if ( cl->firstname.isEmpty() ) {
|
|
name = cl->surname;
|
|
}
|
|
else {
|
|
if ( cl->surname.isEmpty() ) {
|
|
name = cl->firstname;
|
|
}
|
|
else {
|
|
name = cl->firstname + " " + cl->surname;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
name = cl->nickname;
|
|
}
|
|
}
|
|
|
|
return name;
|
|
}
|
|
|
|
void
|
|
GaduContact::messageAck()
|
|
{
|
|
manager(Kopete::Contact::CanCreate)->messageSucceeded();
|
|
}
|
|
|
|
void
|
|
GaduContact::setIgnored( bool val )
|
|
{
|
|
ignored_ = val;
|
|
}
|
|
|
|
bool
|
|
GaduContact::ignored()
|
|
{
|
|
return ignored_;
|
|
}
|
|
|
|
#include "gaducontact.moc"
|