From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kopete/protocols/yahoo/libkyahoo/stealthtask.cpp | 76 ++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 kopete/protocols/yahoo/libkyahoo/stealthtask.cpp (limited to 'kopete/protocols/yahoo/libkyahoo/stealthtask.cpp') diff --git a/kopete/protocols/yahoo/libkyahoo/stealthtask.cpp b/kopete/protocols/yahoo/libkyahoo/stealthtask.cpp new file mode 100644 index 00000000..01ab4e27 --- /dev/null +++ b/kopete/protocols/yahoo/libkyahoo/stealthtask.cpp @@ -0,0 +1,76 @@ +/* + Kopete Yahoo Protocol + Stealth/Unstealth a buddy + + Copyright (c) 2005 André Duffeck + + ************************************************************************* + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + ************************************************************************* +*/ + +#include "stealthtask.h" +#include "transfer.h" +#include "ymsgtransfer.h" +#include "yahootypes.h" +#include "client.h" +#include + +StealthTask::StealthTask(Task* parent) : Task(parent) +{ + kdDebug(YAHOO_RAW_DEBUG) << k_funcinfo << endl; +} + +StealthTask::~StealthTask() +{ +} + +void StealthTask::onGo() +{ + YMSGTransfer *t = new YMSGTransfer(); + if( m_mode == Yahoo::StealthOnline ) + { + t->setService( Yahoo::ServiceStealthOnline ); + t->setParam( 13, "1" ); + t->setParam( 31, m_state ); + } + else if( m_mode == Yahoo::StealthOffline ) + { + t->setService( Yahoo::ServiceStealthOffline ); + t->setParam( 13, "1" ); + t->setParam( 31, m_state ); + } + else if( m_mode == Yahoo::StealthPermOffline ) + { + t->setService( Yahoo::ServiceStealthOffline ); + t->setParam( 13, "2" ); + t->setParam( 31, m_state ); + } + t->setId( client()->sessionID() ); + t->setParam( 1, client()->userId().local8Bit()); + if( !m_target.isEmpty() ) + t->setParam( 7, m_target.local8Bit() ); + send( t ); + + setSuccess( true ); +} + +void StealthTask::setTarget( const QString &to ) +{ + m_target = to; +} + +void StealthTask::setState( Yahoo::StealthStatus state) +{ + m_state = state; +} + +void StealthTask::setMode( Yahoo::StealthMode mode ) +{ + m_mode = mode; +} -- cgit v1.2.1