Skeleton code for filters.
[citadel.git] / webcit-ng / server / floor_functions.c
1 // Floor functions
2 //
3 // Copyright (c) 1996-2022 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or disclosure is subject to the GNU General Public License v3.
6
7 #include "webcit.h"
8
9
10 // Dispatcher for "/ctdl/f" and "/ctdl/f/" for the floor list
11 void floor_list(struct http_transaction *h, struct ctdlsession *c) {
12         char buf[1024];
13         char floorname[1024];
14
15         ctdl_printf(c, "LFLR");
16         ctdl_readline(c, buf, sizeof(buf));
17         if (buf[0] != '1') {
18                 do_502(h);
19                 return;
20         }
21
22         JsonValue *j = NewJsonArray(HKEY("lflr"));
23         while (ctdl_readline(c, buf, sizeof(buf)), strcmp(buf, "000")) {
24
25                 // 0  |1   |2
26                 // num|name|refcount
27                 JsonValue *jr = NewJsonObject(HKEY("floor"));
28
29                 extract_token(floorname, buf, 1, '|', sizeof floorname);
30                 JsonObjectAppend(jr, NewJsonPlainString(HKEY("name"), floorname, -1));
31
32                 JsonObjectAppend(jr, NewJsonNumber(HKEY("num"), extract_int(buf, 0)));
33                 JsonObjectAppend(jr, NewJsonNumber(HKEY("refcount"), extract_int(buf, 2)));
34
35                 JsonArrayAppend(j, jr); // add the room to the array
36         }
37
38         StrBuf *sj = NewStrBuf();
39         SerializeJson(sj, j, 1);        // '1' == free the source array
40
41         add_response_header(h, strdup("Content-type"), strdup("application/json"));
42         h->response_code = 200;
43         h->response_string = strdup("OK");
44         h->response_body_length = StrLength(sj);
45         h->response_body = SmashStrBuf(&sj);
46 }
47
48
49 // Dispatcher for paths starting with /ctdl/f/
50 // (This is a stub ... we will need to add more functions when we can do more than just a floor list)
51 void ctdl_f(struct http_transaction *h, struct ctdlsession *c) {
52         floor_list(h, c);
53         return;
54 }