forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest_ddf.cpp
704 lines (568 loc) · 21 KB
/
rest_ddf.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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
/*
* Copyright (c) 2024 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 <QTcpSocket>
#include <deconz/dbg_trace.h>
#include "device_ddf_bundle.h"
#include "rest_api.h"
#include "rest_ddf.h"
#include "json.h"
#include "deconz/u_assert.h"
#include "deconz/file.h"
#include "deconz/u_sstream.h"
#include "deconz/u_memory.h"
#include "deconz/util.h"
#include "utils/scratchmem.h"
#define MAX_PATH_LENGTH 2048
/*!
Converts data into hex-ascii string.
The memory area \p ascii must have at least the
size \p 2 * length + 1 bytes.
A terminating zero will be appended at the end.
\returns a pointer to the last byte (zero).
*/
static unsigned char *BinToHexAscii(const void *hex, unsigned length, void *ascii)
{
unsigned i;
unsigned char *h;
unsigned char *a;
static char lookup[] = { '0', '1', '2','3','4','5','6','7','8','9','a','b','c','d','e','f' };
if (!hex || length == 0 || !ascii)
return 0;
h = (unsigned char*)hex;
a = (unsigned char*)ascii;
for (i = 0; i < length; i++)
{
*a++ = lookup[(h[i] & 0xf0) >> 4];
*a++ = lookup[h[i] & 0xf];
}
*a = '\0';
return a;
}
/*
Test upload of .ddf file
curl -F 'data=@/home/mpi/some.ddb' 127.0.0.1:8090/api/12345/ddf
*/
static int WriteBundleDescriptorToResponse(U_BStream *bs, U_SStream *ss, unsigned nRecords)
{
cj_ctx cj;
cj_token tokens[2048];
cj_token *tok;
char ibuf[512];
unsigned chunkSize;
unsigned char sha256[U_SHA256_HASH_SIZE];
char sha256Str[(U_SHA256_HASH_SIZE * 2) + 1];
if (DDFB_FindChunk(bs, "RIFF", &chunkSize) == 0)
{
return 0;
}
if (DDFB_FindChunk(bs, "DDFB", &chunkSize) == 0)
{
return 0;
}
{
// Bundle hash over DDFB chunk (header + data)
if (U_Sha256(&bs->data[bs->pos - 8], chunkSize + 8, sha256) == 0)
{
U_ASSERT(0 && "SHA-256 not working");
return 0; // should not happen
}
BinToHexAscii(sha256, U_SHA256_HASH_SIZE, sha256Str);
}
U_BStream bsDDFB;
U_bstream_init(&bsDDFB, &bs->data[bs->pos], chunkSize);
// check DESC JSON has required fields
if (DDFB_FindChunk(&bsDDFB, "DESC", &chunkSize) == 0)
{
return 0;
}
U_ASSERT(chunkSize > 32);
cj_parse_init(&cj, (char*)&bsDDFB.data[bsDDFB.pos], chunkSize, tokens, sizeof(tokens)/sizeof(tokens[0]));
cj_parse(&cj);
U_ASSERT(cj.status == CJ_OK);
if (cj.status != CJ_OK)
{
return 0;
}
U_ASSERT(cj.tokens_pos > 0);
U_ASSERT(cj.tokens[0].type == CJ_TOKEN_OBJECT_BEG);
U_ASSERT(cj.tokens[cj.tokens_pos - 1].type == CJ_TOKEN_OBJECT_END);
// enough space for descriptor | hash key | file hash
if ((ss->pos + chunkSize + 128 + 128 + 96) < ss->len)
{
if (nRecords > 0)
U_sstream_put_str(ss, ",");
U_sstream_put_str(ss, "\"");
U_sstream_put_str(ss, sha256Str);
U_sstream_put_str(ss, "\":");
// copy all tokens except closing '}'
for (cj_size i = 0; i < cj.tokens_pos - 1; i++)
{
tok = &cj.tokens[i];
U_ASSERT(tok->len != 0);
if (sizeof(ibuf) - 1 < tok->len)
{
U_ASSERT(0 && "unexpected large JSON token");
return 0; // should not happen
}
if (tok->type == CJ_TOKEN_STRING) // include quotes
{
U_ASSERT(tok->pos != 0);
U_memcpy(ibuf, &cj.buf[tok->pos - 1], tok->len + 2);
ibuf[tok->len + 2] = '\0';
}
else
{
U_memcpy(ibuf, &cj.buf[tok->pos], tok->len);
ibuf[tok->len] = '\0';
}
U_sstream_put_str(ss, ibuf);
U_ASSERT(ss->status == U_SSTREAM_OK);
}
// hash over complete bundle file
if (U_Sha256(&bs->data[0], bs->size, sha256) == 0)
{
U_ASSERT(0 && "SHA-256 not working");
return 0; // should not happen
}
BinToHexAscii(sha256, U_SHA256_HASH_SIZE, sha256Str);
// add "file_hash" at the end
U_sstream_put_str(ss, ", \"file_hash\": \"");
U_sstream_put_str(ss, sha256Str);
U_sstream_put_str(ss, "\"}");
return ss->status == U_SSTREAM_OK;
}
return 0;
}
int REST_DDF_GetDescriptors(const ApiRequest &req, ApiResponse &rsp)
{
// TEST call
// curl -vv 127.0.0.1:8090/api/12345/ddf/descriptors
// curl -vv 127.0.0.1:8090/api/12345/ddf/descriptors?next=<token>
unsigned reqCursor = 1;
unsigned curCursor = 1;
unsigned nextCursor = 0;
unsigned nRecords = 0;
unsigned maxRecords = 64;
auto url = req.hdr.url();
{ // get page from query string if exist
U_SStream ss;
U_sstream_init(&ss, (void*)url.data(), (unsigned)url.size());
if (U_sstream_find(&ss, "?next="))
{
U_sstream_find(&ss, "=");
ss.pos++;
long n = U_sstream_get_long(&ss);
if (ss.status == U_SSTREAM_OK && n > 0)
{
reqCursor = (unsigned)n;
}
else
{
rsp.httpStatus = HttpStatusBadRequest;
return REQ_READY_SEND;
}
}
}
unsigned maxResponseSize = 1 << 20; // 1 MB
char *bundleData = SCRATCH_ALLOC(char*, MAX_BUNDLE_SIZE);
char *path = SCRATCH_ALLOC(char*, MAX_PATH_LENGTH);
char *rspData = SCRATCH_ALLOC(char*, maxResponseSize);
if (!bundleData || !path || !rspData)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
return REQ_READY_SEND;
}
FS_Dir dir;
FS_File fp;
U_SStream ss;
U_SStream ssRsp;
unsigned basePathLength;
deCONZ::StorageLocation locations[2] = { deCONZ::DdfBundleUserLocation, deCONZ::DdfBundleLocation };
U_sstream_init(&ssRsp, rspData, maxResponseSize);
U_sstream_put_str(&ssRsp, "{");
for (int locIt = 0; locIt < 2; locIt++)
{
{
QString loc = deCONZ::getStorageLocation(locations[locIt]);
U_sstream_init(&ss, path, MAX_PATH_LENGTH);
U_sstream_put_str(&ss, qPrintable(loc));
basePathLength = ss.pos;
}
if (FS_OpenDir(&dir, path))
{
for (;FS_ReadDir(&dir);)
{
if (dir.entry.type != FS_TYPE_FILE)
continue;
U_sstream_init(&ss, dir.entry.name, strlen(dir.entry.name));
if (U_sstream_find(&ss, ".ddf") == 0 && U_sstream_find(&ss, ".ddb") == 0)
continue;
if (curCursor < reqCursor)
{
curCursor++;
continue;
}
if (nRecords < maxRecords)
{
U_sstream_init(&ss, path, MAX_PATH_LENGTH);
ss.pos = basePathLength; // reuse path and append the filename to existing base path
U_sstream_put_str(&ss, "/");
U_sstream_put_str(&ss, dir.entry.name);
if (FS_OpenFile(&fp, FS_MODE_R, path))
{
long n = FS_ReadFile(&fp, bundleData, MAX_BUNDLE_SIZE);
if (n > 32)
{
U_BStream bs;
U_bstream_init(&bs, bundleData, (unsigned)n);
if (WriteBundleDescriptorToResponse(&bs, &ssRsp, nRecords))
{
curCursor++;
nRecords++;
}
}
FS_CloseFile(&fp);
}
}
else
{
nextCursor = curCursor;
break;
}
DBG_Printf(DBG_INFO, "BUNDLE: %s\n", ss.str);
}
if (nextCursor != 0)
{
U_sstream_put_str(&ssRsp, ",\"next\":");
U_sstream_put_long(&ssRsp, (long)nextCursor);
}
FS_CloseDir(&dir);
}
}
U_sstream_put_str(&ssRsp, "}");
rsp.httpStatus = HttpStatusOk;
rsp.str = ssRsp.str;
return REQ_READY_SEND;
}
int REST_DDF_GetBundle(const ApiRequest &req, ApiResponse &rsp)
{
// TEST call
// curl -vv -O --remote-header-name 127.0.0.1:8090/api/12345/ddf/bundles/0a34938f63f0ccb40e1672799c898889989574f617c103fb64496e9ad78c29a2
// wget --content-disposition 127.0.0.1:8090/api/12345/ddf/bundles/0a34938f63f0ccb40e1672799c898889989574f617c103fb64496e9ad78c29a2
FS_File fp;
FS_Dir dir;
unsigned basePathLength;
char bundleHashStr[U_SHA256_HASH_SIZE * 2 + 1];
{
auto urlBundleHash = req.hdr.pathAt(4);
if (urlBundleHash.size() != (U_SHA256_HASH_SIZE * 2))
{
rsp.httpStatus = HttpStatusBadRequest;
return REQ_READY_SEND;
}
U_memcpy(bundleHashStr, urlBundleHash.data(), U_SHA256_HASH_SIZE * 2);
bundleHashStr[U_SHA256_HASH_SIZE * 2] = '\0';
if (!DDFB_SanitizeBundleHashString(bundleHashStr, U_SHA256_HASH_SIZE * 2))
{
rsp.httpStatus = HttpStatusBadRequest;
return REQ_READY_SEND;
}
}
unsigned maxFileNameLength = 72;
char *path = SCRATCH_ALLOC(char*, MAX_PATH_LENGTH);
char *fileName = SCRATCH_ALLOC(char*, maxFileNameLength);
rsp.bin = SCRATCH_ALLOC(char*, MAX_BUNDLE_SIZE);
if (!path || !fileName || !rsp.bin)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
return REQ_READY_SEND;
}
{
U_SStream ssFileName;
U_sstream_init(&ssFileName, fileName, maxFileNameLength);
U_sstream_put_str(&ssFileName, bundleHashStr);
U_sstream_put_str(&ssFileName, ".ddb");
}
deCONZ::StorageLocation locations[2] = { deCONZ::DdfBundleUserLocation, deCONZ::DdfBundleLocation };
for (int locIt = 0; locIt < 2; locIt++)
{
U_SStream ss;
{
QString loc = deCONZ::getStorageLocation(locations[locIt]);
U_sstream_init(&ss, path, MAX_PATH_LENGTH);
U_sstream_put_str(&ss, qPrintable(loc));
basePathLength = ss.pos;
}
if (FS_OpenDir(&dir, path))
{
for (;FS_ReadDir(&dir);)
{
if (dir.entry.type != FS_TYPE_FILE)
continue;
U_sstream_init(&ss, dir.entry.name, strlen(dir.entry.name));
if (U_sstream_find(&ss, ".ddf") == 0 && U_sstream_find(&ss, ".ddb") == 0)
continue;
U_sstream_init(&ss, path, MAX_PATH_LENGTH);
ss.pos = basePathLength; // reuse path and append the filename to existing base path
U_sstream_put_str(&ss, "/");
U_sstream_put_str(&ss, dir.entry.name);
if (FS_OpenFile(&fp, FS_MODE_R, path))
{
long fileSize = FS_GetFileSize(&fp);
if (fileSize > 0 && fileSize <= MAX_BUNDLE_SIZE)
{
if (FS_ReadFile(&fp, rsp.bin, fileSize) == fileSize)
{
U_BStream bs;
uint8_t sha256[U_SHA256_HASH_SIZE];
U_bstream_init(&bs, rsp.bin, fileSize);
if (IsValidDDFBundle(&bs, sha256))
{
char sha256Str[(U_SHA256_HASH_SIZE * 2) + 1];
BinToHexAscii(sha256, U_SHA256_HASH_SIZE, sha256Str);
if (U_memcmp(bundleHashStr, sha256Str, U_SHA256_HASH_SIZE * 2) == 0)
{
FS_CloseFile(&fp);
FS_CloseDir(&dir);
rsp.contentLength = (unsigned)fileSize;
rsp.fileName = fileName;
rsp.httpStatus = HttpStatusOk;
rsp.contentType = HttpContentOctetStream;
return REQ_READY_SEND;
}
}
}
}
FS_CloseFile(&fp);
}
}
FS_CloseDir(&dir);
}
}
{
rsp.httpStatus = HttpStatusNotFound;
rsp.list.append(errorToMap(ERR_RESOURCE_NOT_AVAILABLE,
QString("/ddf/bundles/%1").arg(bundleHashStr),
QString("resource, /ddf/bundles/%1, not available").arg(bundleHashStr)));
}
return REQ_READY_SEND;
}
int REST_DDF_PostBundles(const ApiRequest &req, ApiResponse &rsp)
{
ScratchMemWaypoint swp;
// general error response
const QVariantMap errInvalidData = errorToMap(ERR_INVALID_DDF_BUNDLE, "/ddf/bundles", "body contains invalid DDF bundle(s) data");
const QVariantMap errServiceNotAvailable = errorToMap(ERR_INTERNAL_ERROR, "/ddf/bundles", "Internal error, can't process request");
// TEST call
// curl -F 'data=@./starkvind_air_purifier_toolbox.ddb' 127.0.0.1:8090/api/12345/ddf/bundles
if (req.hdr.contentLength() < 32 || req.hdr.contentLength() > 512000)
{
return REQ_NOT_HANDLED;
}
// TODO(mpi) upload via multipart/form-data should be moved to generic http handling
// Content-Type HTTP header contains the boundary:
// "Content-Type: multipart/form-data; boundary=------------------------Y8hknTumhcaM4YjkoVup1T"
QLatin1String contentType = req.hdr.value(QLatin1String("Content-Type"));
U_SStream ss;
U_sstream_init(&ss, (void*)contentType.data(), contentType.size());
if (U_sstream_starts_with(&ss, "multipart/form-data") == 0)
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
if (U_sstream_find(&ss, "boundary=") == 0) // no boundary marker?
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
if (U_sstream_find(&ss, "=") == 0)
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
ss.pos++;
const unsigned boundaryLen = ss.len - ss.pos;
//boundary = static_cast<char*>(ScratchMemAlloc((boundaryLen) + 8));
char *boundary = SCRATCH_ALLOC(char*, boundaryLen + 8);
if (!boundary)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
rsp.list.append(errServiceNotAvailable);
return REQ_READY_SEND;
}
U_memcpy(boundary, &ss.str[ss.pos], boundaryLen);
boundary[boundaryLen] = '\0';
unsigned dataSize = req.hdr.contentLength() + 1;
if (MAX_BUNDLE_SIZE < dataSize)
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
char *data = SCRATCH_ALLOC(char*, dataSize);
if (!data)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
rsp.list.append(errServiceNotAvailable);
return REQ_READY_SEND;
}
unsigned binStart = 0;
unsigned binEnd = 0;
int n = req.sock->read(data, dataSize - 1);
if (n > 0)
{
data[dataSize - 1] = '\0';
U_sstream_init(&ss, data, n);
if (U_sstream_find(&ss, boundary) == 0) // there might be a preample before the first boundary
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
// actual data starts behind first two CRLF
//
// --------------------------Y8hknTumhcaM4YjkoVup1T
// Content-Disposition: form-data; name="data"; filename="steam.md"
// Content-Type: application/octet-stream
// \r\n\r\n
if (U_sstream_find(&ss, "\r\n\r\n") == 0)
{
return REQ_NOT_HANDLED;
}
ss.pos += 4;
binStart = ss.pos;
if (U_sstream_find(&ss, boundary) == 0)
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
binEnd = ss.pos;
}
if (binStart < binEnd && (binEnd - binStart) > 16) // TODO use some reasonable min. size instead 16
{
if (data[binEnd - 1] == '-' && data[binEnd - 2] == '-')
{
binEnd -= 2; // end boundary preceeded by two dashes
}
if (data[binEnd - 1] == '\n' && data[binEnd - 2] == '\r')
{
binEnd -= 2; // end boundary also preceeded with CRLF
}
data[binEnd] = '\0';
U_BStream bs;
U_bstream_init(&bs, &data[binStart], binEnd - binStart);
// unsigned char bundleHash[U_SHA256_HASH_SIZE] = {0};
// char bundleHashStr[(U_SHA256_HASH_SIZE * 2) + 1];
unsigned char *bundleHash = SCRATCH_ALLOC(unsigned char*, U_SHA256_HASH_SIZE);
char *bundleHashStr = SCRATCH_ALLOC(char*, (U_SHA256_HASH_SIZE * 2) + 1);
if (!bundleHash || !bundleHashStr)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
rsp.list.append(errServiceNotAvailable);
return REQ_READY_SEND;
}
if (IsValidDDFBundle(&bs, bundleHash) == 0)
{
rsp.httpStatus = HttpStatusBadRequest;
rsp.list.append(errInvalidData);
return REQ_READY_SEND;
}
BinToHexAscii(bundleHash, U_SHA256_HASH_SIZE, bundleHashStr);
DBG_Printf(DBG_INFO, "received %d bytes (binary: %u), bundle-hash: %s\n", n, binEnd - binStart, bundleHashStr);
QString loc = deCONZ::getStorageLocation(deCONZ::DdfBundleUserLocation);
FS_File fp;
char *bundlePath = SCRATCH_ALLOC(char*, MAX_PATH_LENGTH);
if (!bundlePath)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
rsp.list.append(errServiceNotAvailable);
return REQ_READY_SEND;
}
#if 1
// The file extension was changed from .ddf to .ddb in v2.27.4-beta.
// In case the same bundle with .ddf extension exists, the file will be deleted
// so that only a .ddb will exists.
{
{
U_SStream ssPath;
U_sstream_init(&ssPath, bundlePath, MAX_PATH_LENGTH);
U_sstream_put_str(&ssPath, qPrintable(loc));
U_sstream_put_str(&ssPath, "/");
U_sstream_put_str(&ssPath, bundleHashStr);
U_sstream_put_str(&ssPath, ".ddf");
}
if (FS_OpenFile(&fp, FS_MODE_R, bundlePath))
{
FS_CloseFile(&fp);
FS_DeleteFile(bundlePath);
}
}
#endif
{
U_SStream ssPath;
U_sstream_init(&ssPath, bundlePath, MAX_PATH_LENGTH);
U_sstream_put_str(&ssPath, qPrintable(loc));
U_sstream_put_str(&ssPath, "/");
U_sstream_put_str(&ssPath, bundleHashStr);
U_sstream_put_str(&ssPath, ".ddb");
}
if (FS_OpenFile(&fp, FS_MODE_R, bundlePath))
{
FS_CloseFile(&fp);
// TODO alreadly exists, delete and create fresh one (might have different signatures)
FS_DeleteFile(bundlePath);
}
if (FS_OpenFile(&fp, FS_MODE_RW, bundlePath))
{
long n = FS_WriteFile(&fp, bs.data, bs.size);
FS_CloseFile(&fp);
if (n != bs.size)
{
rsp.httpStatus = HttpStatusServiceUnavailable;
rsp.list.append(errServiceNotAvailable);
return REQ_READY_SEND;
}
// notify device descriptions to trigger reload
DEV_DDF_BundleUpdated((uint8_t*)&data[binStart], binEnd - binStart);
DBG_Printf(DBG_INFO, "DDF bundle written: %s\n", bundlePath);
rsp.httpStatus = HttpStatusOk;
QVariantMap result;
QVariantMap item;
item["id"] = bundleHashStr;
result["success"] = item;
rsp.list.append(result);
return REQ_READY_SEND;
}
}
return REQ_NOT_HANDLED;
}
int REST_DDF_HandleApi(const ApiRequest &req, ApiResponse &rsp)
{
// GET /api/<apikey>/ddf/descriptors
if (req.hdr.pathComponentsCount() == 4 && req.hdr.httpMethod() == HttpGet && req.hdr.pathAt(3) == "descriptors")
{
return REST_DDF_GetDescriptors(req, rsp);
}
// GET /api/<apikey>/ddf/bundles/<sha256-hash>
if (req.hdr.pathComponentsCount() == 5 && req.hdr.httpMethod() == HttpGet && req.hdr.pathAt(3) == "bundles")
{
return REST_DDF_GetBundle(req, rsp);
}
// POST /api/<apikey>/ddf/bundles
if (req.hdr.pathComponentsCount() == 4 && req.hdr.httpMethod() == HttpPost && req.hdr.pathAt(3) == "bundles")
{
return REST_DDF_PostBundles(req, rsp);
}
return REQ_NOT_HANDLED;
}