Unity 8
asadapter.cpp
1 /*
2  * Copyright 2014-2015 Canonical Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #include "asadapter.h"
18 #include "launcheritem.h"
19 #include "AccountsServiceDBusAdaptor.h"
20 
21 #include <QDebug>
22 
23 ASAdapter::ASAdapter()
24 {
25  m_accounts = new AccountsServiceDBusAdaptor();
26  m_user = qgetenv("USER");
27  if (m_user.isEmpty()) {
28  qWarning() << "$USER not valid. Account Service integration will not work.";
29  }
30 }
31 
32 ASAdapter::~ASAdapter()
33 {
34  m_accounts->deleteLater();
35 }
36 
37 void ASAdapter::syncItems(const QList<LauncherItem*> &list)
38 {
39  if (m_accounts && !m_user.isEmpty()) {
40  QList<QVariantMap> items;
41  items.reserve(list.count());
42 
43  Q_FOREACH(LauncherItem *item, list) {
44  items << itemToVariant(item);
45  }
46 
47  m_accounts->setUserPropertyAsync(m_user, QStringLiteral("com.canonical.unity.AccountsService"), QStringLiteral("LauncherItems"), QVariant::fromValue(items));
48  }
49 }
50 
51 QVariantMap ASAdapter::itemToVariant(LauncherItem *item) const
52 {
53  QVariantMap details;
54  details.insert(QStringLiteral("id"), item->appId());
55  details.insert(QStringLiteral("name"), item->name());
56  details.insert(QStringLiteral("icon"), item->icon());
57  details.insert(QStringLiteral("count"), item->count());
58  details.insert(QStringLiteral("countVisible"), item->countVisible());
59  details.insert(QStringLiteral("pinned"), item->pinned());
60  details.insert(QStringLiteral("running"), item->running());
61  details.insert(QStringLiteral("progress"), item->progress());
62  return details;
63 }