1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/*
KDE Telepathy AdiumxtraProtocolHandler - Install Adiumxtra packages through adiumxtra://-pseudo protocol
Copyright (C) 2010 Dominik Schmidt <domme@rautelinux.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.
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, see <http://www.gnu.org/licenses/>.
*/
#include "emoticon-set-installer.h"
#include "chat-style-plist-file-reader.h"
#include <QTemporaryFile>
#include <KArchiveFile>
#include <KEmoticons>
#include <KArchiveDirectory>
#include <KNotification>
#include <KLocalizedString>
// FIXME: Part of a hack to let adiumxtra-protocol-handler use the main ktelepathy.notifyrc because
// the string freeze does not permit adding a new notifyrc only for adiumxtra-protocol-handler.
// Remove this after 0.7 is released.
static QString ktelepathyComponentName() {
return QStringLiteral("ktelepathy");
}
EmoticonSetInstaller::EmoticonSetInstaller(KArchive *archive, QTemporaryFile *tmpFile)
{
m_archive = archive;
m_tmpFile = tmpFile;
}
EmoticonSetInstaller::~EmoticonSetInstaller()
{
}
BundleInstaller::BundleStatus EmoticonSetInstaller::validate()
{
KArchiveEntry *currentEntry = 0L;
KArchiveDirectory* currentDir = 0L;
if(m_archive == 0) exit(1);
m_archive->fileName();
m_archive->directory();
const KArchiveDirectory* rootDir = m_archive->directory();
const QStringList entries = rootDir->entries();
// Will be reused later.
QStringList::ConstIterator entriesIt;
for (entriesIt = entries.begin(); entriesIt != entries.end(); ++entriesIt) {
currentEntry = const_cast<KArchiveEntry*>(rootDir->entry(*entriesIt));
if (currentEntry->isDirectory()) {
currentDir = dynamic_cast<KArchiveDirectory*>(currentEntry);
if (currentDir) {
if (currentDir->entry(QString::fromUtf8("Emoticons.plist"))) {
QString currentItem = currentEntry->name();
if(m_bundleName.isEmpty() && currentItem.endsWith(QLatin1String(".AdiumEmoticonset"))) {
m_bundleName = currentItem.remove(QLatin1String(".AdiumEmoticonset"));
}
return BundleValid;
}
}
}
}
return BundleNotValid;
}
QString EmoticonSetInstaller::bundleName() const
{
return m_bundleName;
}
BundleInstaller::BundleStatus EmoticonSetInstaller::install()
{
KEmoticons emoticons;
emoticons.installTheme(m_tmpFile->fileName());
// we trust in KEmoticons as it gives us no status information
// installTheme only returns a list of installed themes if we compare the list before and after
// the style could have been updated and the list would not have changed
Q_EMIT finished(BundleInstallOk);
return BundleInstallOk;
}
void EmoticonSetInstaller::showRequest()
{
KNotification *notification = new KNotification(QLatin1String("emoticonsRequest"), NULL, KNotification::Persistent);
notification->setText( i18n("Install Emoticonset %1", this->bundleName()) );
notification->setActions( QStringList() << i18n("Install") << i18n("Cancel") );
QObject::connect(notification, SIGNAL(action1Activated()), this, SLOT(install()));
QObject::connect(notification, SIGNAL(action1Activated()), notification, SLOT(close()));
QObject::connect(notification, SIGNAL(ignored()), this, SLOT(ignoreRequest()));
QObject::connect(notification, SIGNAL(ignored()), notification, SLOT(close()));
QObject::connect(notification, SIGNAL(action2Activated()), this, SLOT(ignoreRequest()));
QObject::connect(notification, SIGNAL(action2Activated()), notification, SLOT(close()));
notification->setComponentName(ktelepathyComponentName());
notification->sendEvent();
}
void EmoticonSetInstaller::showResult()
{
KNotification *notification = new KNotification(QLatin1String("emoticonsSuccess"));
notification->setText( i18n("Installed Emoticonset %1 successfully.", this->bundleName()) );
notification->setComponentName(ktelepathyComponentName());
notification->sendEvent();
Q_EMIT showedResult();
}
void EmoticonSetInstaller::ignoreRequest()
{
Q_EMIT ignoredRequest();
}
#include "emoticon-set-installer.moc"
|