ukui-search/libsearch/websearch/web-search-plugin.cpp

169 lines
5.7 KiB
C++
Raw Normal View History

2022-05-10 13:49:54 +08:00
#include <QDBusReply>
#include "web-search-plugin.h"
#include "global-settings.h"
2022-03-04 11:36:36 +08:00
#define WEB_ENGINE_KEY "webEngine"
#define BROWSERTYPE "x-scheme-handler/http"
#define DESKTOPPATH "/usr/share/applications/"
2021-12-14 14:43:35 +08:00
using namespace UkuiSearch;
WebSearchPlugin::WebSearchPlugin(QObject *parent) : QObject(parent)
{
SearchPluginIface::Actioninfo open { 0, tr("Start browser search")};
m_actionInfo << open;
initDetailPage();
}
2021-12-14 14:43:35 +08:00
const QString UkuiSearch::WebSearchPlugin::name()
{
return "Web Page";
}
2021-12-14 14:43:35 +08:00
const QString UkuiSearch::WebSearchPlugin::description()
{
return tr("Web Page");
}
2021-12-14 14:43:35 +08:00
QString UkuiSearch::WebSearchPlugin::getPluginName()
{
return tr("Web Page");
}
2021-12-14 14:43:35 +08:00
void UkuiSearch::WebSearchPlugin::KeywordSearch(QString keyword, DataQueue<UkuiSearch::SearchPluginIface::ResultInfo> *searchResult)
{
m_keyWord = keyword;
ResultInfo resultInfo;
resultInfo.name = m_keyWord;
resultInfo.type = 0;
2022-03-04 11:36:36 +08:00
QString defaultwebengines(getDefaultAppId(BROWSERTYPE));
QByteArray ba = QString(DESKTOPPATH + defaultwebengines).toUtf8();
GDesktopAppInfo * textinfo = g_desktop_app_info_new_from_filename(ba.constData());
const char * iconname = g_icon_to_string(g_app_info_get_icon(G_APP_INFO(textinfo)));
QIcon appicon;
appicon = QIcon::fromTheme(QString(QLatin1String(iconname)),
QIcon(QString("/usr/share/pixmaps/"+QString(QLatin1String(iconname))
+".png")));
resultInfo.icon = QIcon(appicon);
resultInfo.actionKey = m_keyWord;
searchResult->enqueue(resultInfo);
2022-03-04 11:36:36 +08:00
g_object_unref(textinfo);
}
void WebSearchPlugin::stopSearch()
{
}
2021-12-14 14:43:35 +08:00
QList<UkuiSearch::SearchPluginIface::Actioninfo> UkuiSearch::WebSearchPlugin::getActioninfo(int type)
{
return m_actionInfo;
}
2021-12-14 14:43:35 +08:00
void UkuiSearch::WebSearchPlugin::openAction(int actionkey, QString key, int type)
{
QString address;
QString engine = GlobalSettings::getInstance()->getValue("webEngine").toString();
if(!engine.isEmpty()) {
if(engine == "360") {
address = "https://so.com/s?q=" + m_keyWord; //360
} else if(engine == "sougou") {
address = "https://www.sogou.com/web?query=" + m_keyWord; //搜狗
} else {
address = "http://baidu.com/s?word=" + m_keyWord; //百度
}
} else { //默认值
address = "http://baidu.com/s?word=" + m_keyWord ; //百度
}
2022-05-10 13:49:54 +08:00
bool res(false);
QDBusInterface * appLaunchInterface = new QDBusInterface("com.kylin.AppManager",
"/com/kylin/AppManager",
"com.kylin.AppManager",
QDBusConnection::sessionBus());
if(!appLaunchInterface->isValid()) {
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
res = false;
} else {
appLaunchInterface->setTimeout(10000);
QDBusReply<bool> reply = appLaunchInterface->call("LaunchDefaultAppWithUrl", address);
if(reply.isValid()) {
res = reply;
} else {
qWarning() << "SoftWareCenter dbus called failed!";
res = false;
}
}
if(appLaunchInterface) {
delete appLaunchInterface;
}
appLaunchInterface = NULL;
if (res)
return;
QDesktopServices::openUrl(address);
}
2021-12-14 14:43:35 +08:00
QWidget *UkuiSearch::WebSearchPlugin::detailPage(const UkuiSearch::SearchPluginIface::ResultInfo &ri)
{
return m_detailPage;
}
2021-12-14 14:43:35 +08:00
void UkuiSearch::WebSearchPlugin::initDetailPage()
{
m_detailPage = new QWidget();
m_detailPage->setFixedWidth(360);
m_detailPage->setAttribute(Qt::WA_TranslucentBackground);
m_detailLyt = new QVBoxLayout(m_detailPage);
m_detailLyt->setContentsMargins(8, 0, 16, 0);
m_iconLabel = new QLabel(m_detailPage);
m_iconLabel->setAlignment(Qt::AlignCenter);
QString type = GlobalSettings::getInstance()->getValue(STYLE_NAME_KEY).toString();
if (type == "ukui-dark") {
m_iconLabel->setPixmap(QIcon(":/res/icons/search-web-dark.svg").pixmap(128, 128));
} else {
m_iconLabel->setPixmap(QIcon(":/res/icons/search-web-default.svg").pixmap(128, 128));
}
connect(qApp, &QApplication::paletteChanged, this, [=] () {
QString type = GlobalSettings::getInstance()->getValue(STYLE_NAME_KEY).toString();
if (type == "ukui-dark") {
m_iconLabel->setPixmap(QIcon(":/res/icons/search-web-dark.svg").pixmap(128, 128));
} else {
m_iconLabel->setPixmap(QIcon(":/res/icons/search-web-default.svg").pixmap(128, 128));
}
});
m_actionFrame = new QFrame(m_detailPage);
m_actionFrameLyt = new QVBoxLayout(m_actionFrame);
m_actionFrameLyt->setContentsMargins(0, 0, 0, 0);
m_actionFrameLyt->setAlignment(Qt::AlignCenter);
m_actionLabel1 = new ActionLabel(tr("Start browser search"), m_currentActionKey, m_actionFrame);
m_actionLabel1->adjustSize();
m_actionFrameLyt->addWidget(m_actionLabel1);
m_actionFrame->setLayout(m_actionFrameLyt);
m_detailLyt->addSpacing(146);
m_detailLyt->addWidget(m_iconLabel);
//m_detailLyt->addSpacing(6);
m_detailLyt->addWidget(m_actionFrame);
m_detailPage->setLayout(m_detailLyt);
m_detailLyt->addStretch();
connect(m_actionLabel1, &ActionLabel::actionTriggered, [ & ](){
openAction(0, m_currentActionKey, 0);
});
}
2022-03-04 11:36:36 +08:00
QString WebSearchPlugin::getDefaultAppId(const char *contentType)
{
GAppInfo * app = g_app_info_get_default_for_type(contentType, false);
if(app != NULL){
const char * id = g_app_info_get_id(app);
QString strId(id);
g_object_unref(app);
return strId;
} else {
return QString("");
}
}