mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Added /api/v1/instance.
This commit is contained in:
parent
d4711bbfba
commit
7c9846ef3e
1 changed files with 29 additions and 0 deletions
29
mastoapi.c
29
mastoapi.c
|
@ -732,6 +732,35 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
||||||
if (strcmp(cmd, "/timelines/public") == 0) {
|
if (strcmp(cmd, "/timelines/public") == 0) {
|
||||||
/* the public timeline */
|
/* the public timeline */
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
if (strcmp(cmd, "/instance") == 0) {
|
||||||
|
/* returns an instance object */
|
||||||
|
xs *ins = xs_dict_new();
|
||||||
|
const char *host = xs_dict_get(srv_config, "host");
|
||||||
|
|
||||||
|
ins = xs_dict_append(ins, "domain", host);
|
||||||
|
ins = xs_dict_append(ins, "title", host);
|
||||||
|
ins = xs_dict_append(ins, "version", "4.0.0 (not true; really " USER_AGENT ")");
|
||||||
|
ins = xs_dict_append(ins, "source_url", "https:/" "/comam.es/snac-source");
|
||||||
|
ins = xs_dict_append(ins, "description", host);
|
||||||
|
|
||||||
|
xs *susie = xs_fmt("%s/susie.png", srv_baseurl);
|
||||||
|
xs *d1 = xs_dict_new();
|
||||||
|
d1 = xs_dict_append(d1, "url", susie);
|
||||||
|
ins = xs_dict_append(ins, "thumbnail", d1);
|
||||||
|
|
||||||
|
xs *d2 = xs_dict_new();
|
||||||
|
d2 = xs_dict_append(d2, "email", "admin@localhost");
|
||||||
|
ins = xs_dict_append(ins, "contact", d2);
|
||||||
|
|
||||||
|
xs *l1 = xs_list_new();
|
||||||
|
ins = xs_dict_append(ins, "rules", l1);
|
||||||
|
ins = xs_dict_append(ins, "languages", l1);
|
||||||
|
|
||||||
|
*body = xs_json_dumps_pp(ins, 4);
|
||||||
|
*ctype = "application/json";
|
||||||
|
status = 200;
|
||||||
|
}
|
||||||
|
|
||||||
/* user cleanup */
|
/* user cleanup */
|
||||||
if (logged_in)
|
if (logged_in)
|
||||||
|
|
Loading…
Reference in a new issue