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
|
/*
* This file is part of Remote Support Desktop
* https://gitlab.das-netzwerkteam.de/RemoteWebApp/rwa.support.desktopapp
* Copyright 2021 Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de>
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY 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, write to the
* Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <QDebug>
#include <QtDBus>
#include <QDBusPendingCallWatcher>
#include "add_server_wizard.h"
#include "../../RWADBusAdaptor.h"
#include "../../RWAHost.h"
Add_Server_wizard::Add_Server_wizard(QObject *parent) : QObject(parent) {
_dbus_api = new DBusAPI();
// _dbus_api --serviceAddWebAppHostResponse-> this.add_web_app_host_response()
QObject::connect(_dbus_api,
SIGNAL(serviceAddWebAppHostResponse(QJsonDocument*)),
this,
SLOT(add_web_app_host_response(QJsonDocument*)));
}
void Add_Server_wizard::processStep1(QString host_url) {
qDebug() << "Processing Step 1 with args: " << host_url;
if(host_url == "") {
emit step1Failed(tr("This field can't be empty!"));
return;
}
return add_server(host_url);
}
void Add_Server_wizard::processStep2() {
qDebug() << "Processing Step 2 with args: No Args.";
emit step2Failed(tr("The features you expected here are not yet implemented."));
// Just show placeholder scene now.
emit step2Success();
}
void Add_Server_wizard::add_server(QString host_url) {
_dbus_api->add_web_app_host_request(host_url);
}
void Add_Server_wizard::add_web_app_host_response(QJsonDocument *doc) {
// Get the QJsonObject
QJsonObject jObject = doc->object();
QVariantMap mainMap = jObject.toVariantMap();
// Status of request
QString request_status = mainMap["status"].toString();
if (request_status == "success") {
// Building host_object
QJsonObject host_object = jObject.value(QString("host")).toObject();
QString host_uuid = host_object["uuid"].toString();
QString host_alias = host_object["alias"].toString();
QString host_url = host_object["url"].toString();
if (host_url == "" || host_uuid == "") {
// This two values are required and can't be omitted.
QString reason = tr("Response of D-Bus service lacks necessary host object.");
qCritical().noquote() << tr("An error occured while adding a new host:")
<< reason;
emit step1Failed(reason);
return;
}
if (host_alias == "") {
qDebug().noquote() << QString("An alias for the host wasn't delivered "
"so just use '%0' as alias.").arg(host_url);
host_alias = host_url;
}
// Now built RWAHost object.
QScopedPointer<RWAHost> rwa_host (new RWAHost(host_uuid, host_alias, host_url));
qInfo() << "Successfully added a new RWAHost.";
emit step1Success();
} else {
qCritical().noquote() << tr("An error occured while adding a new host!");
QString reason = tr("An error occured while adding a new host!");
QString type = mainMap["type"].toString();
if(type == "connection"){
reason = tr("Couldn't connect to the specified host!");
qCritical().noquote() << reason;
} else if (type == "duplicate") {
reason = tr("The specified host was already added!");
qCritical().noquote() << reason;
} else if (type == "invalid_url") {
reason = tr("The specified host address is not valid!");
qCritical().noquote() << reason;
}
emit step1Failed(reason);
return;
}
}
|