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 <glib.h>
22 
23 #include <QDebug>
24 
25 ASAdapter::ASAdapter()
26 {
27  m_accounts = new AccountsServiceDBusAdaptor();
28 
29  m_user = QString::fromUtf8(g_get_user_name());
30 
31  if (m_user.isEmpty()) {
32  qWarning() << "username not valid. Account Service integration will not work.";
33  }
34 }
35 
36 ASAdapter::~ASAdapter()
37 {
38  m_accounts->deleteLater();
39 }
40 
41 void ASAdapter::syncItems(const QList<LauncherItem*> &list)
42 {
43  if (m_accounts && !m_user.isEmpty()) {
44  QList<QVariantMap> items;
45  items.reserve(list.count());
46 
47  Q_FOREACH(LauncherItem *item, list) {
48  items << itemToVariant(item);
49  }
50 
51  m_accounts->setUserPropertyAsync(m_user, QStringLiteral("com.canonical.unity.AccountsService"), QStringLiteral("LauncherItems"), QVariant::fromValue(items));
52  }
53 }
54 
55 QVariantMap ASAdapter::itemToVariant(LauncherItem *item) const
56 {
57  QVariantMap details;
58  details.insert(QStringLiteral("id"), item->appId());
59  details.insert(QStringLiteral("name"), item->name());
60  details.insert(QStringLiteral("icon"), item->icon());
61  details.insert(QStringLiteral("count"), item->count());
62  details.insert(QStringLiteral("countVisible"), item->countVisible());
63  details.insert(QStringLiteral("pinned"), item->pinned());
64  details.insert(QStringLiteral("running"), item->running());
65  details.insert(QStringLiteral("progress"), item->progress());
66  return details;
67 }