|
|
|
/*
|
|
|
|
kopeteglobal.cpp - Kopete Globals
|
|
|
|
|
|
|
|
Copyright (c) 2004 by Richard Smith <kde@metafoo.co.uk>
|
|
|
|
|
|
|
|
Kopete (c) 2004 by the Kopete developers <kopete-devel@kde.org>
|
|
|
|
|
|
|
|
*************************************************************************
|
|
|
|
* *
|
|
|
|
* 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 "kopeteglobal.h"
|
|
|
|
#include "kopeteuiglobal.h"
|
|
|
|
|
|
|
|
#include <tdeapplication.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <tdelocale.h>
|
|
|
|
#include <tdeio/netaccess.h>
|
|
|
|
#include <kmimetype.h>
|
|
|
|
#include <tdemessagebox.h>
|
|
|
|
#include <kprogress.h>
|
|
|
|
#include <kstandarddirs.h>
|
|
|
|
#include <ktar.h>
|
|
|
|
#include <kzip.h>
|
|
|
|
#include <kmimetype.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Kopete
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace Global
|
|
|
|
{
|
|
|
|
|
|
|
|
class PropertiesPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ContactPropertyTmpl::Map mTemplates;
|
|
|
|
};
|
|
|
|
|
|
|
|
Properties *Properties::mSelf = 0L;
|
|
|
|
|
|
|
|
Properties *Properties::self()
|
|
|
|
{
|
|
|
|
if(!mSelf)
|
|
|
|
{
|
|
|
|
//kdDebug(14000) << k_funcinfo << endl;
|
|
|
|
mSelf = new Properties();
|
|
|
|
}
|
|
|
|
return mSelf;
|
|
|
|
}
|
|
|
|
|
|
|
|
Properties::Properties()
|
|
|
|
{
|
|
|
|
kdDebug(14000) << k_funcinfo << endl;
|
|
|
|
d = new PropertiesPrivate();
|
|
|
|
}
|
|
|
|
|
|
|
|
Properties::~Properties()
|
|
|
|
{
|
|
|
|
kdDebug(14000) << k_funcinfo << endl;
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::tmpl(const TQString &key) const
|
|
|
|
{
|
|
|
|
if(d->mTemplates.contains(key))
|
|
|
|
{
|
|
|
|
/*kdDebug(14000) << k_funcinfo <<
|
|
|
|
"Found template for key = '" << key << "'" << endl;*/
|
|
|
|
return d->mTemplates[key];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return ContactPropertyTmpl::null;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Properties::registerTemplate(const TQString &key,
|
|
|
|
const ContactPropertyTmpl &tmpl)
|
|
|
|
{
|
|
|
|
if(d->mTemplates.contains(key))
|
|
|
|
{
|
|
|
|
kdDebug(14000) << k_funcinfo <<
|
|
|
|
"Called for EXISTING key = '" << key << "'" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
d->mTemplates.insert(key, tmpl);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Properties::unregisterTemplate(const TQString &key)
|
|
|
|
{
|
|
|
|
kdDebug(14000) << k_funcinfo << "called for key: '" << key << "'" << endl;
|
|
|
|
d->mTemplates.remove(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Properties::isRegistered(const TQString &key)
|
|
|
|
{
|
|
|
|
return d->mTemplates.contains(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::fullName() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("FormattedName"),
|
|
|
|
i18n("Full Name"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::idleTime() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("idleTime"),
|
|
|
|
i18n("Idle Time"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::onlineSince() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("onlineSince"),
|
|
|
|
i18n("Online Since"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::lastSeen() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("lastSeen"),
|
|
|
|
i18n("Last Seen"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::awayMessage() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("awayMessage"),
|
|
|
|
i18n("Away Message"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::firstName() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("firstName"),
|
|
|
|
i18n("First Name"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::lastName() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("lastName"),
|
|
|
|
i18n("Last Name"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::privatePhone() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("privatePhoneNumber"),
|
|
|
|
i18n("Private Phone"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::privateMobilePhone() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("privateMobilePhoneNumber"),
|
|
|
|
i18n("Private Mobile Phone"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::workPhone() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("workPhoneNumber"),
|
|
|
|
i18n("Work Phone"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::workMobilePhone() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("workMobilePhoneNumber"),
|
|
|
|
i18n("Work Mobile Phone"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::emailAddress() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("emailAddress"),
|
|
|
|
i18n("Email Address"), TQString::fromLatin1("mail_generic"), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::nickName() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("nickName"),
|
|
|
|
i18n("Nick Name"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::photo() const
|
|
|
|
{
|
|
|
|
return createProp(TQString::fromLatin1("photo"),
|
|
|
|
i18n("Photo"), TQString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const ContactPropertyTmpl &Properties::createProp(const TQString &key,
|
|
|
|
const TQString &label, const TQString &icon, bool persistent) const
|
|
|
|
{
|
|
|
|
/*kdDebug(14000) << k_funcinfo <<
|
|
|
|
"key = " << key << ", label = " << label << endl;*/
|
|
|
|
|
|
|
|
if(!d->mTemplates.contains(key))
|
|
|
|
{
|
|
|
|
/* kdDebug(14000) << k_funcinfo <<
|
|
|
|
"CREATING NEW ContactPropertyTmpl WITH key = " << key <<
|
|
|
|
", label = " << label << ", persisten = " << persistent << endl;*/
|
|
|
|
d->mTemplates.insert(key, ContactPropertyTmpl(key, label, icon, persistent));
|
|
|
|
}
|
|
|
|
return tmpl(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ContactPropertyTmpl::Map &Properties::templateMap() const
|
|
|
|
{
|
|
|
|
return d->mTemplates;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
void installEmoticonTheme(const TQString &archiveName)
|
|
|
|
{
|
|
|
|
TQStringList foundThemes;
|
|
|
|
KArchiveEntry *currentEntry = 0L;
|
|
|
|
KArchiveDirectory* currentDir = 0L;
|
|
|
|
KProgressDialog *progressDlg = 0L;
|
|
|
|
KArchive *archive = 0L;
|
|
|
|
|
|
|
|
TQString localThemesDir(locateLocal("emoticons", TQString()) );
|
|
|
|
|
|
|
|
if(localThemesDir.isEmpty())
|
|
|
|
{
|
|
|
|
KMessageBox::queuedMessageBox(Kopete::UI::Global::mainWidget(),
|
|
|
|
KMessageBox::Error, i18n("Could not find suitable place " \
|
|
|
|
"to install emoticon themes into."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
progressDlg = new KProgressDialog(0 , "emoticonInstProgress",
|
|
|
|
i18n("Installing Emoticon Themes..."), TQString(), true);
|
|
|
|
progressDlg->progressBar()->setTotalSteps(foundThemes.count());
|
|
|
|
progressDlg->show();
|
|
|
|
kapp->processEvents();
|
|
|
|
|
|
|
|
TQString currentBundleMimeType = KMimeType::findByPath(archiveName, 0, false)->name();
|
|
|
|
if( currentBundleMimeType == TQString::fromLatin1("application/x-zip") )
|
|
|
|
archive = new KZip(archiveName);
|
|
|
|
else if( currentBundleMimeType == TQString::fromLatin1("application/x-tgz") ||
|
|
|
|
currentBundleMimeType == TQString::fromLatin1("application/x-tbz") ||
|
|
|
|
currentBundleMimeType == TQString::fromLatin1("application/x-gzip") ||
|
|
|
|
currentBundleMimeType == TQString::fromLatin1("application/x-bzip2") )
|
|
|
|
archive = new KTar(archiveName);
|
|
|
|
else if(archiveName.endsWith(TQString::fromLatin1("jisp")) || archiveName.endsWith(TQString::fromLatin1("zip")) )
|
|
|
|
archive = new KZip(archiveName);
|
|
|
|
else
|
|
|
|
archive = new KTar(archiveName);
|
|
|
|
|
|
|
|
if ( !archive || !archive->open(IO_ReadOnly) )
|
|
|
|
{
|
|
|
|
KMessageBox::queuedMessageBox(Kopete::UI::Global::mainWidget(),
|
|
|
|
KMessageBox::Error,
|
|
|
|
i18n("Could not open \"%1\" for unpacking.").arg(archiveName));
|
|
|
|
delete archive;
|
|
|
|
delete progressDlg;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const KArchiveDirectory* rootDir = archive->directory();
|
|
|
|
|
|
|
|
// iterate all the dirs looking for an emoticons.xml file
|
|
|
|
TQStringList entries = rootDir->entries();
|
|
|
|
for (TQStringList::Iterator it = entries.begin(); it != entries.end(); ++it)
|
|
|
|
{
|
|
|
|
currentEntry = const_cast<KArchiveEntry*>(rootDir->entry(*it));
|
|
|
|
if (currentEntry->isDirectory())
|
|
|
|
{
|
|
|
|
currentDir = dynamic_cast<KArchiveDirectory*>( currentEntry );
|
|
|
|
if (currentDir && ( currentDir->entry(TQString::fromLatin1("emoticons.xml")) != NULL ||
|
|
|
|
currentDir->entry(TQString::fromLatin1("icondef.xml")) != NULL ) )
|
|
|
|
foundThemes.append(currentDir->name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (foundThemes.isEmpty())
|
|
|
|
{
|
|
|
|
KMessageBox::queuedMessageBox(Kopete::UI::Global::mainWidget(),
|
|
|
|
KMessageBox::Error, i18n("<qt>The file \"%1\" is not a valid" \
|
|
|
|
" emoticon theme archive.</qt>").arg(archiveName));
|
|
|
|
archive->close();
|
|
|
|
delete archive;
|
|
|
|
delete progressDlg;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (TQStringList::ConstIterator it = foundThemes.begin(); it != foundThemes.end(); ++it)
|
|
|
|
{
|
|
|
|
progressDlg->setLabel(
|
|
|
|
i18n("<qt>Installing <strong>%1</strong> emoticon theme</qt>")
|
|
|
|
.arg(*it));
|
|
|
|
progressDlg->resize(progressDlg->sizeHint());
|
|
|
|
kapp->processEvents();
|
|
|
|
|
|
|
|
if (progressDlg->wasCancelled())
|
|
|
|
break;
|
|
|
|
|
|
|
|
currentEntry = const_cast<KArchiveEntry *>(rootDir->entry(*it));
|
|
|
|
if (currentEntry == 0)
|
|
|
|
{
|
|
|
|
kdDebug(14010) << k_funcinfo << "couldn't get next archive entry" << endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(currentEntry->isDirectory())
|
|
|
|
{
|
|
|
|
currentDir = dynamic_cast<KArchiveDirectory*>(currentEntry);
|
|
|
|
if (currentDir == 0)
|
|
|
|
{
|
|
|
|
kdDebug(14010) << k_funcinfo <<
|
|
|
|
"couldn't cast archive entry to KArchiveDirectory" << endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
currentDir->copyTo(localThemesDir + *it);
|
|
|
|
progressDlg->progressBar()->advance(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
archive->close();
|
|
|
|
delete archive;
|
|
|
|
|
|
|
|
// check if all steps were done, if there are skipped ones then we didn't
|
|
|
|
// succeed copying all dirs from the tarball
|
|
|
|
if (progressDlg->progressBar()->totalSteps() > progressDlg->progressBar()->progress())
|
|
|
|
{
|
|
|
|
KMessageBox::queuedMessageBox(Kopete::UI::Global::mainWidget(),
|
|
|
|
KMessageBox::Error,
|
|
|
|
i18n("<qt>A problem occurred during the installation process. "
|
|
|
|
"However, some of the emoticon themes in the archive may have been "
|
|
|
|
"installed.</qt>"));
|
|
|
|
}
|
|
|
|
|
|
|
|
delete progressDlg;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // END namespace Global
|
|
|
|
|
|
|
|
} // END namespace Kopete
|
|
|
|
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|