summaryrefslogtreecommitdiff
path: root/mastoapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mastoapi.c')
-rw-r--r--mastoapi.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/mastoapi.c b/mastoapi.c
index 5c89172..c1a889d 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -2484,6 +2484,22 @@ int mastoapi_post_handler(const xs_dict *req, const char *q_path,
2484} 2484}
2485 2485
2486 2486
2487int mastoapi_delete_handler(const xs_dict *req, const char *q_path,
2488 char **body, int *b_size, char **ctype) {
2489
2490 if (!xs_startswith(q_path, "/api/v1/") && !xs_startswith(q_path, "/api/v2/"))
2491 return 0;
2492
2493 srv_debug(1, xs_fmt("mastoapi_delete_handler %s", q_path));
2494 xs *cmd = xs_replace_n(q_path, "/api", "", 1);
2495 if (xs_startswith(cmd, "/v1/push/subscription") || xs_startswith(cmd, "/v2/push/subscription")) { /** **/
2496 // pretend we deleted it, since it doesn't exist anyway
2497 return 200;
2498 }
2499 return 0;
2500}
2501
2502
2487int mastoapi_put_handler(const xs_dict *req, const char *q_path, 2503int mastoapi_put_handler(const xs_dict *req, const char *q_path,
2488 const char *payload, int p_size, 2504 const char *payload, int p_size,
2489 char **body, int *b_size, char **ctype) 2505 char **body, int *b_size, char **ctype)