forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest_api.h
140 lines (121 loc) · 3.92 KB
/
rest_api.h
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
/*
* 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.
*
*/
#ifndef REST_API_H
#define REST_API_H
#include <QString>
#include <QList>
#include <QVariant>
#include <deconz/qhttprequest_compat.h>
#include <deconz/http_client_handler.h>
/*! JSON generic error message codes */
#define ERR_UNAUTHORIZED_USER 1
#define ERR_INVALID_JSON 2
#define ERR_RESOURCE_NOT_AVAILABLE 3
#define ERR_METHOD_NOT_AVAILABLE 4
#define ERR_MISSING_PARAMETER 5
#define ERR_PARAMETER_NOT_AVAILABLE 6
#define ERR_INVALID_VALUE 7
#define ERR_PARAMETER_NOT_MODIFIABLE 8
#define ERR_TOO_MANY_ITEMS 11
#define ERR_INVALID_DDF_BUNDLE 12
#define ERR_DUPLICATE_EXIST 100 // de extension
#define ERR_NOT_ALLOWED_SENSOR_TYPE 501
#define ERR_SENSOR_LIST_FULL 502
#define ERR_RULE_ENGINE_FULL 601
#define ERR_CONDITION_ERROR 607
#define ERR_ACTION_ERROR 608
#define ERR_INTERNAL_ERROR 901
#define ERR_NOT_CONNECTED 950 // de extension
#define ERR_BRIDGE_BUSY 951 // de extension
#define ERR_LINK_BUTTON_NOT_PRESSED 101
#define ERR_DEVICE_OFF 201
#define ERR_DEVICE_NOT_REACHABLE 202
#define ERR_BRIDGE_GROUP_TABLE_FULL 301
#define ERR_DEVICE_GROUP_TABLE_FULL 302
#define ERR_DEVICE_SCENES_TABLE_FULL 402 // de extension
// REST API return codes
#define REQ_READY_SEND 0
#define REQ_NOT_HANDLED -1
// HTTP status codes
extern const char *HttpStatusOk;
extern const char *HttpStatusAccepted;
extern const char *HttpStatusNotModified;
extern const char *HttpStatusUnauthorized;
extern const char *HttpStatusBadRequest;
extern const char *HttpStatusForbidden;
extern const char *HttpStatusNotFound;
extern const char *HttpStatusNotImplemented;
extern const char *HttpStatusServiceUnavailable;
extern const char *HttpContentHtml;
extern const char *HttpContentCss;
extern const char *HttpContentJson;
extern const char *HttpContentJS;
extern const char *HttpContentPNG;
extern const char *HttpContentJPG;
extern const char *HttpContentSVG;
extern const char *HttpContentOctetStream;
enum ApiVersion
{
ApiVersion_1, //!< common version 1.0
ApiVersion_1_DDEL, //!< version 1.0, "Accept: application/vnd.ddel.v1"
ApiVersion_1_1_DDEL, //!< version 1.1, "Accept: application/vnd.ddel.v1.1"
ApiVersion_2_DDEL, //!< version 2.0, "Accept: application/vnd.ddel.v2"
ApiVersion_3_DDEL //!< version 3.0, "Accept: application/vnd.ddel.v3"
};
enum ApiAuthorisation
{
ApiAuthNone,
ApiAuthLocal,
ApiAuthInternal,
ApiAuthFull
};
enum ApiMode
{
ApiModeNormal,
ApiModeStrict,
ApiModeEcho,
ApiModeHue
};
/*! \class ApiRequest
Helper to simplify HTTP REST request handling.
*/
class ApiRequest
{
public:
ApiRequest(const QHttpRequestHeader &h, const QStringList &p, QTcpSocket *s, const QString &c);
QString apikey() const;
ApiVersion apiVersion() const { return version; }
const QHttpRequestHeader &hdr;
const QStringList &path;
QTcpSocket *sock;
QString content;
ApiVersion version;
ApiAuthorisation auth;
ApiMode mode;
};
/*! \class ApiResponse
Helper to simplify HTTP REST request handling.
*/
class ApiResponse
{
public:
QString etag;
const char *httpStatus = nullptr;
const char *contentType = nullptr;
unsigned contentLength = 0;
const char *fileName = nullptr; // for Content-Disposition: attachment: filename="<fileName>"
QVariantMap map; // json content
QVariantList list; // json content
QString str; // json string
char *bin = nullptr;
};
// REST API common
QVariantMap errorToMap(int id, const QString &ressource, const QString &description);
#endif // REST_API_H