140b96a298b093bc05a4bcee9fdaab8aeb8c64d6
[apps/agl-service-unicens.git] / ucs2-afb / ucs_apidef.h
1
2 static const char _afb_description_v2_UNICENS[] =
3     "{\"openapi\":\"3.0.0\",\"$schema\":\"http:iot.bzh/download/openapi/schem"
4     "a-3.0/default-schema.json\",\"info\":{\"description\":\"\",\"title\":\"u"
5     "cs2\",\"version\":\"1.0\",\"x-binding-c-generator\":{\"api\":\"UNICENS\""
6     ",\"version\":2,\"prefix\":\"ucs2_\",\"postfix\":\"\",\"start\":null,\"on"
7     "event\":null,\"init\":null,\"scope\":\"\",\"private\":false}},\"servers\""
8     ":[{\"url\":\"ws://{host}:{port}/api/monitor\",\"description\":\"Unicens2"
9     " API.\",\"variables\":{\"host\":{\"default\":\"localhost\"},\"port\":{\""
10     "default\":\"1234\"}},\"x-afb-events\":[{\"$ref\":\"#/components/schemas/"
11     "afb-event\"}]}],\"components\":{\"schemas\":{\"afb-reply\":{\"$ref\":\"#"
12     "/components/schemas/afb-reply-v2\"},\"afb-event\":{\"$ref\":\"#/componen"
13     "ts/schemas/afb-event-v2\"},\"afb-reply-v2\":{\"title\":\"Generic respons"
14     "e.\",\"type\":\"object\",\"required\":[\"jtype\",\"request\"],\"properti"
15     "es\":{\"jtype\":{\"type\":\"string\",\"const\":\"afb-reply\"},\"request\""
16     ":{\"type\":\"object\",\"required\":[\"status\"],\"properties\":{\"status"
17     "\":{\"type\":\"string\"},\"info\":{\"type\":\"string\"},\"token\":{\"typ"
18     "e\":\"string\"},\"uuid\":{\"type\":\"string\"},\"reqid\":{\"type\":\"str"
19     "ing\"}}},\"response\":{\"type\":\"object\"}}},\"afb-event-v2\":{\"type\""
20     ":\"object\",\"required\":[\"jtype\",\"event\"],\"properties\":{\"jtype\""
21     ":{\"type\":\"string\",\"const\":\"afb-event\"},\"event\":{\"type\":\"str"
22     "ing\"},\"data\":{\"type\":\"object\"}}}},\"x-permissions\":{\"config\":{"
23     "\"permission\":\"urn:AGL:permission:UNICENS:public:initialise\"},\"monit"
24     "or\":{\"permission\":\"urn:AGL:permission:UNICENS:public:monitor\"}},\"r"
25     "esponses\":{\"200\":{\"description\":\"A complex object array response\""
26     ",\"content\":{\"application/json\":{\"schema\":{\"$ref\":\"#/components/"
27     "schemas/afb-reply\"}}}}}},\"paths\":{\"/listconfig\":{\"description\":\""
28     "List Config Files\",\"get\":{\"x-permissions\":{\"$ref\":\"#/components/"
29     "x-permissions/config\"},\"parameters\":[{\"in\":\"query\",\"name\":\"cfg"
30     "path\",\"required\":false,\"schema\":{\"type\":\"string\"}}],\"responses"
31     "\":{\"200\":{\"$ref\":\"#/components/responses/200\"}}}},\"/initialise\""
32     ":{\"description\":\"configure Unicens2 lib from NetworkConfig.XML.\",\"g"
33     "et\":{\"x-permissions\":{\"$ref\":\"#/components/x-permissions/config\"}"
34     ",\"parameters\":[{\"in\":\"query\",\"name\":\"filename\",\"required\":tr"
35     "ue,\"schema\":{\"type\":\"string\"}}],\"responses\":{\"200\":{\"$ref\":\""
36     "#/components/responses/200\"}}}},\"/volume\":{\"description\":\"Set Mast"
37     "er Volume.\",\"get\":{\"x-permissions\":{\"$ref\":\"#/components/x-permi"
38     "ssions/monitor\"},\"parameters\":[{\"in\":\"query\",\"name\":\"value\",\""
39     "required\":true,\"schema\":{\"type\":\"integer\"}}],\"responses\":{\"200"
40     "\":{\"$ref\":\"#/components/responses/200\"}}}},\"/monitor\":{\"descript"
41     "ion\":\"Subscribe to Unicens Event.\",\"get\":{\"x-permissions\":{\"$ref"
42     "\":\"#/components/x-permissions/monitor\"},\"responses\":{\"200\":{\"$re"
43     "f\":\"#/components/responses/200\"}}}},\"/write_i2c\":{\"description\":\""
44     "Writes I2C command to remote node.\",\"get\":{\"x-permissions\":{\"$ref\""
45     ":\"#/components/x-permissions/monitor\"},\"parameters\":[{\"in\":\"query"
46     "\",\"name\":\"command\",\"required\":true,\"schema\":{\"node\":\"integer"
47     "\"}}],\"responses\":{\"200\":{\"$ref\":\"#/components/responses/200\"}}}"
48     "}}}"
49 ;
50
51 static const struct afb_auth _afb_auths_v2_UNICENS[] = {
52         { .type = afb_auth_Permission, .text = "urn:AGL:permission:UNICENS:public:initialise" },
53         { .type = afb_auth_Permission, .text = "urn:AGL:permission:UNICENS:public:monitor" }
54 };
55
56  void ucs2_listconfig(struct afb_req req);
57  void ucs2_initialise(struct afb_req req);
58  void ucs2_volume(struct afb_req req);
59  void ucs2_monitor(struct afb_req req);
60  void ucs2_write_i2c(struct afb_req req);
61
62 static const struct afb_verb_v2 _afb_verbs_v2_UNICENS[] = {
63     {
64         .verb = "listconfig",
65         .callback = ucs2_listconfig,
66         .auth = &_afb_auths_v2_UNICENS[0],
67         .info = NULL,
68         .session = AFB_SESSION_NONE_V2
69     },
70     {
71         .verb = "initialise",
72         .callback = ucs2_initialise,
73         .auth = &_afb_auths_v2_UNICENS[0],
74         .info = NULL,
75         .session = AFB_SESSION_NONE_V2
76     },
77     {
78         .verb = "volume",
79         .callback = ucs2_volume,
80         .auth = &_afb_auths_v2_UNICENS[1],
81         .info = NULL,
82         .session = AFB_SESSION_NONE_V2
83     },
84     {
85         .verb = "monitor",
86         .callback = ucs2_monitor,
87         .auth = &_afb_auths_v2_UNICENS[1],
88         .info = NULL,
89         .session = AFB_SESSION_NONE_V2
90     },
91     {
92         .verb = "write_i2c",
93         .callback = ucs2_write_i2c,
94         .auth = &_afb_auths_v2_UNICENS[1],
95         .info = NULL,
96         .session = AFB_SESSION_NONE_V2
97     },
98     { .verb = NULL }
99 };
100
101 const struct afb_binding_v2 afbBindingV2 = {
102     .api = "UNICENS",
103     .specification = _afb_description_v2_UNICENS,
104     .info = NULL,
105     .verbs = _afb_verbs_v2_UNICENS,
106     .preinit = NULL,
107     .init = NULL,
108     .onevent = NULL,
109     .noconcurrency = 0
110 };
111