mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-16 03:52:10 +01:00
b0b2820180
- Fixed parsing @updateURL/@downloadURL - Updating is only manual - User have to click on update button located in Greasemonkey settings - Update works just like download - New version is not being checked, original script is replaced - Fixed coding style issues Closes #1653
300 lines
8.2 KiB
C++
300 lines
8.2 KiB
C++
/* ============================================================
|
|
* GreaseMonkey plugin for QupZilla
|
|
* Copyright (C) 2012-2014 David Rosca <nowrep@gmail.com>
|
|
*
|
|
* 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 3 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 "gm_manager.h"
|
|
#include "gm_script.h"
|
|
#include "gm_downloader.h"
|
|
#include "gm_icon.h"
|
|
#include "gm_urlinterceptor.h"
|
|
#include "gm_addscriptdialog.h"
|
|
#include "settings/gm_settings.h"
|
|
|
|
#include "browserwindow.h"
|
|
#include "webpage.h"
|
|
#include "qztools.h"
|
|
#include "mainapplication.h"
|
|
#include "networkmanager.h"
|
|
#include "desktopnotificationsfactory.h"
|
|
|
|
#include <QTimer>
|
|
#include <QDir>
|
|
#include <QSettings>
|
|
#include <QStatusBar>
|
|
#include <QWebEngineProfile>
|
|
#include <QWebEngineScriptCollection>
|
|
|
|
GM_Manager::GM_Manager(const QString &sPath, QObject* parent)
|
|
: QObject(parent)
|
|
, m_settingsPath(sPath)
|
|
, m_interceptor(new GM_UrlInterceptor(this))
|
|
{
|
|
mApp->networkManager()->installUrlInterceptor(m_interceptor);
|
|
|
|
QTimer::singleShot(0, this, SLOT(load()));
|
|
}
|
|
|
|
GM_Manager::~GM_Manager()
|
|
{
|
|
mApp->networkManager()->removeUrlInterceptor(m_interceptor);
|
|
}
|
|
|
|
void GM_Manager::showSettings(QWidget* parent)
|
|
{
|
|
if (!m_settings) {
|
|
m_settings = new GM_Settings(this, parent);
|
|
}
|
|
|
|
m_settings.data()->show();
|
|
m_settings.data()->raise();
|
|
}
|
|
|
|
void GM_Manager::downloadScript(const QUrl &url)
|
|
{
|
|
QMetaObject::invokeMethod(this, "doDownloadScript", Qt::QueuedConnection, Q_ARG(QUrl, url));
|
|
}
|
|
|
|
QString GM_Manager::settinsPath() const
|
|
{
|
|
return m_settingsPath;
|
|
}
|
|
|
|
QString GM_Manager::scriptsDirectory() const
|
|
{
|
|
return m_settingsPath + QL1S("/greasemonkey");
|
|
}
|
|
|
|
QString GM_Manager::requireScripts(const QStringList &urlList) const
|
|
{
|
|
QDir requiresDir(m_settingsPath + QL1S("/greasemonkey/requires"));
|
|
if (!requiresDir.exists() || urlList.isEmpty()) {
|
|
return QString();
|
|
}
|
|
|
|
QSettings settings(m_settingsPath + QL1S("/greasemonkey/requires/requires.ini"), QSettings::IniFormat);
|
|
settings.beginGroup("Files");
|
|
|
|
QString script;
|
|
|
|
foreach (const QString &url, urlList) {
|
|
if (settings.contains(url)) {
|
|
const QString fileName = settings.value(url).toString();
|
|
script.append(QzTools::readAllFileContents(fileName).trimmed() + '\n');
|
|
}
|
|
}
|
|
|
|
return script;
|
|
}
|
|
|
|
QString GM_Manager::bootstrapScript() const
|
|
{
|
|
return m_bootstrapScript;
|
|
}
|
|
|
|
QString GM_Manager::valuesScript() const
|
|
{
|
|
return m_valuesScript;
|
|
}
|
|
|
|
void GM_Manager::unloadPlugin()
|
|
{
|
|
// Save settings
|
|
QSettings settings(m_settingsPath + "/extensions.ini", QSettings::IniFormat);
|
|
settings.beginGroup("GreaseMonkey");
|
|
settings.setValue("disabledScripts", m_disabledScripts);
|
|
settings.endGroup();
|
|
|
|
delete m_settings.data();
|
|
|
|
// Remove icons from all windows
|
|
QHashIterator<BrowserWindow*, GM_Icon*> it(m_windows);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
mainWindowDeleted(it.key());
|
|
}
|
|
}
|
|
|
|
QList<GM_Script*> GM_Manager::allScripts() const
|
|
{
|
|
return m_scripts;
|
|
}
|
|
|
|
bool GM_Manager::containsScript(const QString &fullName) const
|
|
{
|
|
foreach (GM_Script* script, m_scripts) {
|
|
if (fullName == script->fullName()) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void GM_Manager::enableScript(GM_Script* script)
|
|
{
|
|
script->setEnabled(true);
|
|
m_disabledScripts.removeOne(script->fullName());
|
|
|
|
QWebEngineScriptCollection *collection = mApp->webProfile()->scripts();
|
|
collection->insert(script->webScript());
|
|
}
|
|
|
|
void GM_Manager::disableScript(GM_Script* script)
|
|
{
|
|
script->setEnabled(false);
|
|
m_disabledScripts.append(script->fullName());
|
|
|
|
QWebEngineScriptCollection *collection = mApp->webProfile()->scripts();
|
|
collection->remove(collection->findScript(script->fullName()));
|
|
}
|
|
|
|
bool GM_Manager::addScript(GM_Script* script)
|
|
{
|
|
if (!script || !script->isValid()) {
|
|
return false;
|
|
}
|
|
|
|
m_scripts.append(script);
|
|
connect(script, &GM_Script::scriptChanged, this, &GM_Manager::scriptChanged);
|
|
|
|
QWebEngineScriptCollection *collection = mApp->webProfile()->scripts();
|
|
collection->insert(script->webScript());
|
|
|
|
emit scriptsChanged();
|
|
return true;
|
|
}
|
|
|
|
bool GM_Manager::removeScript(GM_Script* script, bool removeFile)
|
|
{
|
|
if (!script) {
|
|
return false;
|
|
}
|
|
|
|
m_scripts.removeOne(script);
|
|
|
|
QWebEngineScriptCollection *collection = mApp->webProfile()->scripts();
|
|
collection->remove(collection->findScript(script->fullName()));
|
|
|
|
m_disabledScripts.removeOne(script->fullName());
|
|
|
|
if (removeFile) {
|
|
QFile::remove(script->fileName());
|
|
delete script;
|
|
}
|
|
|
|
emit scriptsChanged();
|
|
return true;
|
|
}
|
|
|
|
void GM_Manager::showNotification(const QString &message, const QString &title)
|
|
{
|
|
QPixmap icon(":gm/data/icon.png");
|
|
|
|
mApp->desktopNotifications()->showNotification(icon, title.isEmpty() ? tr("GreaseMonkey") : title, message);
|
|
}
|
|
|
|
void GM_Manager::load()
|
|
{
|
|
QDir gmDir(m_settingsPath + QL1S("/greasemonkey"));
|
|
if (!gmDir.exists()) {
|
|
gmDir.mkdir(m_settingsPath + QL1S("/greasemonkey"));
|
|
}
|
|
|
|
if (!gmDir.exists("requires")) {
|
|
gmDir.mkdir("requires");
|
|
}
|
|
|
|
m_bootstrapScript = QzTools::readAllFileContents(":gm/data/bootstrap.min.js");
|
|
m_valuesScript = QzTools::readAllFileContents(":gm/data/values.min.js");
|
|
|
|
QSettings settings(m_settingsPath + QL1S("/extensions.ini"), QSettings::IniFormat);
|
|
settings.beginGroup("GreaseMonkey");
|
|
m_disabledScripts = settings.value("disabledScripts", QStringList()).toStringList();
|
|
|
|
foreach (const QString &fileName, gmDir.entryList(QStringList("*.js"), QDir::Files)) {
|
|
const QString absolutePath = gmDir.absoluteFilePath(fileName);
|
|
GM_Script* script = new GM_Script(this, absolutePath);
|
|
|
|
if (!script->isValid()) {
|
|
delete script;
|
|
continue;
|
|
}
|
|
|
|
m_scripts.append(script);
|
|
|
|
if (m_disabledScripts.contains(script->fullName())) {
|
|
script->setEnabled(false);
|
|
}
|
|
else {
|
|
mApp->webProfile()->scripts()->insert(script->webScript());
|
|
}
|
|
}
|
|
}
|
|
|
|
void GM_Manager::scriptChanged()
|
|
{
|
|
GM_Script *script = qobject_cast<GM_Script*>(sender());
|
|
if (!script)
|
|
return;
|
|
|
|
QWebEngineScriptCollection *collection = mApp->webProfile()->scripts();
|
|
collection->remove(collection->findScript(script->fullName()));
|
|
collection->insert(script->webScript());
|
|
}
|
|
|
|
void GM_Manager::doDownloadScript(const QUrl &url)
|
|
{
|
|
GM_Downloader *downloader = new GM_Downloader(url, this);
|
|
connect(downloader, &GM_Downloader::finished, this, [=](const QString &fileName) {
|
|
bool deleteScript = true;
|
|
GM_Script *script = new GM_Script(this, fileName);
|
|
if (script->isValid()) {
|
|
if (!containsScript(script->fullName())) {
|
|
GM_AddScriptDialog dialog(this, script);
|
|
deleteScript = dialog.exec() != QDialog::Accepted;
|
|
}
|
|
else {
|
|
showNotification(tr("'%1' is already installed").arg(script->name()));
|
|
}
|
|
}
|
|
|
|
if (deleteScript) {
|
|
delete script;
|
|
QFile(fileName).remove();
|
|
}
|
|
});
|
|
}
|
|
|
|
bool GM_Manager::canRunOnScheme(const QString &scheme)
|
|
{
|
|
return (scheme == QLatin1String("http") || scheme == QLatin1String("https")
|
|
|| scheme == QLatin1String("data") || scheme == QLatin1String("ftp"));
|
|
}
|
|
|
|
void GM_Manager::mainWindowCreated(BrowserWindow* window)
|
|
{
|
|
GM_Icon* icon = new GM_Icon(this, window);
|
|
window->statusBar()->addPermanentWidget(icon);
|
|
m_windows[window] = icon;
|
|
}
|
|
|
|
void GM_Manager::mainWindowDeleted(BrowserWindow* window)
|
|
{
|
|
window->statusBar()->removeWidget(m_windows[window]);
|
|
delete m_windows[window];
|
|
m_windows.remove(window);
|
|
}
|