forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest_devices.h
64 lines (48 loc) · 1.6 KB
/
rest_devices.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
/*
* Copyright (c) 2013-2021 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_DEVICES_H
#define REST_DEVICES_H
#include <QObject>
class DeRestPluginPrivate;
class DeviceDescription;
class ApiRequest;
class ApiResponse;
class Event;
class RestDevicesPrivate;
/*! \class RestDevices
REST-API endpoint for devices.
*/
class RestDevices : public QObject
{
Q_OBJECT
public:
explicit RestDevices(QObject *parent = nullptr);
~RestDevices();
int handleApi(const ApiRequest &req, ApiResponse &rsp);
bool deleteDevice(quint64 extAddr);
Q_SIGNALS:
void eventNotify(const Event &);
public Q_SLOTS:
void handleEvent(const Event &event);
private:
int getAllDevices(const ApiRequest &req, ApiResponse &rsp);
int getDevice(const ApiRequest &req, ApiResponse &rsp);
int getDeviceDDF(const ApiRequest &req, ApiResponse &rsp);
int putDeviceInstallCode(const ApiRequest &req, ApiResponse &rsp);
int putDeviceReloadDDF(const ApiRequest &req, ApiResponse &rsp);
int putDeviceSetDDFPolicy(const ApiRequest &req, ApiResponse &rsp);
DeRestPluginPrivate *plugin = nullptr;
RestDevicesPrivate *d = nullptr;
};
// Resource Introspection (RIS)
int RIS_GetDeviceIntrospect(const ApiRequest &req, ApiResponse &rsp);
int RIS_GetDeviceItemIntrospect(const ApiRequest &req, ApiResponse &rsp);
QString DDF_ToJsonPretty(const DeviceDescription &ddf);
#endif // REST_DEVICES_H