Update HTML test page to new template. Added Config file selection from UI.
[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\"}}}}}}"
44 ;
45
46 static const struct afb_auth _afb_auths_v2_UNICENS[] = {
47         { .type = afb_auth_Permission, .text = "urn:AGL:permission:UNICENS:public:initialise" },
48         { .type = afb_auth_Permission, .text = "urn:AGL:permission:UNICENS:public:monitor" }
49 };
50
51  void ucs2_listconfig(struct afb_req req);
52  void ucs2_initialise(struct afb_req req);
53  void ucs2_volume(struct afb_req req);
54  void ucs2_monitor(struct afb_req req);
55
56 static const struct afb_verb_v2 _afb_verbs_v2_UNICENS[] = {
57     {
58         .verb = "listconfig",
59         .callback = ucs2_listconfig,
60         .auth = &_afb_auths_v2_UNICENS[0],
61         .info = NULL,
62         .session = AFB_SESSION_NONE_V2
63     },
64     {
65         .verb = "initialise",
66         .callback = ucs2_initialise,
67         .auth = &_afb_auths_v2_UNICENS[0],
68         .info = NULL,
69         .session = AFB_SESSION_NONE_V2
70     },
71     {
72         .verb = "volume",
73         .callback = ucs2_volume,
74         .auth = &_afb_auths_v2_UNICENS[1],
75         .info = NULL,
76         .session = AFB_SESSION_NONE_V2
77     },
78     {
79         .verb = "monitor",
80         .callback = ucs2_monitor,
81         .auth = &_afb_auths_v2_UNICENS[1],
82         .info = NULL,
83         .session = AFB_SESSION_NONE_V2
84     },
85     { .verb = NULL }
86 };
87
88 const struct afb_binding_v2 afbBindingV2 = {
89     .api = "UNICENS",
90     .specification = _afb_description_v2_UNICENS,
91     .info = NULL,
92     .verbs = _afb_verbs_v2_UNICENS,
93     .preinit = NULL,
94     .init = NULL,
95     .onevent = NULL,
96     .noconcurrency = 0
97 };
98