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.
188 lines
6.4 KiB
188 lines
6.4 KiB
15 years ago
|
/***************************************************************************
|
||
|
wpprotocol.cpp - WP Plugin
|
||
|
-------------------
|
||
|
begin : Fri Apr 26 2002
|
||
|
copyright : (C) 2002 by Gav Wood
|
||
|
email : gav@kde.org
|
||
|
|
||
|
Based on code from : (C) 2002 by Duncan Mac-Vicar Prett
|
||
|
email : duncan@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. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
|
||
|
// QT Includes
|
||
|
#include <qmap.h>
|
||
|
#include <qdict.h>
|
||
|
|
||
|
// KDE Includes
|
||
|
#include <kapplication.h>
|
||
|
#include <kdebug.h>
|
||
|
#include <kgenericfactory.h>
|
||
|
#include <kmessagebox.h>
|
||
|
#include <ksimpleconfig.h>
|
||
|
#include <kstandarddirs.h>
|
||
|
|
||
|
// Kopete Includes
|
||
|
#include "kopeteaccountmanager.h"
|
||
|
#include "kopeteuiglobal.h"
|
||
|
|
||
|
// Local Includes
|
||
|
#include "wpprotocol.h"
|
||
|
#include "wpeditaccount.h"
|
||
|
#include "wpaccount.h"
|
||
|
#include "wpcontact.h"
|
||
|
|
||
|
class KPopupMenu;
|
||
|
|
||
|
WPProtocol *WPProtocol::sProtocol = 0;
|
||
|
|
||
|
typedef KGenericFactory<WPProtocol> WPProtocolFactory;
|
||
|
K_EXPORT_COMPONENT_FACTORY( kopete_wp, WPProtocolFactory( "kopete_wp" ) )
|
||
|
|
||
|
// WP Protocol
|
||
|
WPProtocol::WPProtocol( QObject *parent, const char *name, const QStringList & /* args */ )
|
||
|
: Kopete::Protocol( WPProtocolFactory::instance(), parent, name ),
|
||
|
WPOnline( Kopete::OnlineStatus::Online, 25, this, 0, QString::null, i18n("Online"), i18n("Online")),
|
||
|
WPAway( Kopete::OnlineStatus::Away, 20, this, 1, "wp_away", i18n("Away"), i18n("Away")),
|
||
|
WPOffline( Kopete::OnlineStatus::Offline, 0, this, 2, QString::null, i18n("Offline"), i18n("Offline"))
|
||
|
{
|
||
|
// kdDebug(14170) << "WPProtocol::WPProtocol()" << endl;
|
||
|
|
||
|
sProtocol = this;
|
||
|
|
||
|
// Load Status Actions
|
||
|
// initActions();
|
||
|
// TODO: Maybe use this in the future?
|
||
|
|
||
|
addAddressBookField( "messaging/winpopup", Kopete::Plugin::MakeIndexField );
|
||
|
|
||
|
readConfig();
|
||
|
|
||
|
popupClient = new WinPopupLib(smbClientBin, groupCheckFreq);
|
||
|
QObject::connect(popupClient, SIGNAL(signalNewMessage(const QString &, const QDateTime &, const QString &)),
|
||
|
this, SLOT(slotReceivedMessage(const QString &, const QDateTime &, const QString &)));
|
||
|
}
|
||
|
|
||
|
// Destructor
|
||
|
WPProtocol::~WPProtocol()
|
||
|
{
|
||
|
// kdDebug(14170) << "WPProtocol::~WPProtocol()" << endl;
|
||
|
|
||
|
sProtocol = 0;
|
||
|
}
|
||
|
|
||
|
AddContactPage *WPProtocol::createAddContactWidget(QWidget *parent, Kopete::Account *theAccount)
|
||
|
{
|
||
|
// kdDebug(14170) << "WPProtocol::createAddContactWidget(<parent>, " << theAccount << ")" << endl;
|
||
|
|
||
|
return new WPAddContact(parent, dynamic_cast<WPAccount *>(theAccount));
|
||
|
}
|
||
|
|
||
|
Kopete::Contact *WPProtocol::deserializeContact( Kopete::MetaContact *metaContact,
|
||
|
const QMap<QString, QString> &serializedData,
|
||
|
const QMap<QString, QString> & /* addressBookData */ )
|
||
|
{
|
||
|
QString contactId = serializedData[ "contactId" ];
|
||
|
QString accountId = serializedData[ "accountId" ];
|
||
|
|
||
|
WPAccount *theAccount = static_cast<WPAccount *>(Kopete::AccountManager::self()->findAccount(protocol()->pluginId(), accountId));
|
||
|
if(!theAccount) {
|
||
|
kdDebug(14170) << "Account " << accountId << " not found" << endl;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
if(theAccount->contacts()[contactId]) {
|
||
|
kdDebug(14170) << "User " << contactId << " already in contacts map" << endl;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
theAccount->addContact(contactId, metaContact, Kopete::Account::DontChangeKABC);
|
||
|
return theAccount->contacts()[contactId];
|
||
|
}
|
||
|
|
||
|
KopeteEditAccountWidget *WPProtocol::createEditAccountWidget(Kopete::Account *account, QWidget *parent)
|
||
|
{
|
||
|
return new WPEditAccount(parent, account);
|
||
|
}
|
||
|
|
||
|
Kopete::Account *WPProtocol::createNewAccount(const QString &accountId)
|
||
|
{
|
||
|
return new WPAccount(this, accountId);
|
||
|
}
|
||
|
|
||
|
void WPProtocol::settingsChanged()
|
||
|
{
|
||
|
kdDebug(14170) << "WPProtocol::slotSettingsChanged()" << endl;
|
||
|
|
||
|
readConfig();
|
||
|
popupClient->settingsChanged(smbClientBin, groupCheckFreq);
|
||
|
}
|
||
|
|
||
|
void WPProtocol::readConfig()
|
||
|
{
|
||
|
KGlobal::config()->setGroup("WinPopup");
|
||
|
smbClientBin = KGlobal::config()->readEntry("SmbcPath", "/usr/bin/smbclient");
|
||
|
groupCheckFreq = KGlobal::config()->readNumEntry("HostCheckFreq", 60);
|
||
|
}
|
||
|
|
||
|
void WPProtocol::installSamba()
|
||
|
{
|
||
|
// kdDebug(14170) << "WPProtocol::installSamba()" endl;
|
||
|
|
||
|
QStringList args;
|
||
|
args += KStandardDirs::findExe("winpopup-install.sh");
|
||
|
args += KStandardDirs::findExe("winpopup-send.sh");
|
||
|
if (KApplication::kdeinitExecWait("kdesu", args) == 0)
|
||
|
KMessageBox::information(Kopete::UI::Global::mainWidget(), i18n("The Samba configuration file is modified."), i18n("Configuration Succeeded"));
|
||
|
else
|
||
|
KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Updating the Samba configuration file failed."), i18n("Configuration Failed"));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* search the contact for the new message and give it to its account
|
||
|
*/
|
||
|
void WPProtocol::slotReceivedMessage(const QString &Body, const QDateTime &Time, const QString &From)
|
||
|
{
|
||
|
bool foundContact = false;
|
||
|
QString accountKey = QString::null;
|
||
|
QDict<Kopete::Account> Accounts = Kopete::AccountManager::self()->accounts(protocol());
|
||
|
for (QDictIterator<Kopete::Account> it(Accounts); it.current(); ++it) {
|
||
|
QDict<Kopete::Contact> Contacts = it.current()->contacts();
|
||
|
Kopete::Contact *theContact = Contacts[From];
|
||
|
if (theContact != 0) {
|
||
|
foundContact = true;
|
||
|
dynamic_cast<WPAccount *>(it.current())->slotGotNewMessage(Body, Time, From);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
if (accountKey.isEmpty() && it.current()->isConnected()) accountKey = it.currentKey();
|
||
|
}
|
||
|
|
||
|
// What to do with messages with no contact?
|
||
|
// Maybe send them to the next online account? GF
|
||
|
if (!foundContact) {
|
||
|
if (!accountKey.isEmpty())
|
||
|
dynamic_cast<WPAccount *>(Accounts[accountKey])->slotGotNewMessage(Body, Time, From);
|
||
|
else
|
||
|
kdDebug(14170) << "No contact or connected account found!" << endl;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void WPProtocol::sendMessage(const QString &Body, const QString &Destination)
|
||
|
{
|
||
|
popupClient->sendMessage(Body, Destination);
|
||
|
}
|
||
|
|
||
|
#include "wpprotocol.moc"
|
||
|
|
||
|
// vim: set noet ts=4 sts=4 sw=4:
|
||
|
// kate: tab-width 4; indent-width 4; replace-trailing-space-save on;
|