1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
|
/*
* This file is part of signon-ui
*
* Copyright (C) 2011 Canonical Ltd.
*
* Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define HAS_FOREIGN_QWINDOW (QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) || \
defined(FORCE_FOREIGN_QWINDOW))
#include "request.h"
#ifdef USE_UBUNTU_WEB_VIEW
#include "ubuntu-browser-request.h"
#endif
#include "browser-request.h"
#include "debug.h"
#include "dialog-request.h"
#include "errors.h"
#include "indicator-service.h"
#ifndef UNIT_TESTS
#include "webcredentials_interface.h"
#else
#include "fake-webcredentials-interface.h"
#endif
#include <Accounts/Account>
#include <Accounts/Manager>
#include <QApplication>
#include <QDBusArgument>
#include <QVBoxLayout>
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
#include <QX11Info>
#include <X11/Xlib.h>
#endif
#if HAS_FOREIGN_QWINDOW
#include <QWindow>
#endif
#include <SignOn/uisessiondata.h>
#include <SignOn/uisessiondata_priv.h>
using namespace SignOnUi;
using namespace com::canonical;
namespace SignOnUi {
class RequestPrivate: public QObject
{
Q_OBJECT
Q_DECLARE_PUBLIC(Request)
public:
RequestPrivate(const QDBusConnection &connection,
const QDBusMessage &message,
const QVariantMap ¶meters,
Request *request);
~RequestPrivate();
WId windowId() const {
return m_clientData[SSOUI_KEY_WINDOWID].toUInt();
}
bool embeddedUi() const {
return m_clientData[SSOUI_KEY_EMBEDDED].toBool();
}
private Q_SLOTS:
void onIndicatorCallFinished(QDBusPendingCallWatcher *watcher);
private:
bool setWindow(QWindow *window);
Accounts::Account *findAccount();
bool dispatchToIndicator();
void onIndicatorCallSucceeded();
private:
mutable Request *q_ptr;
QDBusConnection m_connection;
QDBusMessage m_message;
QVariantMap m_parameters;
QVariantMap m_clientData;
bool m_inProgress;
Accounts::Manager *m_accountManager;
QPointer<QWindow> m_window;
};
} // namespace
RequestPrivate::RequestPrivate(const QDBusConnection &connection,
const QDBusMessage &message,
const QVariantMap ¶meters,
Request *request):
QObject(request),
q_ptr(request),
m_connection(connection),
m_message(message),
m_parameters(parameters),
m_inProgress(false),
m_accountManager(0),
m_window(0)
{
if (parameters.contains(SSOUI_KEY_CLIENT_DATA)) {
QVariant variant = parameters[SSOUI_KEY_CLIENT_DATA];
m_clientData = (variant.type() == QVariant::Map) ?
variant.toMap() :
qdbus_cast<QVariantMap>(variant.value<QDBusArgument>());
}
}
RequestPrivate::~RequestPrivate()
{
}
bool RequestPrivate::setWindow(QWindow *window)
{
if (m_window != 0) {
BLAME() << "Widget already set";
return false;
}
m_window = window;
#if HAS_FOREIGN_QWINDOW
if (embeddedUi() && windowId() != 0) {
TRACE() << "Requesting window embedding";
QWindow *host = QWindow::fromWinId(windowId());
window->show();
window->setParent(host);
return true;
}
#endif
/* If the window has no parent and the webcredentials indicator service is
* up, dispatch the request to it. */
if (windowId() == 0 && dispatchToIndicator()) {
return false;
}
window->setModality(Qt::WindowModal);
window->show();
#if HAS_FOREIGN_QWINDOW
if (windowId() != 0) {
TRACE() << "Requesting window reparenting";
QWindow *parent = QWindow::fromWinId(windowId());
window->setTransientParent(parent);
}
#endif
return true;
}
Accounts::Account *RequestPrivate::findAccount()
{
if (!m_parameters.contains(SSOUI_KEY_IDENTITY))
return 0;
uint identity = m_parameters.value(SSOUI_KEY_IDENTITY).toUInt();
if (identity == 0)
return 0;
/* Find the account using this identity.
* FIXME: there might be more than one!
*/
if (m_accountManager == 0) {
m_accountManager = new Accounts::Manager(this);
}
foreach (Accounts::AccountId accountId, m_accountManager->accountList()) {
Accounts::Account *account = m_accountManager->account(accountId);
if (account == 0) continue;
QVariant value(QVariant::UInt);
if (account->value("CredentialsId", value) != Accounts::NONE &&
value.toUInt() == identity) {
return account;
}
}
// Not found
return 0;
}
bool RequestPrivate::dispatchToIndicator()
{
Q_Q(Request);
Accounts::Account *account = findAccount();
if (account == 0) {
return false;
}
QVariantMap notification;
notification["DisplayName"] = account->displayName();
notification["ClientData"] = m_clientData;
notification["Identity"] = q->identity();
notification["Method"] = q->method();
notification["Mechanism"] = q->mechanism();
indicators::webcredentials *webcredentialsIf =
new indicators::webcredentials(WEBCREDENTIALS_BUS_NAME,
WEBCREDENTIALS_OBJECT_PATH,
m_connection, this);
QDBusPendingReply<> reply =
webcredentialsIf->ReportFailure(account->id(), notification);
if (reply.isFinished()) {
if (reply.isError() &&
/* if this is a fake D-Bus interface, we get the
* "Disconnected" error. */
reply.error().type() != QDBusError::Disconnected) {
BLAME() << "Error dispatching to indicator:" <<
reply.error().message();
return false;
} else {
onIndicatorCallSucceeded();
return true;
}
}
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this);
QObject::connect(watcher, SIGNAL(finished(QDBusPendingCallWatcher*)),
this,
SLOT(onIndicatorCallFinished(QDBusPendingCallWatcher*)));
return true;
}
void RequestPrivate::onIndicatorCallFinished(QDBusPendingCallWatcher *watcher)
{
if (watcher->isError()) {
/* if the notification could not be delivered to the indicator, show
* the widget. */
if (m_window != 0)
m_window->show();
} else {
onIndicatorCallSucceeded();
}
}
void RequestPrivate::onIndicatorCallSucceeded()
{
Q_Q(Request);
/* the account has been reported as failing. We can now close this
* request, and tell the application that UI interaction is forbidden.
*/
QVariantMap result;
result[SSOUI_KEY_ERROR] = SignOn::QUERY_ERROR_FORBIDDEN;
q->setResult(result);
}
Request *Request::newRequest(const QDBusConnection &connection,
const QDBusMessage &message,
const QVariantMap ¶meters,
QObject *parent)
{
if (parameters.contains(SSOUI_KEY_OPENURL)) {
#ifdef USE_UBUNTU_WEB_VIEW
TRACE() << "Platform:" << QGuiApplication::platformName();
if (QGuiApplication::platformName().startsWith("ubuntu") ||
qgetenv("XDG_CURRENT_DESKTOP").startsWith("Unity") ||
qgetenv("SSOUI_USE_UBUNTU_WEB_VIEW") == QByteArray("1")) {
return new UbuntuBrowserRequest(connection, message,
parameters, parent);
}
#endif
return new BrowserRequest(connection, message, parameters, parent);
} else {
return new DialogRequest(connection, message, parameters, parent);
}
}
Request::Request(const QDBusConnection &connection,
const QDBusMessage &message,
const QVariantMap ¶meters,
QObject *parent):
QObject(parent),
d_ptr(new RequestPrivate(connection, message, parameters, this))
{
}
Request::~Request()
{
}
QString Request::id(const QVariantMap ¶meters)
{
return parameters[SSOUI_KEY_REQUESTID].toString();
}
QString Request::id() const
{
Q_D(const Request);
return Request::id(d->m_parameters);
}
void Request::setWidget(QWidget *widget)
{
Q_D(Request);
if (d->setWindow(widget->windowHandle())) {
widget->show();
}
}
void Request::setWindow(QWindow *window)
{
Q_D(Request);
d->setWindow(window);
}
uint Request::identity() const
{
Q_D(const Request);
return d->m_parameters.value(SSOUI_KEY_IDENTITY).toUInt();
}
QString Request::method() const
{
Q_D(const Request);
return d->m_parameters.value(SSOUI_KEY_METHOD).toString();
}
QString Request::mechanism() const
{
Q_D(const Request);
return d->m_parameters.value(SSOUI_KEY_MECHANISM).toString();
}
WId Request::windowId() const
{
Q_D(const Request);
return d->windowId();
}
bool Request::embeddedUi() const
{
Q_D(const Request);
return d->embeddedUi();
}
bool Request::isInProgress() const
{
Q_D(const Request);
return d->m_inProgress;
}
const QVariantMap &Request::parameters() const
{
Q_D(const Request);
return d->m_parameters;
}
const QVariantMap &Request::clientData() const
{
Q_D(const Request);
return d->m_clientData;
}
void Request::start()
{
Q_D(Request);
if (d->m_inProgress) {
BLAME() << "Request already started!";
return;
}
d->m_inProgress = true;
}
void Request::cancel()
{
setCanceled();
}
void Request::fail(const QString &name, const QString &message)
{
Q_D(Request);
QDBusMessage reply = d->m_message.createErrorReply(name, message);
d->m_connection.send(reply);
Q_EMIT completed();
}
void Request::setCanceled()
{
QVariantMap result;
result[SSOUI_KEY_ERROR] = SignOn::QUERY_ERROR_CANCELED;
setResult(result);
}
void Request::setResult(const QVariantMap &result)
{
Q_D(Request);
QDBusMessage reply = d->m_message.createReply(result);
d->m_connection.send(reply);
Q_EMIT completed();
}
#include "request.moc"
|