Lomiri
ualwrapper.cpp
1 /*
2  * Copyright (C) 2016 Canonical Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #include <QDebug>
18 
19 #include "ualwrapper.h"
20 
21 #include <lomiri-app-launch/registry.h>
22 using namespace lomiri::app_launch;
23 
24 UalWrapper::UalWrapper(QObject *parent):
25  QObject(parent)
26 {
27 }
28 
29 QStringList UalWrapper::installedApps()
30 {
31  QStringList appIds;
32  try {
33  for (const std::shared_ptr<Application> &app : Registry::installedApps()) {
34  if (!app->appId().package.value().empty()) {
35  appIds << QString::fromStdString(app->appId().package.value() + "_" + app->appId().appname.value());
36  } else {
37  appIds << QString::fromStdString(app->appId().appname);
38  }
39  }
40  } catch (const std::runtime_error &e) {
41  qWarning() << "lomiri-app-launch threw an exception listing apps:" << e.what();
42  }
43 
44  return appIds;
45 }
46 
47 UalWrapper::AppInfo UalWrapper::getApplicationInfo(const QString &appId)
48 {
49  AppInfo info;
50 
51  try {
52  AppID ualAppId = AppID::find(appId.toStdString());
53  if (ualAppId.empty()) {
54  qWarning() << "Empty ualAppId result for" << appId;
55  return info;
56  }
57 
58  std::shared_ptr<Application> ualApp;
59  ualApp = Application::create(ualAppId, Registry::getDefault());
60 
61  info.appId = appId;
62  info.name = QString::fromStdString(ualApp->info()->name());
63  info.icon = QString::fromStdString(ualApp->info()->iconPath());
64  for (const std::string &keyword : ualApp->info()->keywords().value()) {
65  info.keywords << QString::fromStdString(keyword);
66  }
67  //info.popularity = ualApp->info()->popularity();
68  info.valid = true;
69  } catch (const std::runtime_error &e) {
70  qWarning() << "lomiri-app-launch threw an exception getting app info for appId:" << appId << ":" << e.what();
71  }
72 
73  return info;
74 }