2007-06-17 02:25:16 +02:00
|
|
|
/******************************************************************************
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2007 by Aaron Seigo <aseigo@kde.org> *
|
|
|
|
* Copyright 2007 by Riccardo Iaconelli <riccardo@kde.org> *
|
2007-06-17 02:25:16 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2007-07-20 10:06:27 +02:00
|
|
|
#include "package.h"
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
#include <KArchiveDirectory>
|
|
|
|
#include <KArchiveEntry>
|
2007-07-20 06:07:00 +02:00
|
|
|
#include <KComponentData>
|
2007-06-17 02:25:16 +02:00
|
|
|
#include <KIO/FileCopyJob>
|
|
|
|
#include <KIO/Job>
|
2007-07-20 06:07:00 +02:00
|
|
|
#include <KPluginInfo>
|
2007-06-17 02:25:16 +02:00
|
|
|
#include <KStandardDirs>
|
2007-12-02 13:04:57 +01:00
|
|
|
#include <KTempDir>
|
2007-07-20 06:23:27 +02:00
|
|
|
#include <KTemporaryFile>
|
2007-06-17 02:25:16 +02:00
|
|
|
#include <KZip>
|
2007-10-06 00:21:25 +02:00
|
|
|
#include <KDebug>
|
2007-06-17 02:25:16 +02:00
|
|
|
|
|
|
|
#include "packagemetadata.h"
|
|
|
|
#include "packagestructure.h"
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class Package::Private
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Private(const PackageStructure& st, const QString& p)
|
|
|
|
: structure(st),
|
|
|
|
basePath(p),
|
2007-12-02 13:04:57 +01:00
|
|
|
valid(QFile::exists(basePath)),
|
|
|
|
metadata(0)
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
if (valid && basePath[basePath.length() - 1] != '/') {
|
|
|
|
basePath.append('/');
|
|
|
|
}
|
2007-12-02 13:04:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~Private()
|
|
|
|
{
|
|
|
|
delete metadata;
|
2007-06-17 02:25:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PackageStructure structure;
|
|
|
|
QString basePath;
|
|
|
|
bool valid;
|
2007-12-02 13:04:57 +01:00
|
|
|
PackageMetadata *metadata;
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Package::Package(const QString& packageRoot, const QString& package,
|
|
|
|
const PackageStructure& structure)
|
2007-07-04 14:55:07 +02:00
|
|
|
: d(new Private(structure, packageRoot + '/' + package))
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-11-26 20:16:40 +01:00
|
|
|
Package::Package(const QString &packagePath, const PackageStructure &structure)
|
|
|
|
: d(new Private(structure, packagePath))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
Package::~Package()
|
|
|
|
{
|
2007-10-27 16:27:25 +02:00
|
|
|
delete d;
|
2007-06-17 02:25:16 +02:00
|
|
|
}
|
|
|
|
|
2007-07-23 09:26:28 +02:00
|
|
|
bool Package::isValid() const
|
2007-07-20 05:21:40 +02:00
|
|
|
{
|
|
|
|
if (!d->valid) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-10-22 03:36:08 +02:00
|
|
|
foreach (const char *dir, d->structure.requiredDirectories()) {
|
2007-12-02 13:04:57 +01:00
|
|
|
if (!QFile::exists(d->basePath + "contents/" + d->structure.path(dir))) {
|
|
|
|
kWarning(505) << "Could not find required directory" << dir;
|
2007-07-20 05:21:40 +02:00
|
|
|
d->valid = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-22 03:36:08 +02:00
|
|
|
foreach (const char *file, d->structure.requiredFiles()) {
|
2007-12-02 13:04:57 +01:00
|
|
|
if (!QFile::exists(d->basePath + "contents/" + d->structure.path(file))) {
|
2008-01-18 01:10:27 +01:00
|
|
|
kWarning(505) << "Could not find required file" << file << ", look in"
|
|
|
|
<< d->basePath + "contents/" + d->structure.path(file) << endl;
|
2007-07-20 05:21:40 +02:00
|
|
|
d->valid = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-07-23 09:26:28 +02:00
|
|
|
QString Package::filePath(const char* fileType, const QString& filename) const
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
if (!d->valid) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString path = d->structure.path(fileType);
|
2007-07-20 05:21:40 +02:00
|
|
|
|
|
|
|
if (path.isEmpty()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
path.prepend(d->basePath + "contents/");
|
2007-11-03 13:22:21 +01:00
|
|
|
|
2007-07-20 05:21:40 +02:00
|
|
|
if (!filename.isEmpty()) {
|
2007-06-17 02:25:16 +02:00
|
|
|
path.append("/").append(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (QFile::exists(path)) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2007-07-23 09:26:28 +02:00
|
|
|
QString Package::filePath(const char* fileType) const
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
return filePath(fileType, QString());
|
|
|
|
}
|
|
|
|
|
2007-07-23 09:26:28 +02:00
|
|
|
QStringList Package::entryList(const char* fileType) const
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
if (!d->valid) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString path = d->structure.path(fileType);
|
|
|
|
if (path.isEmpty()) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
QDir dir(d->basePath + "contents/" + path);
|
2007-06-17 02:25:16 +02:00
|
|
|
|
|
|
|
if (!dir.exists()) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir.entryList(QDir::Files | QDir::Readable);
|
|
|
|
}
|
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
const PackageMetadata *Package::metadata() const
|
|
|
|
{
|
|
|
|
if (!d->metadata) {
|
|
|
|
d->metadata = new PackageMetadata(d->basePath + "metadata.desktop");
|
|
|
|
}
|
|
|
|
return d->metadata;
|
|
|
|
}
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
//TODO: provide a version of this that allows one to ask for certain types of packages, etc?
|
2007-11-05 00:38:07 +01:00
|
|
|
// should we be using KService here instead/as well?
|
2007-06-17 02:25:16 +02:00
|
|
|
QStringList Package::knownPackages(const QString& packageRoot) // static
|
|
|
|
{
|
|
|
|
QDir dir(packageRoot);
|
|
|
|
|
|
|
|
if (!dir.exists()) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList packages;
|
|
|
|
|
2007-12-03 04:43:30 +01:00
|
|
|
foreach (const QString& sdir, dir.entryList(QDir::AllDirs | QDir::Readable)) {
|
|
|
|
QString metadata = packageRoot + '/' + sdir + "/metadata.desktop";
|
2007-06-17 02:25:16 +02:00
|
|
|
if (QFile::exists(metadata)) {
|
|
|
|
PackageMetadata m(metadata);
|
|
|
|
packages << m.name();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return packages;
|
|
|
|
}
|
|
|
|
|
2007-07-20 06:07:00 +02:00
|
|
|
bool Package::installPackage(const QString& package,
|
|
|
|
const QString& packageRoot) // static
|
2007-06-17 02:25:16 +02:00
|
|
|
{
|
|
|
|
//TODO: report *what* failed if something does fail
|
|
|
|
QDir root(packageRoot);
|
|
|
|
|
|
|
|
if (!root.exists()) {
|
|
|
|
KStandardDirs::makeDir(packageRoot);
|
|
|
|
if (!root.exists()) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "Could not create package root directory:" << packageRoot;
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFile::exists(package)) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "No such file:" << package;
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
KZip archive(package);
|
|
|
|
if (!archive.open(QIODevice::ReadOnly)) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "Could not open package file:" << package;
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const KArchiveDirectory* source = archive.directory();
|
|
|
|
const KArchiveEntry* metadata = source->entry("metadata.desktop");
|
|
|
|
|
|
|
|
if (!metadata) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "No metadata file in package" << package;
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile f(package);
|
2007-12-02 13:04:57 +01:00
|
|
|
KTempDir tempdir;
|
|
|
|
source->copyTo(tempdir.name());
|
2007-06-17 02:25:16 +02:00
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
QString metadataPath = tempdir.name() + "metadata.desktop";
|
2007-06-17 02:25:16 +02:00
|
|
|
if (!QFile::exists(metadataPath)) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "No metadata file in package" << package;
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
PackageMetadata meta(metadataPath);
|
|
|
|
QString targetName = meta.name();
|
|
|
|
|
|
|
|
if (targetName.isEmpty()) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "Package name not specified";
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-07-04 14:55:07 +02:00
|
|
|
targetName = packageRoot + '/' + targetName;
|
2007-06-17 02:25:16 +02:00
|
|
|
if (QFile::exists(targetName)) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << targetName << "already exists";
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
KIO::FileCopyJob* job = KIO::file_move(tempdir.name(), targetName, -1,
|
|
|
|
KIO::HideProgressInfo);
|
2007-06-17 02:25:16 +02:00
|
|
|
|
2007-07-20 06:07:00 +02:00
|
|
|
if (!job->exec()) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(505) << "Could not move package to destination:" << targetName;
|
2007-06-17 02:25:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
2007-12-02 13:04:57 +01:00
|
|
|
|
|
|
|
// no need to remove the temp dir (which has been moved)
|
|
|
|
tempdir.setAutoRemove(false);
|
2007-06-17 02:25:16 +02:00
|
|
|
|
2007-07-20 06:07:00 +02:00
|
|
|
// and now we register it as a service =)
|
|
|
|
targetName.append("/metadata.desktop");
|
|
|
|
QString service = KStandardDirs::locateLocal("services",
|
|
|
|
KGlobal::mainComponent().componentName());
|
|
|
|
KPluginInfo pluginInfo(targetName);
|
|
|
|
|
|
|
|
if (pluginInfo.pluginName().isEmpty()) {
|
|
|
|
// should not installing it as a service disqualify it?
|
|
|
|
// 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
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
service.append(pluginInfo.pluginName()).append(".desktop");
|
2007-12-02 13:04:57 +01:00
|
|
|
job = KIO::file_copy(targetName, service, -1, KIO::HideProgressInfo);
|
2007-07-20 06:07:00 +02:00
|
|
|
return job->exec();
|
2007-06-17 02:25:16 +02:00
|
|
|
}
|
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
bool Package::createPackage(const PackageMetadata &metadata,
|
|
|
|
const QString &source,
|
|
|
|
const QString &destination,
|
|
|
|
const QString &icon) // static
|
2007-07-20 06:23:27 +02:00
|
|
|
{
|
|
|
|
if (!metadata.isComplete()) {
|
2007-12-02 13:04:57 +01:00
|
|
|
kWarning(550) << "Metadata file is not complete";
|
2007-07-20 06:23:27 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
// write metadata in a temporary file
|
2007-07-20 06:23:27 +02:00
|
|
|
KTemporaryFile metadataFile;
|
2007-12-02 13:04:57 +01:00
|
|
|
if (!metadataFile.open()) {
|
|
|
|
return false;
|
2007-07-20 06:23:27 +02:00
|
|
|
}
|
2007-12-02 13:04:57 +01:00
|
|
|
metadata.write(metadataFile.fileName(), icon);
|
2007-07-20 06:23:27 +02:00
|
|
|
|
2007-12-02 13:04:57 +01:00
|
|
|
// put everything into a zip archive
|
2007-07-20 06:23:27 +02:00
|
|
|
KZip creation(destination);
|
|
|
|
creation.setCompression(KZip::NoCompression);
|
|
|
|
if (!creation.open(QIODevice::WriteOnly)) {
|
|
|
|
return false;
|
|
|
|
}
|
2007-12-02 13:04:57 +01:00
|
|
|
|
2007-07-20 06:23:27 +02:00
|
|
|
creation.addLocalFile(metadataFile.fileName(), "metadata.desktop");
|
2007-10-19 03:03:21 +02:00
|
|
|
creation.addLocalDirectory(source, "contents");
|
2007-07-20 06:23:27 +02:00
|
|
|
creation.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-17 02:25:16 +02:00
|
|
|
} // Namespace
|