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.
 
 
 
 
 
 

362 lines
11 KiB

/*
* Copyright 2016 Kai Uwe Broulik <kde@privat.broulik.de>
*
* 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) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* 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 "iconapplet.h"
#include <QApplication>
#include <QDesktopWidget>
#include <QDir>
#include <QDropEvent>
#include <QFileInfo>
#include <QIcon>
#include <QJsonArray>
#include <QMimeData>
#include <QMimeDatabase>
#include <QProcess>
#include <KAuthorized>
#include <KDesktopFile>
#include <KJobWidgets>
#include <KLocalizedString>
#include <KRun>
#include <KIO/DropJob>
IconApplet::IconApplet(QObject *parent, const QVariantList &data)
: Plasma::Applet(parent, data)
{
}
IconApplet::~IconApplet()
{
// in a handler connected to IconApplet::appletDeleted m_localPath will be empty?!
if (destroyed()) {
QFile::remove(m_localPath);
}
}
void IconApplet::init()
{
populate();
}
void IconApplet::populate()
{
m_url = config().readEntry(QStringLiteral("url"), QUrl());
if (!m_url.isValid()) {
// the old applet that used a QML plugin and stored its url
// in plasmoid.configuration.url had its entries stored in [Configuration][General]
// so we look here as well to provide an upgrade path
m_url = config().group("General").readEntry(QStringLiteral("url"), QUrl());
}
// our backing desktop file already exists? just read all the things from it
const QString path = localPath();
if (QFileInfo::exists(path)) {
populateFromDesktopFile(path);
return;
}
if (!m_url.isValid()) {
// invalid url, use dummy data
populateFromDesktopFile(QString());
return;
}
const QString plasmaIconsFolderPath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/plasma_icons");
if (!QDir().mkpath(plasmaIconsFolderPath)) {
setLaunchErrorMessage(i18n("Failed to create icon widgets folder '%1'", plasmaIconsFolderPath));
return;
}
// We always want it to be a .desktop file (e.g. also for the "Type=Link" at the end)
QString desiredDesktopFileName = m_url.fileName();
if (!desiredDesktopFileName.endsWith(QLatin1String(".desktop"))) {
desiredDesktopFileName.append(QLatin1String(".desktop"));
}
QString backingDesktopFile = plasmaIconsFolderPath + QLatin1Char('/');
// KIO::suggestName always appends a suffix, i.e. it expects that we already know the file already exists
if (QFileInfo::exists(backingDesktopFile + desiredDesktopFileName)) {
desiredDesktopFileName = KIO::suggestName(QUrl::fromLocalFile(plasmaIconsFolderPath), desiredDesktopFileName);
}
backingDesktopFile.append(desiredDesktopFileName);
if (m_url.isLocalFile()) {
const QString localUrlString = m_url.toLocalFile();
// if desktop file just copy it over
if (KDesktopFile::isDesktopFile(localUrlString)) {
if (!QFile::copy(localUrlString, backingDesktopFile)) {
setLaunchErrorMessage(i18n("Failed to copy icon widget desktop file from '%1' to '%2'", localUrlString, backingDesktopFile));
return;
}
// set executable flag on the desktop file so KIO doesn't complain about executing it
makeExecutable(backingDesktopFile);
populateFromDesktopFile(backingDesktopFile);
setLocalPath(backingDesktopFile);
return;
}
}
// in all other cases just make it a link
// TODO use kio stat job which also works for remote stuff
QMimeDatabase db;
const QMimeType mimeType = db.mimeTypeForUrl(m_url);
KDesktopFile linkDesktopFile(backingDesktopFile);
auto desktopGroup = linkDesktopFile.desktopGroup();
desktopGroup.writeEntry(QStringLiteral("Name"), m_url.fileName());
desktopGroup.writeEntry(QStringLiteral("GenericName"), mimeType.comment());
desktopGroup.writeEntry(QStringLiteral("Type"), QStringLiteral("Link"));
desktopGroup.writeEntry(QStringLiteral("URL"), m_url);
desktopGroup.writeEntry(QStringLiteral("Icon"), KIO::iconNameForUrl(m_url));
linkDesktopFile.sync();
// Link desktop files need to be executable
makeExecutable(backingDesktopFile);
populateFromDesktopFile(backingDesktopFile);
setLocalPath(backingDesktopFile);
}
void IconApplet::populateFromDesktopFile(const QString &path)
{
// path empty? just set icon to "unknown" and call it a day
if (path.isEmpty()) {
setIconName({});
return;
}
KDesktopFile desktopFile(path);
const QString &name = desktopFile.readName();
if (m_name != name) {
m_name = name;
emit nameChanged(name);
}
const QString &genericName = desktopFile.readGenericName();
if (m_genericName != genericName) {
m_genericName = genericName;
emit genericNameChanged(genericName);
}
setIconName(desktopFile.readIcon());
QVariantList jumpListActions;
foreach (const QString &actionName, desktopFile.readActions()) {
const KConfigGroup &actionGroup = desktopFile.actionGroup(actionName);
if (!actionGroup.isValid() || !actionGroup.exists()) {
continue;
}
const QString &name = actionGroup.readEntry(QStringLiteral("Name"));
const QString &exec = actionGroup.readEntry(QStringLiteral("Exec"));
if (name.isEmpty() || exec.isEmpty()) {
continue;
}
jumpListActions << QVariantMap{
{QStringLiteral("name"), name},
{QStringLiteral("icon"), actionGroup.readEntry("Icon")},
{QStringLiteral("exec"), exec}
};
}
if (m_jumpListActions != jumpListActions) {
m_jumpListActions = jumpListActions;
emit jumpListActionsChanged(jumpListActions);
}
m_localPath = path;
}
QUrl IconApplet::url() const
{
return m_url;
}
void IconApplet::setUrl(const QUrl &url)
{
if (m_url != url) {
m_url = url;
urlChanged(url);
config().writeEntry(QStringLiteral("url"), url);
populate();
}
}
void IconApplet::setIconName(const QString &iconName)
{
const QString newIconName = (!iconName.isEmpty() ? iconName : QStringLiteral("unknown"));
if (m_iconName != newIconName) {
m_iconName = newIconName;
emit iconNameChanged(newIconName);
}
}
QString IconApplet::name() const
{
return m_name;
}
QString IconApplet::iconName() const
{
return m_iconName;
}
QString IconApplet::genericName() const
{
return m_genericName;
}
QVariantList IconApplet::jumpListActions() const
{
return m_jumpListActions;
}
void IconApplet::open()
{
new KRun(QUrl::fromLocalFile(m_localPath), QApplication::desktop());
}
void IconApplet::processDrop(QObject *dropEvent)
{
Q_ASSERT(dropEvent);
// DeclarativeDropEvent and co aren't public
const QObject *mimeData = qvariant_cast<QObject *>(dropEvent->property("mimeData"));
Q_ASSERT(mimeData);
const QJsonArray &droppedUrls = mimeData->property("urls").toJsonArray();
QList<QUrl> urls;
urls.reserve(droppedUrls.count());
foreach (const QJsonValue &droppedUrl, droppedUrls) {
const QUrl url(droppedUrl.toString());
if (url.isValid()) {
urls.append(url);
}
}
if (urls.isEmpty()) {
return;
}
const QString &localPath = m_url.toLocalFile();
if (KDesktopFile::isDesktopFile(localPath)) {
KRun::runService(KService(localPath), urls, nullptr);
return;
}
QMimeDatabase db;
const QMimeType mimeType = db.mimeTypeForUrl(m_url);
if (KAuthorized::authorize(QStringLiteral("shell_access"))
&& (mimeType.inherits(QStringLiteral("application/x-executable"))
|| mimeType.inherits(QStringLiteral("application/x-shellscript")))) {
QProcess::startDetached(m_url.toLocalFile(), QUrl::toStringList(urls));
return;
}
if (mimeType.inherits(QStringLiteral("inode/directory"))) {
QMimeData mimeData;
mimeData.setUrls(urls);
// DeclarativeDropEvent isn't public
QDropEvent de(QPointF(dropEvent->property("x").toInt(), dropEvent->property("y").toInt()),
static_cast<Qt::DropActions>(dropEvent->property("proposedActions").toInt()),
&mimeData,
static_cast<Qt::MouseButtons>(dropEvent->property("buttons").toInt()),
static_cast<Qt::KeyboardModifiers>(dropEvent->property("modifiers").toInt()));
KIO::DropJob *dropJob = KIO::drop(&de, m_url);
KJobWidgets::setWindow(dropJob, QApplication::desktop());
return;
}
}
void IconApplet::execJumpList(int index)
{
const QString &exec = m_jumpListActions.at(index).toMap().value(QStringLiteral("exec")).toString();
if (exec.isEmpty()) {
return;
}
KRun::run(exec, {}, nullptr, m_name, m_iconName);
}
void IconApplet::configure()
{
KPropertiesDialog *dialog = m_configDialog.data();
if (dialog) {
dialog->show();
dialog->raise();
return;
}
dialog = new KPropertiesDialog(QUrl::fromLocalFile(m_localPath));
m_configDialog = dialog;
connect(dialog, &KPropertiesDialog::applied, this, [this] {
populate();
});
dialog->setAttribute(Qt::WA_DeleteOnClose, true);
dialog->setFileNameReadOnly(true);
dialog->setWindowTitle(i18n("Properties for %1", m_name));
dialog->setWindowIcon(QIcon::fromTheme(QStringLiteral("document-properties")));
dialog->show();
}
QString IconApplet::localPath() const
{
return config().readEntry(QStringLiteral("localPath"));
}
void IconApplet::setLocalPath(const QString &localPath)
{
m_localPath = localPath;
config().writeEntry(QStringLiteral("localPath"), localPath);
}
void IconApplet::makeExecutable(const QString &filePath)
{
QFile file(filePath);
file.setPermissions(file.permissions() | QFile::ExeOwner);
}
K_EXPORT_PLASMA_APPLET_WITH_JSON(icon, IconApplet, "metadata.json")
#include "iconapplet.moc"