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 --- .../protocols/yahoo/libkyahoo/mailnotifiertask.cpp | 80 ++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 kopete/protocols/yahoo/libkyahoo/mailnotifiertask.cpp (limited to 'kopete/protocols/yahoo/libkyahoo/mailnotifiertask.cpp') diff --git a/kopete/protocols/yahoo/libkyahoo/mailnotifiertask.cpp b/kopete/protocols/yahoo/libkyahoo/mailnotifiertask.cpp new file mode 100644 index 00000000..7bea2c8f --- /dev/null +++ b/kopete/protocols/yahoo/libkyahoo/mailnotifiertask.cpp @@ -0,0 +1,80 @@ +/* + Kopete Yahoo Protocol + Notifies about new mails + + 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 + +#include "mailnotifiertask.h" +#include "transfer.h" +#include "ymsgtransfer.h" +#include "yahootypes.h" +#include "client.h" +#include +#include + +MailNotifierTask::MailNotifierTask(Task* parent) : Task(parent) +{ + kdDebug(YAHOO_RAW_DEBUG) << k_funcinfo << endl; +} + +MailNotifierTask::~MailNotifierTask() +{ + +} + +bool MailNotifierTask::take( Transfer* transfer ) +{ + kdDebug(YAHOO_RAW_DEBUG) << k_funcinfo << endl; + + if ( !forMe( transfer ) ) + return false; + + YMSGTransfer *t = static_cast(transfer); + + parseMail( t ); + + return true; +} + +bool MailNotifierTask::forMe( Transfer* transfer ) const +{ + kdDebug(YAHOO_RAW_DEBUG) << k_funcinfo << endl; + YMSGTransfer *t = 0L; + t = dynamic_cast(transfer); + if (!t) + return false; + + if ( t->service() == Yahoo::ServiceNewMail ) + return true; + else + return false; +} + +void MailNotifierTask::parseMail( YMSGTransfer *t ) +{ + kdDebug(YAHOO_RAW_DEBUG) << k_funcinfo << endl; + + QString count = t->firstParam( 9 ); + QString mail = t->firstParam( 42 ); + QString from = t->firstParam( 43 ); + QString subject = t->firstParam( 18 ); + + if( !mail.isEmpty() && !from.isEmpty() && !subject.isEmpty() ) + emit mailNotify( QString::fromLatin1( "%1 <%2>").arg( from, mail ), subject, count.toInt() ); + else + emit mailNotify( QString::null, QString::null, count.toInt()); +} + +#include "mailnotifiertask.moc" -- cgit v1.2.1