kde-workspace/plasma/runners/bookmarks/bookmarksrunner.cpp
Ivailo Monev acfeaa88f1 plasma: simplify URLs transformation in bookmarks runner
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-09-22 07:24:25 +03:00

123 lines
3.9 KiB
C++

/*
* Copyright 2007 Glenn Ergeerts <glenn.ergeerts@telenet.be>
* Copyright 2012 Glenn Ergeerts <marco.gulino@gmail.com>
*
* This program 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, 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 Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "bookmarksrunner.h"
#include "browser.h"
#include <QList>
#include <QStack>
#include <QDir>
#include <KMimeType>
#include <KMimeTypeTrader>
#include <KToolInvocation>
#include <KUrl>
#include <KStandardDirs>
#include <KDebug>
#include "bookmarkmatch.h"
#include "browserfactory.h"
#include "bookmarksrunner_defs.h"
BookmarksRunner::BookmarksRunner( QObject* parent, const QVariantList &args )
: Plasma::AbstractRunner(parent, args), m_browser(0), m_browserFactory(new BrowserFactory(this))
{
Q_UNUSED(args)
kDebug(kdbg_code) << "Creating BookmarksRunner";
setObjectName( QLatin1String("Bookmarks" ));
addSyntax(Plasma::RunnerSyntax(":q:", i18n("Finds web browser bookmarks matching :q:.")));
setDefaultSyntax(Plasma::RunnerSyntax(i18nc("list of all web browser bookmarks", "bookmarks"),
i18n("List all web browser bookmarks")));
connect(this, SIGNAL(prepare()), this, SLOT(prep()));
}
BookmarksRunner::~BookmarksRunner()
{
}
void BookmarksRunner::prep()
{
m_browser = m_browserFactory->find(findBrowserName(), this);
connect(this, SIGNAL(teardown()), dynamic_cast<QObject*>(m_browser), SLOT(teardown()));
m_browser->prepare();
}
void BookmarksRunner::match(Plasma::RunnerContext &context)
{
if(! m_browser) return;
const QString term = context.query();
if ((term.length() < 3) && (!context.singleRunnerQueryMode())) {
return;
}
bool allBookmarks = term.compare(i18nc("list of all konqueror bookmarks", "bookmarks"),
Qt::CaseInsensitive) == 0;
QList<BookmarkMatch> matches = m_browser->match(term, allBookmarks);
foreach(BookmarkMatch match, matches) {
if(!context.isValid())
return;
context.addMatch(term, match.asQueryMatch(this));
}
}
QString BookmarksRunner::findBrowserName()
{
//HACK find the default browser
KConfigGroup config(KSharedConfig::openConfig("kdeglobals"), QLatin1String("General") );
QString exec = config.readPathEntry(QLatin1String("BrowserApplication"), QString());
kDebug(kdbg_code) << "Found exec string: " << exec;
if (exec.isEmpty()) {
KService::Ptr service = KMimeTypeTrader::self()->preferredService("text/html");
if (service) {
exec = service->exec();
}
}
kDebug(kdbg_code) << "KRunner::Bookmarks: found executable " << exec << " as default browser";
return exec;
}
void BookmarksRunner::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &action)
{
Q_UNUSED(context);
const QString term = action.data().toString();
// transforms URLs like "kde.org" to "http://kde.org"
const KUrl url = KUrl::fromUserInput(term);
KToolInvocation::invokeBrowser(url.url());
}
QMimeData * BookmarksRunner::mimeDataForMatch(const Plasma::QueryMatch * match)
{
QMimeData * result = new QMimeData();
QList<QUrl> urls;
urls << QUrl(match->data().toString());
result->setUrls(urls);
result->setText(match->data().toString());
return result;
}
#include "moc_bookmarksrunner.cpp"