2008-11-04 00:08:39 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright 2007 by Aaron Seigo <aseigo@kde.org> *
|
|
|
|
* Copyright 2007 by Riccardo Iaconelli <riccardo@kde.org> *
|
|
|
|
* *
|
|
|
|
* This library is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Library General Public *
|
|
|
|
* License as published by the Free Software Foundation; either *
|
|
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This library 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 *
|
|
|
|
* Library General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
|
|
* Boston, MA 02110-1301, USA. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#include "package.h"
|
2009-09-21 23:37:44 +02:00
|
|
|
#include "config-plasma.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QRegExp>
|
2009-10-20 01:04:42 +02:00
|
|
|
#include <QtNetwork/QHostInfo>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-09-21 23:37:44 +02:00
|
|
|
#ifdef QCA2_FOUND
|
|
|
|
#include <QtCrypto>
|
|
|
|
#endif
|
|
|
|
|
2008-11-04 03:20:46 +01:00
|
|
|
#include <karchive.h>
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kcomponentdata.h>
|
|
|
|
#include <kdesktopfile.h>
|
|
|
|
#include <kio/copyjob.h>
|
|
|
|
#include <kio/deletejob.h>
|
2008-11-04 03:20:46 +01:00
|
|
|
#include <kio/jobclasses.h>
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kio/job.h>
|
2009-07-25 11:34:19 +02:00
|
|
|
#include <kmimetype.h>
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kplugininfo.h>
|
|
|
|
#include <kstandarddirs.h>
|
2009-07-25 11:34:19 +02:00
|
|
|
#include <ktar.h>
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <ktempdir.h>
|
|
|
|
#include <ktemporaryfile.h>
|
|
|
|
#include <kzip.h>
|
|
|
|
#include <kdebug.h>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-09-02 04:27:16 +02:00
|
|
|
#include "authorizationmanager.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
#include "packagemetadata.h"
|
2009-09-02 04:27:16 +02:00
|
|
|
#include "private/authorizationmanager_p.h"
|
|
|
|
#include "private/package_p.h"
|
|
|
|
#include "private/plasmoidservice.h"
|
|
|
|
#include "private/service_p.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
Package::Package(const QString &packageRoot, const QString &package,
|
|
|
|
PackageStructure::Ptr structure)
|
|
|
|
: d(new PackagePrivate(structure, packageRoot + '/' + package))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Package::Package(const QString &packagePath, PackageStructure::Ptr structure)
|
|
|
|
: d(new PackagePrivate(structure, packagePath))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Package::~Package()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Package::isValid() const
|
|
|
|
{
|
|
|
|
if (!d->valid) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const char *dir, d->structure->requiredDirectories()) {
|
2009-04-07 07:42:30 +02:00
|
|
|
if (!QFile::exists(d->structure->path() + d->structure->contentsPrefix() + d->structure->path(dir))) {
|
2008-11-04 00:08:39 +01:00
|
|
|
kWarning() << "Could not find required directory" << dir;
|
|
|
|
d->valid = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const char *file, d->structure->requiredFiles()) {
|
2009-04-07 07:42:30 +02:00
|
|
|
if (!QFile::exists(d->structure->path() + d->structure->contentsPrefix() + d->structure->path(file))) {
|
2008-11-04 00:08:39 +01:00
|
|
|
kWarning() << "Could not find required file" << file << ", look in"
|
2009-04-07 07:42:30 +02:00
|
|
|
<< d->structure->path() + d->structure->contentsPrefix() + d->structure->path(file) << endl;
|
2008-11-04 00:08:39 +01:00
|
|
|
d->valid = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Package::filePath(const char *fileType, const QString &filename) const
|
|
|
|
{
|
|
|
|
if (!d->valid) {
|
|
|
|
kDebug() << "package is not valid";
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString path = d->structure->path(fileType);
|
|
|
|
|
|
|
|
if (path.isEmpty()) {
|
2009-01-13 20:49:36 +01:00
|
|
|
kDebug() << "no matching path came of it, while looking for" << fileType << filename;
|
2008-11-04 00:08:39 +01:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2009-04-07 07:42:30 +02:00
|
|
|
path.prepend(d->structure->path() + d->structure->contentsPrefix());
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
if (!filename.isEmpty()) {
|
|
|
|
path.append("/").append(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (QFile::exists(path)) {
|
2009-01-16 02:02:35 +01:00
|
|
|
if (d->structure->allowExternalPaths()) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
// ensure that we don't return files outside of our base path
|
|
|
|
// due to symlink or ../ games
|
|
|
|
QDir dir(path);
|
|
|
|
QString canonicalized = dir.canonicalPath() + QDir::separator();
|
2009-04-07 07:42:30 +02:00
|
|
|
if (canonicalized.startsWith(d->structure->path())) {
|
2008-11-04 00:08:39 +01:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kDebug() << path << "does not exist";
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Package::filePath(const char *fileType) const
|
|
|
|
{
|
|
|
|
return filePath(fileType, QString());
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList Package::entryList(const char *fileType) const
|
|
|
|
{
|
|
|
|
if (!d->valid) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
2009-04-07 07:42:30 +02:00
|
|
|
return d->structure->entryList(fileType);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
PackageMetadata Package::metadata() const
|
|
|
|
{
|
|
|
|
return d->structure->metadata();
|
|
|
|
}
|
|
|
|
|
2009-05-13 01:05:40 +02:00
|
|
|
void Package::setPath(const QString &path)
|
|
|
|
{
|
|
|
|
d->structure->setPath(path);
|
|
|
|
d->valid = !d->structure->path().isEmpty();
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
const QString Package::path() const
|
|
|
|
{
|
2009-04-07 07:42:30 +02:00
|
|
|
return d->structure->path();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const PackageStructure::Ptr Package::structure() const
|
|
|
|
{
|
|
|
|
return d->structure;
|
|
|
|
}
|
|
|
|
|
2009-09-21 23:37:44 +02:00
|
|
|
#ifdef QCA2_FOUND
|
|
|
|
void PackagePrivate::updateHash(const QString &basePath, const QString &subPath, const QDir &dir, QCA::Hash &hash)
|
|
|
|
{
|
|
|
|
// hash is calculated as a function of:
|
|
|
|
// * files ordered alphabetically by name, with each file's:
|
|
|
|
// * path relative to the content root
|
|
|
|
// * file data
|
|
|
|
// * directories ordered alphabetically by name, with each dir's:
|
|
|
|
// * path relative to the content root
|
|
|
|
// * file listing (recursing)
|
|
|
|
// symlinks (in both the file and dir case) are handled by adding
|
|
|
|
// the name of the symlink itself and the abs path of what it points to
|
|
|
|
|
|
|
|
const QDir::SortFlags sorting = QDir::Name | QDir::IgnoreCase;
|
|
|
|
const QDir::Filters filters = QDir::Hidden | QDir::System | QDir::NoDotAndDotDot;
|
|
|
|
foreach (const QString &file, dir.entryList(QDir::Files | filters, sorting)) {
|
|
|
|
if (!subPath.isEmpty()) {
|
|
|
|
hash.update(subPath.toUtf8());
|
|
|
|
}
|
|
|
|
|
|
|
|
hash.update(file.toUtf8());
|
|
|
|
|
|
|
|
QFileInfo info(dir.path() + '/' + file);
|
|
|
|
if (info.isSymLink()) {
|
|
|
|
hash.update(info.symLinkTarget().toUtf8());
|
|
|
|
} else {
|
|
|
|
QFile f(info.filePath());
|
|
|
|
if (f.open(QIODevice::ReadOnly)) {
|
|
|
|
while (!f.atEnd()) {
|
|
|
|
hash.update(f.read(1024));
|
|
|
|
}
|
|
|
|
} else {
|
2009-09-21 23:48:19 +02:00
|
|
|
kWarning() << "could not add" << f.fileName() << "to the hash; file could not be opened for reading. "
|
|
|
|
<< "permissions fail?" << info.permissions() << info.isFile();
|
2009-09-21 23:37:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const QString &subDirPath, dir.entryList(QDir::Dirs | filters, sorting)) {
|
|
|
|
const QString relativePath = subPath + subDirPath + '/';
|
|
|
|
hash.update(relativePath.toUtf8());
|
|
|
|
|
|
|
|
QDir subDir(dir.path());
|
|
|
|
subDir.cd(subDirPath);
|
|
|
|
|
|
|
|
if (subDir.path() != subDir.canonicalPath()) {
|
|
|
|
hash.update(subDir.canonicalPath().toUtf8());
|
|
|
|
} else {
|
|
|
|
updateHash(basePath, relativePath, subDir, hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-21 23:48:19 +02:00
|
|
|
QString Package::contentsHash() const
|
2009-09-21 23:37:44 +02:00
|
|
|
{
|
|
|
|
#ifdef QCA2_FOUND
|
|
|
|
if (!QCA::isSupported("sha1")) {
|
|
|
|
kWarning() << "can not create hash for" << path() << "due to no SHA1 support in QCA2";
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString basePath = d->structure->path() + d->structure->contentsPrefix();
|
|
|
|
QDir dir(basePath);
|
|
|
|
|
|
|
|
if (!dir.exists()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QCA::Hash hash("sha1");
|
2009-09-21 23:48:19 +02:00
|
|
|
QString metadataPath = d->structure->path() + "metadata.desktop";
|
|
|
|
if (QFile::exists(metadataPath)) {
|
|
|
|
QFile f(metadataPath);
|
|
|
|
if (f.open(QIODevice::ReadOnly)) {
|
|
|
|
while (!f.atEnd()) {
|
|
|
|
hash.update(f.read(1024));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
kWarning() << "could not add" << f.fileName() << "to the hash; file could not be opened for reading.";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
kWarning() << "no metadata at" << metadataPath;
|
|
|
|
}
|
|
|
|
|
2009-09-21 23:37:44 +02:00
|
|
|
d->updateHash(basePath, QString(), dir, hash);
|
|
|
|
return QCA::arrayToHex(hash.final().toByteArray());
|
|
|
|
#else
|
|
|
|
// no QCA2!
|
|
|
|
kWarning() << "can not create hash for" << path() << "due to no cryptographic support (QCA2)";
|
|
|
|
return QString();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
//TODO: provide a version of this that allows one to ask for certain types of packages, etc?
|
|
|
|
// should we be using KService here instead/as well?
|
|
|
|
QStringList Package::listInstalled(const QString &packageRoot) // static
|
|
|
|
{
|
|
|
|
QDir dir(packageRoot);
|
|
|
|
|
|
|
|
if (!dir.exists()) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList packages;
|
|
|
|
|
|
|
|
foreach (const QString &sdir, dir.entryList(QDir::AllDirs | QDir::Readable)) {
|
|
|
|
QString metadata = packageRoot + '/' + sdir + "/metadata.desktop";
|
|
|
|
if (QFile::exists(metadata)) {
|
|
|
|
PackageMetadata m(metadata);
|
|
|
|
packages << m.pluginName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return packages;
|
|
|
|
}
|
|
|
|
|
2009-01-05 19:49:54 +01:00
|
|
|
QStringList Package::listInstalledPaths(const QString &packageRoot) // static
|
|
|
|
{
|
|
|
|
QDir dir(packageRoot);
|
|
|
|
|
|
|
|
if (!dir.exists()) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList packages;
|
|
|
|
|
|
|
|
foreach (const QString &sdir, dir.entryList(QDir::AllDirs | QDir::Readable)) {
|
|
|
|
QString metadata = packageRoot + '/' + sdir + "/metadata.desktop";
|
|
|
|
if (QFile::exists(metadata)) {
|
|
|
|
packages << sdir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return packages;
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
bool Package::installPackage(const QString &package,
|
|
|
|
const QString &packageRoot,
|
|
|
|
const QString &servicePrefix) // static
|
|
|
|
{
|
|
|
|
//TODO: report *what* failed if something does fail
|
|
|
|
QDir root(packageRoot);
|
|
|
|
|
|
|
|
if (!root.exists()) {
|
|
|
|
KStandardDirs::makeDir(packageRoot);
|
|
|
|
if (!root.exists()) {
|
|
|
|
kWarning() << "Could not create package root directory:" << packageRoot;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo fileInfo(package);
|
|
|
|
if (!fileInfo.exists()) {
|
|
|
|
kWarning() << "No such file:" << package;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString path;
|
|
|
|
KTempDir tempdir;
|
|
|
|
bool archivedPackage = false;
|
|
|
|
|
|
|
|
if (fileInfo.isDir()) {
|
|
|
|
// we have a directory, so let's just install what is in there
|
|
|
|
path = package;
|
|
|
|
|
|
|
|
// make sure we end in a slash!
|
|
|
|
if (path[path.size() - 1] != '/') {
|
|
|
|
path.append('/');
|
|
|
|
}
|
|
|
|
} else {
|
2009-07-25 11:34:19 +02:00
|
|
|
KArchive *archive = 0;
|
|
|
|
KMimeType::Ptr mimetype = KMimeType::findByPath(package);
|
|
|
|
|
|
|
|
if (mimetype->is("application/zip")) {
|
|
|
|
archive = new KZip(package);
|
|
|
|
} else if (mimetype->is("application/x-compressed-tar") ||
|
|
|
|
mimetype->is("application/x-tar")) {
|
|
|
|
archive = new KTar(package);
|
|
|
|
} else {
|
|
|
|
kWarning() << "Could not open package file, unsupported archive format:" << package << mimetype->name();
|
2008-11-04 00:08:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-25 11:34:19 +02:00
|
|
|
if (!archive->open(QIODevice::ReadOnly)) {
|
|
|
|
kWarning() << "Could not open package file:" << package;
|
2008-11-04 00:08:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-25 11:34:19 +02:00
|
|
|
archivedPackage = true;
|
2008-11-04 00:08:39 +01:00
|
|
|
path = tempdir.name();
|
2009-07-25 11:34:19 +02:00
|
|
|
|
|
|
|
const KArchiveDirectory *source = archive->directory();
|
2008-11-04 00:08:39 +01:00
|
|
|
source->copyTo(path);
|
2009-07-25 11:34:19 +02:00
|
|
|
|
|
|
|
QStringList entries = source->entries();
|
|
|
|
if (entries.count() == 1) {
|
|
|
|
const KArchiveEntry *entry = source->entry(entries[0]);
|
|
|
|
if (entry->isDirectory()) {
|
|
|
|
path.append(entry->name()).append("/");
|
|
|
|
}
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString metadataPath = path + "metadata.desktop";
|
|
|
|
if (!QFile::exists(metadataPath)) {
|
2009-07-25 11:34:19 +02:00
|
|
|
kWarning() << "No metadata file in package" << package << metadataPath;
|
2008-11-04 00:08:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
PackageMetadata meta(metadataPath);
|
|
|
|
QString targetName = meta.pluginName();
|
|
|
|
|
|
|
|
if (targetName.isEmpty()) {
|
|
|
|
kWarning() << "Package plugin name not specified";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that package names are safe so package uninstall can't inject
|
|
|
|
// bad characters into the paths used for removal.
|
2009-03-17 17:43:21 +01:00
|
|
|
QRegExp validatePluginName("^[\\w-\\.]+$"); // Only allow letters, numbers, underscore and period.
|
2008-11-04 00:08:39 +01:00
|
|
|
if (!validatePluginName.exactMatch(targetName)) {
|
|
|
|
kWarning() << "Package plugin name " << targetName << "contains invalid characters";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
targetName = packageRoot + '/' + targetName;
|
|
|
|
if (QFile::exists(targetName)) {
|
|
|
|
kWarning() << targetName << "already exists";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (archivedPackage) {
|
|
|
|
// it's in a temp dir, so just move it over.
|
|
|
|
KIO::CopyJob *job = KIO::move(KUrl(path), KUrl(targetName), KIO::HideProgressInfo);
|
|
|
|
if (!job->exec()) {
|
|
|
|
kWarning() << "Could not move package to destination:" << targetName << " : " << job->errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// it's a directory containing the stuff, so copy the contents rather
|
|
|
|
// than move them
|
|
|
|
KIO::CopyJob *job = KIO::copy(KUrl(path), KUrl(targetName), KIO::HideProgressInfo);
|
|
|
|
if (!job->exec()) {
|
|
|
|
kWarning() << "Could not copy package to destination:" << targetName << " : " << job->errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (archivedPackage) {
|
|
|
|
// no need to remove the temp dir (which has been successfully moved if it's an archive)
|
|
|
|
tempdir.setAutoRemove(false);
|
|
|
|
}
|
|
|
|
|
2009-07-25 11:34:19 +02:00
|
|
|
if (!servicePrefix.isEmpty()) {
|
|
|
|
// and now we register it as a service =)
|
|
|
|
QString metaPath = targetName + "/metadata.desktop";
|
|
|
|
KDesktopFile df(metaPath);
|
|
|
|
KConfigGroup cg = df.desktopGroup();
|
|
|
|
|
|
|
|
// Q: should not installing it as a service disqualify it?
|
|
|
|
// Q: i don't think so since KServiceTypeTrader may not be
|
|
|
|
// used by the installing app in any case, and the
|
|
|
|
// package is properly installed - aseigo
|
|
|
|
|
|
|
|
//TODO: reduce code duplication with registerPackage below
|
|
|
|
|
|
|
|
QString serviceName = servicePrefix + meta.pluginName();
|
|
|
|
|
|
|
|
QString service = KStandardDirs::locateLocal("services", serviceName + ".desktop");
|
|
|
|
KIO::FileCopyJob *job = KIO::file_copy(metaPath, service, -1, KIO::HideProgressInfo);
|
|
|
|
if (job->exec()) {
|
|
|
|
// the icon in the installed file needs to point to the icon in the
|
|
|
|
// installation dir!
|
|
|
|
QString iconPath = targetName + '/' + cg.readEntry("Icon");
|
|
|
|
QFile icon(iconPath);
|
|
|
|
if (icon.exists()) {
|
|
|
|
KDesktopFile df(service);
|
|
|
|
KConfigGroup cg = df.desktopGroup();
|
|
|
|
cg.writeEntry("Icon", iconPath);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
kWarning() << "Could not register package as service (this is not necessarily fatal):" << serviceName << " : " << job->errorString();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Package::uninstallPackage(const QString &pluginName,
|
|
|
|
const QString &packageRoot,
|
|
|
|
const QString &servicePrefix) // static
|
|
|
|
{
|
|
|
|
// We need to remove the package directory and its metadata file.
|
|
|
|
QString targetName = pluginName;
|
|
|
|
targetName = packageRoot + '/' + targetName;
|
|
|
|
|
|
|
|
if (!QFile::exists(targetName)) {
|
|
|
|
kWarning() << targetName << "does not exist";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString serviceName = servicePrefix + pluginName;
|
|
|
|
|
|
|
|
QString service = KStandardDirs::locateLocal("services", serviceName + ".desktop");
|
|
|
|
kDebug() << "Removing service file " << service;
|
|
|
|
bool ok = QFile::remove(service);
|
|
|
|
|
|
|
|
if (!ok) {
|
|
|
|
kWarning() << "Unable to remove " << service;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
KIO::DeleteJob *job = KIO::del(KUrl(targetName));
|
|
|
|
if (!job->exec()) {
|
|
|
|
kWarning() << "Could not delete package from:" << targetName << " : " << job->errorString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Package::registerPackage(const PackageMetadata &data, const QString &iconPath)
|
|
|
|
{
|
|
|
|
QString serviceName("plasma-applet-" + data.pluginName());
|
|
|
|
QString service = KStandardDirs::locateLocal("services", serviceName + ".desktop");
|
|
|
|
|
|
|
|
if (data.pluginName().isEmpty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
data.write(service);
|
|
|
|
|
|
|
|
KDesktopFile config(service);
|
|
|
|
KConfigGroup cg = config.desktopGroup();
|
|
|
|
const QString type = data.type().isEmpty() ? "Service" : data.type();
|
|
|
|
cg.writeEntry("Type", type);
|
|
|
|
const QString serviceTypes = data.serviceType().isNull() ? "Plasma/Applet,Plasma/Containment" : data.serviceType();
|
|
|
|
cg.writeEntry("X-KDE-ServiceTypes", serviceTypes);
|
|
|
|
cg.writeEntry("X-KDE-PluginInfo-EnabledByDefault", true);
|
|
|
|
|
|
|
|
QFile icon(iconPath);
|
|
|
|
if (icon.exists()) {
|
|
|
|
//FIXME: the '/' search will break on non-UNIX. do we care?
|
|
|
|
QString installedIcon("plasma_applet_" + data.pluginName() +
|
|
|
|
iconPath.right(iconPath.length() - iconPath.lastIndexOf("/")));
|
|
|
|
cg.writeEntry("Icon", installedIcon);
|
|
|
|
installedIcon = KStandardDirs::locateLocal("icon", installedIcon);
|
|
|
|
KIO::FileCopyJob *job = KIO::file_copy(iconPath, installedIcon, -1, KIO::HideProgressInfo);
|
|
|
|
job->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Package::createPackage(const PackageMetadata &metadata,
|
|
|
|
const QString &source,
|
|
|
|
const QString &destination,
|
|
|
|
const QString &icon) // static
|
|
|
|
{
|
|
|
|
Q_UNUSED(icon)
|
|
|
|
if (!metadata.isValid()) {
|
|
|
|
kWarning() << "Metadata file is not complete";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// write metadata in a temporary file
|
|
|
|
KTemporaryFile metadataFile;
|
|
|
|
if (!metadataFile.open()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
metadata.write(metadataFile.fileName());
|
|
|
|
|
|
|
|
// put everything into a zip archive
|
|
|
|
KZip creation(destination);
|
|
|
|
creation.setCompression(KZip::NoCompression);
|
|
|
|
if (!creation.open(QIODevice::WriteOnly)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
creation.addLocalFile(metadataFile.fileName(), "metadata.desktop");
|
|
|
|
creation.addLocalDirectory(source, "contents");
|
|
|
|
creation.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-02 04:27:16 +02:00
|
|
|
PackagePrivate::PackagePrivate(const PackageStructure::Ptr st, const QString &p)
|
|
|
|
: structure(st),
|
|
|
|
service(0)
|
|
|
|
{
|
|
|
|
structure->setPath(p);
|
|
|
|
valid = !structure->path().isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
PackagePrivate::~PackagePrivate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PackagePrivate::publish(AnnouncementMethods methods)
|
|
|
|
{
|
2009-10-15 21:34:34 +02:00
|
|
|
if (!service) {
|
2009-09-02 04:27:16 +02:00
|
|
|
service = new PlasmoidService(structure->path());
|
|
|
|
}
|
|
|
|
|
2009-10-20 01:04:42 +02:00
|
|
|
QString resourceName =
|
2009-09-02 04:27:16 +02:00
|
|
|
i18nc("%1 is the name of a plasmoid, %2 the name of the machine that plasmoid is published on",
|
2009-10-20 01:04:42 +02:00
|
|
|
"%1 on %2", structure->metadata().name(), QHostInfo::localHostName());
|
2009-09-02 04:27:16 +02:00
|
|
|
kDebug() << "publishing package under name " << resourceName;
|
|
|
|
service->d->publish(methods, resourceName, structure->metadata());
|
|
|
|
}
|
|
|
|
|
|
|
|
void PackagePrivate::unpublish()
|
|
|
|
{
|
|
|
|
if (service) {
|
|
|
|
service->d->unpublish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PackagePrivate::isPublished() const
|
|
|
|
{
|
|
|
|
if (service) {
|
|
|
|
return service->d->isPublished();
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
} // Namespace
|