forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest_userparameter.cpp
319 lines (267 loc) · 7.96 KB
/
rest_userparameter.cpp
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
/*
* Copyright (c) 2016 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#include <QApplication>
#include <QDesktopServices>
#include <QString>
#include <QTcpSocket>
#include <QVariantMap>
#include <QNetworkInterface>
#include "de_web_plugin.h"
#include "de_web_plugin_private.h"
#include "json.h"
#include <stdlib.h>
/*! Configuration REST API broker.
\param req - request data
\param rsp - response data
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::handleUserparameterApi(const ApiRequest &req, ApiResponse &rsp)
{
if (req.path[2] != QLatin1String("userparameter"))
{
return REQ_NOT_HANDLED;
}
// POST /api/<apikey>/userparameter/
if ((req.path.size() == 3) && (req.hdr.method() == "POST"))
{
return createUserParameter(req, rsp);
}
// POST /api/<apikey>/userparameter/<parameter>
else if ((req.path.size() == 4) && (req.hdr.method() == "POST"))
{
return addUserParameter(req, rsp);
}
// PUT /api/<apikey>/userparameter/<parameter>
else if ((req.path.size() == 4) && (req.hdr.method() == "PUT" || req.hdr.method() == "PATCH"))
{
return modifyUserParameter(req, rsp);
}
// GET /api/<apikey>/userparameter
else if ((req.path.size() == 3) && (req.hdr.method() == "GET"))
{
return getAllUserParameter(req, rsp);
}
// GET /api/<apikey>/userparameter/<parameter>
else if ((req.path.size() == 4) && (req.hdr.method() == "GET"))
{
return getUserParameter(req, rsp);
}
// DELETE /api/<apikey>/userparameter/<parameter>
else if ((req.path.size() == 4) && (req.hdr.method() == "DELETE"))
{
return deleteUserParameter(req, rsp);
}
return REQ_NOT_HANDLED;
}
/*! POST /api/<apikey>/userparameter
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::createUserParameter(const ApiRequest &req, ApiResponse &rsp)
{
if(!checkApikeyAuthentification(req, rsp))
{
return REQ_READY_SEND;
}
if (req.content.isEmpty())
{
rsp.list.append(errorToMap(ERR_INVALID_VALUE, QString("/userparameter"), QString("invalid value for userparameter")));
rsp.httpStatus = HttpStatusBadRequest;
return REQ_READY_SEND;
}
rsp.httpStatus = HttpStatusOk;
// generate id
int i = 1;
while (gwUserParameter.contains(QString::number(i)))
{
i++;
}
QString id = QString::number(i);
QVariantMap rspItem;
QVariantMap rspItemState;
gwUserParameter.insert(id, req.content);
rspItemState["id"] = id;
rspItem["success"] = rspItemState;
rsp.list.append(rspItem);
queSaveDb(DB_USERPARAM, DB_SHORT_SAVE_DELAY);
return REQ_READY_SEND;
}
/*! POST /api/<apikey>/userparameter/<parameter>
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::addUserParameter(const ApiRequest &req, ApiResponse &rsp)
{
if(!checkApikeyAuthentification(req, rsp))
{
return REQ_READY_SEND;
}
DBG_Assert(req.path.size() == 4);
if (req.path.size() != 4)
{
return -1;
}
const QString &key = req.path[3];
rsp.httpStatus = HttpStatusOk;
//don't overwrite existing parameters if POST request
if (gwUserParameter.contains(key))
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errorToMap(ERR_DUPLICATE_EXIST ,
QString("config/userparameter"), QString("key %1 already exists").arg(key)));
return REQ_READY_SEND;
}
QVariantMap rspItem;
QVariantMap rspItemState;
gwUserParameter.insert(key, req.content);
rspItemState["/config/userparameter"] = QString("added new %1").arg(key);
rspItem["success"] = rspItemState;
rsp.list.append(rspItem);
queSaveDb(DB_USERPARAM, DB_SHORT_SAVE_DELAY);
return REQ_READY_SEND;
}
/*! PUT /api/<apikey>/userparameter/<parameter>
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::modifyUserParameter(const ApiRequest &req, ApiResponse &rsp)
{
if(!checkApikeyAuthentification(req, rsp))
{
return REQ_READY_SEND;
}
DBG_Assert(req.path.size() == 4);
if (req.path.size() != 4)
{
return -1;
}
const QString &key = req.path[3];
rsp.httpStatus = HttpStatusOk;
QVariantMap rspItem;
QVariantMap rspItemState;
//overwrite existing parameters if PUT request
if (gwUserParameter.contains(key))
{
QVariantMap::iterator it = gwUserParameter.find(key);
if (*it != req.content)
{
gwUserParameter.erase(it);
gwUserParameter.insert(key, req.content);
queSaveDb(DB_USERPARAM, DB_SHORT_SAVE_DELAY);
}
rspItemState["/config/userparameter"] = QString("updated %1").arg(key);
rspItem["success"] = rspItemState;
rsp.list.append(rspItem);
}
else
{
gwUserParameter.insert(key, req.content);
rspItemState["/config/userparameter"] = QString("added new %1").arg(key);
rspItem["success"] = rspItemState;
rsp.list.append(rspItem);
queSaveDb(DB_USERPARAM, DB_SHORT_SAVE_DELAY);
}
return REQ_READY_SEND;
}
/*! GET /api/<apikey>/userparameter
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::getAllUserParameter(const ApiRequest &req, ApiResponse &rsp)
{
Q_UNUSED(req);
if(!checkApikeyAuthentification(req, rsp))
{
return REQ_READY_SEND;
}
rsp.httpStatus = HttpStatusOk;
QVariantMap::const_iterator k = gwUserParameter.begin();
QVariantMap::const_iterator kend = gwUserParameter.end();
for (; k != kend; ++k)
{
rsp.map[k.key()] = gwUserParameter.value(k.key());
}
if (rsp.map.isEmpty())
{
rsp.str = "{}"; // return empty object
}
return REQ_READY_SEND;
}
/*! GET /api/<apikey>/userparameter/<parameter>
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::getUserParameter(const ApiRequest &req, ApiResponse &rsp)
{
Q_UNUSED(req);
if(!checkApikeyAuthentification(req, rsp))
{
return REQ_READY_SEND;
}
DBG_Assert(req.path.size() == 4);
if (req.path.size() != 4)
{
return -1;
}
const QString &key = req.path[3];
rsp.httpStatus = HttpStatusOk;
if (gwUserParameter.contains(key))
{
rsp.map[key] = gwUserParameter.value(key);
}
else
{
QVariantMap rspItem;
QVariantMap rspItemState;
rspItemState["/config/userparameter"] = QString("key %1 not found").arg(key);
rspItem["error"] = rspItemState;
rsp.list.append(rspItem);
rsp.httpStatus = HttpStatusNotFound;
}
return REQ_READY_SEND;
}
/*! DELETE /api/<apikey>/userparameter/<parameter>
\return REQ_READY_SEND
REQ_NOT_HANDLED
*/
int DeRestPluginPrivate::deleteUserParameter(const ApiRequest &req, ApiResponse &rsp)
{
if(!checkApikeyAuthentification(req, rsp))
{
return REQ_READY_SEND;
}
DBG_Assert(req.path.size() == 4);
if (req.path.size() != 4)
{
return -1;
}
const QString &key = req.path[3];
QVariantMap rspItem;
QVariantMap rspItemState;
if (gwUserParameter.contains(key))
{
gwUserParameter.remove(key);
gwUserParameterToDelete.push_back(key);
rspItemState["/config/userparameter"] = QString("key %1 removed").arg(key);
rspItem["success"] = rspItemState;
rsp.list.append(rspItem);
rsp.httpStatus = HttpStatusOk;
queSaveDb(DB_USERPARAM, DB_SHORT_SAVE_DELAY);
}
else
{
rspItemState["/config/userparameter"] = QString("key %1 not found").arg(key);
rspItem["error"] = rspItemState;
rsp.list.append(rspItem);
rsp.httpStatus = HttpStatusNotFound;
}
return REQ_READY_SEND;
}