2022-09-19 22:13:40 +03:00
|
|
|
/* snac - A simple, minimalistic ActivityPub instance */
|
2024-01-04 11:22:03 +03:00
|
|
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
2022-09-19 21:47:22 +03:00
|
|
|
|
2024-02-16 07:28:32 +03:00
|
|
|
#define VERSION "2.48-dev"
|
2022-09-27 19:01:51 +03:00
|
|
|
|
|
|
|
#define USER_AGENT "snac/" VERSION
|
|
|
|
|
2023-04-25 07:40:46 +03:00
|
|
|
#define WHAT_IS_SNAC_URL "https:/" "/comam.es/what-is-snac"
|
|
|
|
|
2023-07-09 21:23:38 +03:00
|
|
|
#define DIR_PERM 00770
|
|
|
|
#define DIR_PERM_ADD 02770
|
2023-02-07 11:01:57 +03:00
|
|
|
|
2023-05-29 10:07:27 +03:00
|
|
|
#define ISO_DATE_SPEC "%Y-%m-%dT%H:%M:%SZ"
|
|
|
|
|
2024-01-08 10:21:22 +03:00
|
|
|
#ifndef MAX_THREADS
|
|
|
|
#define MAX_THREADS 256
|
|
|
|
#endif
|
|
|
|
|
2023-01-31 20:33:45 +03:00
|
|
|
extern double disk_layout;
|
2023-06-05 19:22:04 +03:00
|
|
|
extern xs_str *srv_basedir;
|
|
|
|
extern xs_dict *srv_config;
|
|
|
|
extern xs_str *srv_baseurl;
|
2022-09-19 22:13:40 +03:00
|
|
|
|
|
|
|
extern int dbglevel;
|
|
|
|
|
2022-09-28 10:46:21 +03:00
|
|
|
#define L(s) (s)
|
|
|
|
|
2023-02-07 11:25:01 +03:00
|
|
|
int mkdirx(const char *pathname);
|
|
|
|
|
2022-10-26 07:43:47 +03:00
|
|
|
int valid_status(int status);
|
2023-06-05 19:22:04 +03:00
|
|
|
xs_str *tid(int offset);
|
2022-09-28 18:18:30 +03:00
|
|
|
double ftime(void);
|
2022-09-19 23:19:14 +03:00
|
|
|
|
2023-09-27 14:19:46 +03:00
|
|
|
void srv_log(xs_str *str);
|
|
|
|
#define srv_debug(level, str) do { if (dbglevel >= (level)) \
|
|
|
|
{ srv_log((str)); } } while (0)
|
2022-09-19 22:13:40 +03:00
|
|
|
|
2024-01-03 13:01:25 +03:00
|
|
|
typedef struct {
|
2023-02-12 11:17:38 +03:00
|
|
|
xs_str *uid; /* uid */
|
|
|
|
xs_str *basedir; /* user base directory */
|
|
|
|
xs_dict *config; /* user configuration */
|
|
|
|
xs_dict *config_o; /* user configuration admin override */
|
|
|
|
xs_dict *key; /* keypair */
|
2024-02-15 19:34:46 +03:00
|
|
|
xs_dict *links; /* validated links */
|
2023-02-12 11:17:38 +03:00
|
|
|
xs_str *actor; /* actor url */
|
|
|
|
xs_str *md5; /* actor url md5 */
|
2022-09-19 23:19:14 +03:00
|
|
|
} snac;
|
|
|
|
|
2024-01-03 13:01:25 +03:00
|
|
|
typedef struct {
|
2024-01-10 21:16:05 +03:00
|
|
|
int s_size; /* struct size (for double checking) */
|
2024-01-03 13:01:25 +03:00
|
|
|
int srv_running; /* server running on/off */
|
|
|
|
int use_fcgi; /* FastCGI use on/off */
|
|
|
|
time_t srv_start_time; /* start time */
|
|
|
|
int job_fifo_size; /* job fifo size */
|
2024-01-10 11:16:40 +03:00
|
|
|
int peak_job_fifo_size; /* maximum job fifo size seen */
|
2024-01-03 13:01:25 +03:00
|
|
|
int n_threads; /* number of configured threads */
|
2024-01-10 21:16:05 +03:00
|
|
|
enum { THST_STOP, THST_WAIT, THST_IN, THST_QUEUE } th_state[MAX_THREADS];
|
2024-01-08 10:21:22 +03:00
|
|
|
} srv_state;
|
2024-01-03 13:01:25 +03:00
|
|
|
|
2024-01-14 14:19:35 +03:00
|
|
|
extern srv_state *p_state;
|
|
|
|
|
2023-09-27 14:19:46 +03:00
|
|
|
void snac_log(snac *user, xs_str *str);
|
|
|
|
#define snac_debug(user, level, str) do { if (dbglevel >= (level)) \
|
|
|
|
{ snac_log((user), (str)); } } while (0)
|
|
|
|
|
|
|
|
int srv_open(char *basedir, int auto_upgrade);
|
|
|
|
void srv_free(void);
|
|
|
|
|
2022-12-04 23:14:18 +03:00
|
|
|
int user_open(snac *snac, const char *uid);
|
2022-09-20 00:03:18 +03:00
|
|
|
void user_free(snac *snac);
|
2023-05-15 14:04:30 +03:00
|
|
|
xs_list *user_list(void);
|
2023-04-16 08:43:41 +03:00
|
|
|
int user_open_by_md5(snac *snac, const char *md5);
|
2022-09-19 23:23:33 +03:00
|
|
|
|
2022-12-04 23:14:18 +03:00
|
|
|
int validate_uid(const char *uid);
|
2022-09-19 23:58:27 +03:00
|
|
|
|
2023-06-05 19:22:04 +03:00
|
|
|
xs_str *hash_password(const char *uid, const char *passwd, const char *nonce);
|
2022-12-04 23:14:18 +03:00
|
|
|
int check_password(const char *uid, const char *passwd, const char *hash);
|
2022-09-20 10:48:13 +03:00
|
|
|
|
2023-03-02 19:13:17 +03:00
|
|
|
void srv_archive(const char *direction, const char *url, xs_dict *req,
|
2023-02-02 05:49:38 +03:00
|
|
|
const char *payload, int p_size,
|
|
|
|
int status, xs_dict *headers,
|
|
|
|
const char *body, int b_size);
|
2023-03-01 10:25:36 +03:00
|
|
|
void srv_archive_error(const char *prefix, const xs_str *err,
|
2023-04-12 11:41:15 +03:00
|
|
|
const xs_dict *req, const xs_val *data);
|
2023-12-17 17:27:39 +03:00
|
|
|
void srv_archive_qitem(char *prefix, xs_dict *q_item);
|
2022-09-25 08:28:42 +03:00
|
|
|
|
2022-11-25 15:33:13 +03:00
|
|
|
double mtime_nl(const char *fn, int *n_link);
|
|
|
|
#define mtime(fn) mtime_nl(fn, NULL)
|
2023-04-12 10:43:23 +03:00
|
|
|
double f_ctime(const char *fn);
|
2022-09-20 10:48:13 +03:00
|
|
|
|
2023-11-08 11:20:34 +03:00
|
|
|
int index_add_md5(const char *fn, const char *md5);
|
|
|
|
int index_add(const char *fn, const char *id);
|
2023-02-23 12:42:09 +03:00
|
|
|
int index_gc(const char *fn);
|
2022-11-26 19:35:18 +03:00
|
|
|
int index_first(const char *fn, char *buf, int size);
|
2022-12-10 13:19:26 +03:00
|
|
|
int index_len(const char *fn);
|
2023-05-24 14:05:43 +03:00
|
|
|
xs_list *index_list(const char *fn, int max);
|
|
|
|
xs_list *index_list_desc(const char *fn, int skip, int show);
|
2022-11-23 22:50:35 +03:00
|
|
|
|
2023-06-07 12:08:14 +03:00
|
|
|
int object_add(const char *id, const xs_dict *obj);
|
|
|
|
int object_add_ow(const char *id, const xs_dict *obj);
|
|
|
|
int object_here_by_md5(const char *id);
|
|
|
|
int object_here(const char *id);
|
2023-02-05 19:45:00 +03:00
|
|
|
int object_get_by_md5(const char *md5, xs_dict **obj);
|
|
|
|
int object_get(const char *id, xs_dict **obj);
|
2022-11-25 14:09:30 +03:00
|
|
|
int object_del(const char *id);
|
2022-11-27 11:45:06 +03:00
|
|
|
int object_del_if_unref(const char *id);
|
2023-04-12 10:46:42 +03:00
|
|
|
double object_ctime_by_md5(const char *md5);
|
|
|
|
double object_ctime(const char *id);
|
2022-12-03 19:58:49 +03:00
|
|
|
int object_admire(const char *id, const char *actor, int like);
|
2023-05-01 18:20:49 +03:00
|
|
|
int object_unadmire(const char *id, const char *actor, int like);
|
2022-11-25 14:09:30 +03:00
|
|
|
|
2022-12-10 13:19:26 +03:00
|
|
|
int object_likes_len(const char *id);
|
|
|
|
int object_announces_len(const char *id);
|
|
|
|
|
2023-05-24 14:05:43 +03:00
|
|
|
xs_list *object_children(const char *id);
|
|
|
|
xs_list *object_likes(const char *id);
|
|
|
|
xs_list *object_announces(const char *id);
|
2022-12-02 23:36:12 +03:00
|
|
|
int object_parent(const char *id, char *buf, int size);
|
2022-12-02 21:14:59 +03:00
|
|
|
|
2022-12-03 19:58:49 +03:00
|
|
|
int object_user_cache_add(snac *snac, const char *id, const char *cachedir);
|
|
|
|
int object_user_cache_del(snac *snac, const char *id, const char *cachedir);
|
|
|
|
|
2022-11-28 12:46:42 +03:00
|
|
|
int follower_add(snac *snac, const char *actor);
|
|
|
|
int follower_del(snac *snac, const char *actor);
|
|
|
|
int follower_check(snac *snac, const char *actor);
|
2023-06-07 12:08:14 +03:00
|
|
|
xs_list *follower_list(snac *snac);
|
2022-09-20 11:02:00 +03:00
|
|
|
|
2022-09-30 10:59:13 +03:00
|
|
|
double timeline_mtime(snac *snac);
|
2023-04-14 20:17:16 +03:00
|
|
|
int timeline_touch(snac *snac);
|
2023-02-08 15:28:03 +03:00
|
|
|
int timeline_here(snac *snac, const char *md5);
|
2023-02-05 19:39:40 +03:00
|
|
|
int timeline_get_by_md5(snac *snac, const char *md5, xs_dict **msg);
|
2022-10-20 11:34:32 +03:00
|
|
|
int timeline_del(snac *snac, char *id);
|
2023-04-30 07:39:55 +03:00
|
|
|
xs_list *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show);
|
|
|
|
xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show);
|
2023-07-14 09:47:20 +03:00
|
|
|
int timeline_add(snac *snac, const char *id, const xs_dict *o_msg);
|
|
|
|
void timeline_admire(snac *snac, const char *id, const char *admirer, int like);
|
2022-09-20 12:31:56 +03:00
|
|
|
|
2023-02-08 15:21:44 +03:00
|
|
|
xs_list *timeline_top_level(snac *snac, xs_list *list);
|
2023-04-30 07:39:55 +03:00
|
|
|
xs_list *local_list(snac *snac, int max);
|
|
|
|
xs_list *timeline_instance_list(int skip, int show);
|
2022-09-28 05:48:23 +03:00
|
|
|
|
2023-04-23 09:44:26 +03:00
|
|
|
int following_add(snac *snac, const char *actor, const xs_dict *msg);
|
2023-04-23 09:59:14 +03:00
|
|
|
int following_del(snac *snac, const char *actor);
|
2023-04-23 07:05:35 +03:00
|
|
|
int following_check(snac *snac, const char *actor);
|
2023-06-07 12:08:14 +03:00
|
|
|
int following_get(snac *snac, const char *actor, xs_dict **data);
|
2023-05-15 12:15:28 +03:00
|
|
|
xs_list *following_list(snac *snac);
|
2022-09-20 12:31:56 +03:00
|
|
|
|
2023-04-23 07:05:35 +03:00
|
|
|
void mute(snac *snac, const char *actor);
|
|
|
|
void unmute(snac *snac, const char *actor);
|
|
|
|
int is_muted(snac *snac, const char *actor);
|
2022-09-20 13:43:49 +03:00
|
|
|
|
2023-06-28 21:26:59 +03:00
|
|
|
int pin(snac *user, const char *id);
|
2023-06-28 21:52:09 +03:00
|
|
|
int unpin(snac *user, const char *id);
|
2023-06-28 21:26:59 +03:00
|
|
|
int is_pinned(snac *user, const char *id);
|
2023-09-18 23:52:27 +03:00
|
|
|
int is_pinned_by_md5(snac *user, const char *md5);
|
2023-06-28 21:26:59 +03:00
|
|
|
xs_list *pinned_list(snac *user);
|
|
|
|
|
2023-08-06 19:40:50 +03:00
|
|
|
int limited(snac *user, const char *id, int cmd);
|
|
|
|
#define is_limited(user, id) limited((user), (id), 0)
|
|
|
|
#define limit(user, id) limited((user), (id), 1)
|
|
|
|
#define unlimit(user, id) limited((user), (id), 2)
|
|
|
|
|
2022-11-24 11:39:16 +03:00
|
|
|
void hide(snac *snac, const char *id);
|
|
|
|
int is_hidden(snac *snac, const char *id);
|
|
|
|
|
2023-11-08 10:14:34 +03:00
|
|
|
void tag_index(const char *id, const xs_dict *obj);
|
2023-11-08 11:20:34 +03:00
|
|
|
xs_list *tag_search(char *tag, int skip, int show);
|
2023-11-08 10:14:34 +03:00
|
|
|
|
2023-05-04 10:19:26 +03:00
|
|
|
int actor_add(const char *actor, xs_dict *msg);
|
2023-08-12 12:23:01 +03:00
|
|
|
int actor_get(const char *actor, xs_dict **data);
|
2022-09-22 19:50:39 +03:00
|
|
|
|
2023-07-02 12:11:01 +03:00
|
|
|
int static_get(snac *snac, const char *id, xs_val **data, int *size, const char *inm, xs_str **etag);
|
2022-10-16 19:03:28 +03:00
|
|
|
void static_put(snac *snac, const char *id, const char *data, int size);
|
2023-04-22 01:51:06 +03:00
|
|
|
void static_put_meta(snac *snac, const char *id, const char *str);
|
|
|
|
xs_str *static_get_meta(snac *snac, const char *id);
|
2022-09-28 10:29:09 +03:00
|
|
|
|
2023-04-22 09:02:23 +03:00
|
|
|
double history_mtime(snac *snac, const char *id);
|
2023-08-19 10:59:58 +03:00
|
|
|
void history_add(snac *snac, const char *id, const char *content, int size,
|
|
|
|
xs_str **etag);
|
2023-08-19 10:31:13 +03:00
|
|
|
int history_get(snac *snac, const char *id, xs_str **content, int *size,
|
|
|
|
const char *inm, xs_str **etag);
|
2023-04-22 09:02:23 +03:00
|
|
|
int history_del(snac *snac, const char *id);
|
|
|
|
xs_list *history_list(snac *snac);
|
2022-09-30 10:56:29 +03:00
|
|
|
|
2023-05-08 10:02:45 +03:00
|
|
|
void lastlog_write(snac *snac, const char *source);
|
2023-04-06 00:46:51 +03:00
|
|
|
|
2023-04-13 18:12:07 +03:00
|
|
|
xs_str *notify_check_time(snac *snac, int reset);
|
2023-04-13 17:59:17 +03:00
|
|
|
void notify_add(snac *snac, const char *type, const char *utype,
|
|
|
|
const char *actor, const char *objid);
|
2023-04-13 18:34:48 +03:00
|
|
|
xs_dict *notify_get(snac *snac, const char *id);
|
2024-02-05 12:18:38 +03:00
|
|
|
int notify_new_num(snac *snac);
|
2024-02-05 21:34:27 +03:00
|
|
|
xs_list *notify_list(snac *snac, int skip, int show);
|
2023-04-14 20:39:31 +03:00
|
|
|
void notify_clear(snac *snac);
|
2023-04-13 17:59:17 +03:00
|
|
|
|
2023-03-02 10:43:50 +03:00
|
|
|
void inbox_add(const char *inbox);
|
|
|
|
void inbox_add_by_actor(const xs_dict *actor);
|
2023-03-02 11:15:40 +03:00
|
|
|
xs_list *inbox_list(void);
|
2023-03-02 10:43:50 +03:00
|
|
|
|
2023-06-29 09:07:10 +03:00
|
|
|
int is_instance_blocked(const char *instance);
|
|
|
|
int instance_block(const char *instance);
|
|
|
|
int instance_unblock(const char *instance);
|
|
|
|
|
2023-05-04 10:25:09 +03:00
|
|
|
void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retries);
|
2023-12-06 16:46:51 +03:00
|
|
|
void enqueue_shared_input(const xs_dict *msg, const xs_dict *req, int retries);
|
2023-02-07 15:31:48 +03:00
|
|
|
void enqueue_output_raw(const char *keyid, const char *seckey,
|
2023-09-29 11:34:22 +03:00
|
|
|
xs_dict *msg, xs_str *inbox, int retries, int p_status);
|
|
|
|
void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries, int p_status);
|
2023-04-23 09:44:26 +03:00
|
|
|
void enqueue_output_by_actor(snac *snac, xs_dict *msg, const xs_str *actor, int retries);
|
2023-02-02 07:21:16 +03:00
|
|
|
void enqueue_email(xs_str *msg, int retries);
|
2023-02-07 09:37:23 +03:00
|
|
|
void enqueue_telegram(const xs_str *msg, const char *bot, const char *chat_id);
|
2024-01-12 11:54:14 +03:00
|
|
|
void enqueue_ntfy(const xs_str *msg, const char *ntfy_server, const char *ntfy_token);
|
2023-07-13 19:18:23 +03:00
|
|
|
void enqueue_message(snac *snac, const xs_dict *msg);
|
2023-05-29 12:07:38 +03:00
|
|
|
void enqueue_close_question(snac *user, const char *id, int end_secs);
|
2024-02-20 07:31:34 +03:00
|
|
|
void enqueue_verify_links(snac *user);
|
2023-06-07 13:04:59 +03:00
|
|
|
void enqueue_request_replies(snac *user, const char *id);
|
2023-05-31 23:06:31 +03:00
|
|
|
int was_question_voted(snac *user, const char *id);
|
2022-09-22 18:12:46 +03:00
|
|
|
|
2023-02-02 06:47:59 +03:00
|
|
|
xs_list *user_queue(snac *snac);
|
2023-02-02 07:21:16 +03:00
|
|
|
xs_list *queue(void);
|
2023-06-07 14:09:19 +03:00
|
|
|
xs_dict *queue_get(const char *fn);
|
2023-02-02 06:44:30 +03:00
|
|
|
xs_dict *dequeue(const char *fn);
|
2022-09-20 22:00:16 +03:00
|
|
|
|
2022-10-04 19:46:12 +03:00
|
|
|
void purge(snac *snac);
|
2022-10-17 12:00:34 +03:00
|
|
|
void purge_all(void);
|
2022-10-04 19:46:12 +03:00
|
|
|
|
2023-02-07 12:29:06 +03:00
|
|
|
xs_dict *http_signed_request_raw(const char *keyid, const char *seckey,
|
|
|
|
const char *method, const char *url,
|
|
|
|
xs_dict *headers,
|
|
|
|
const char *body, int b_size,
|
|
|
|
int *status, xs_str **payload, int *p_size,
|
|
|
|
int timeout);
|
2023-02-02 05:49:38 +03:00
|
|
|
xs_dict *http_signed_request(snac *snac, const char *method, const char *url,
|
|
|
|
xs_dict *headers,
|
|
|
|
const char *body, int b_size,
|
|
|
|
int *status, xs_str **payload, int *p_size,
|
|
|
|
int timeout);
|
2023-12-11 12:12:57 +03:00
|
|
|
int check_signature(xs_dict *req, xs_str **err);
|
2022-09-21 19:27:30 +03:00
|
|
|
|
2024-01-10 21:16:05 +03:00
|
|
|
srv_state *srv_state_op(xs_str **fname, int op);
|
2022-09-21 19:27:30 +03:00
|
|
|
void httpd(void);
|
2022-09-21 22:12:49 +03:00
|
|
|
|
2023-06-13 21:36:43 +03:00
|
|
|
int webfinger_request_signed(snac *snac, const char *qs, char **actor, char **user);
|
2023-04-23 06:33:54 +03:00
|
|
|
int webfinger_request(const char *qs, char **actor, char **user);
|
2023-07-10 08:19:51 +03:00
|
|
|
int webfinger_get_handler(xs_dict *req, char *q_path,
|
2022-09-23 21:59:19 +03:00
|
|
|
char **body, int *b_size, char **ctype);
|
2022-09-23 18:33:33 +03:00
|
|
|
|
2023-01-27 20:17:11 +03:00
|
|
|
const char *default_avatar_base64(void);
|
|
|
|
|
2023-07-04 18:15:38 +03:00
|
|
|
xs_str *process_tags(snac *snac, const char *content, xs_list **tag);
|
|
|
|
|
2024-01-19 01:04:37 +03:00
|
|
|
char *get_atto(const xs_dict *msg);
|
2024-01-24 21:30:01 +03:00
|
|
|
xs_list *get_attachments(const xs_dict *msg);
|
2024-01-19 01:04:37 +03:00
|
|
|
|
2023-06-04 11:34:39 +03:00
|
|
|
xs_dict *msg_admiration(snac *snac, char *object, char *type);
|
2023-05-24 12:49:16 +03:00
|
|
|
xs_dict *msg_create(snac *snac, const xs_dict *object);
|
2023-04-23 09:44:26 +03:00
|
|
|
xs_dict *msg_follow(snac *snac, const char *actor);
|
2023-02-20 11:32:44 +03:00
|
|
|
|
2023-04-15 20:05:26 +03:00
|
|
|
xs_dict *msg_note(snac *snac, const xs_str *content, const xs_val *rcpts,
|
2023-02-20 11:32:44 +03:00
|
|
|
xs_str *in_reply_to, xs_list *attach, int priv);
|
|
|
|
|
2023-06-04 11:34:39 +03:00
|
|
|
xs_dict *msg_undo(snac *snac, char *object);
|
|
|
|
xs_dict *msg_delete(snac *snac, char *id);
|
|
|
|
xs_dict *msg_actor(snac *snac);
|
2023-03-06 13:26:43 +03:00
|
|
|
xs_dict *msg_update(snac *snac, xs_dict *object);
|
2023-05-05 10:54:41 +03:00
|
|
|
xs_dict *msg_ping(snac *user, const char *rcpt);
|
|
|
|
xs_dict *msg_pong(snac *user, const char *rcpt, const char *object);
|
2023-05-30 06:54:45 +03:00
|
|
|
xs_dict *msg_question(snac *user, const char *content, xs_list *attach,
|
|
|
|
const xs_list *opts, int multiple, int end_secs);
|
2022-09-26 11:08:14 +03:00
|
|
|
|
2023-04-23 06:33:54 +03:00
|
|
|
int activitypub_request(snac *snac, const char *url, xs_dict **data);
|
2023-12-17 21:53:54 +03:00
|
|
|
int actor_request(snac *user, const char *actor, xs_dict **data);
|
2023-06-07 13:04:59 +03:00
|
|
|
void timeline_request_replies(snac *user, const char *id);
|
2023-02-07 12:29:06 +03:00
|
|
|
int send_to_inbox_raw(const char *keyid, const char *seckey,
|
|
|
|
const xs_str *inbox, const xs_dict *msg,
|
|
|
|
xs_val **payload, int *p_size, int timeout);
|
|
|
|
int send_to_inbox(snac *snac, const xs_str *inbox, const xs_dict *msg,
|
|
|
|
xs_val **payload, int *p_size, int timeout);
|
2023-12-10 19:50:03 +03:00
|
|
|
xs_str *get_actor_inbox(const char *actor);
|
2023-07-13 19:18:23 +03:00
|
|
|
int send_to_actor(snac *snac, const char *actor, const xs_dict *msg,
|
2023-07-13 18:58:18 +03:00
|
|
|
xs_val **payload, int *p_size, int timeout);
|
2023-08-12 10:43:01 +03:00
|
|
|
int is_msg_public(const xs_dict *msg);
|
2024-02-10 11:08:09 +03:00
|
|
|
int is_msg_from_private_user(const xs_dict *msg);
|
2023-04-11 10:50:12 +03:00
|
|
|
int is_msg_for_me(snac *snac, const xs_dict *msg);
|
2023-02-02 07:21:16 +03:00
|
|
|
|
2023-02-22 10:39:54 +03:00
|
|
|
int process_user_queue(snac *snac);
|
2023-02-06 22:07:29 +03:00
|
|
|
void process_queue_item(xs_dict *q_item);
|
2023-02-22 10:39:54 +03:00
|
|
|
int process_queue(void);
|
2023-02-02 07:21:16 +03:00
|
|
|
|
2023-05-04 10:25:09 +03:00
|
|
|
int activitypub_get_handler(const xs_dict *req, const char *q_path,
|
2022-09-23 21:59:19 +03:00
|
|
|
char **body, int *b_size, char **ctype);
|
2023-05-04 10:25:09 +03:00
|
|
|
int activitypub_post_handler(const xs_dict *req, const char *q_path,
|
2022-09-23 21:28:23 +03:00
|
|
|
char *payload, int p_size,
|
|
|
|
char **body, int *b_size, char **ctype);
|
2022-09-27 10:38:46 +03:00
|
|
|
|
2023-05-21 21:32:23 +03:00
|
|
|
xs_str *not_really_markdown(const char *content, xs_list **attach);
|
2023-05-21 21:11:06 +03:00
|
|
|
xs_str *sanitize(const char *content);
|
2023-07-11 20:45:58 +03:00
|
|
|
xs_str *encode_html(const char *str);
|
2022-10-28 19:06:42 +03:00
|
|
|
|
2024-02-21 10:12:05 +03:00
|
|
|
xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
|
2024-02-21 10:09:57 +03:00
|
|
|
int skip, int show, int show_more, char *tag, char *page);
|
2023-08-14 12:24:41 +03:00
|
|
|
|
2023-05-04 10:25:09 +03:00
|
|
|
int html_get_handler(const xs_dict *req, const char *q_path,
|
2023-07-02 12:11:01 +03:00
|
|
|
char **body, int *b_size, char **ctype, xs_str **etag);
|
2023-05-04 10:25:09 +03:00
|
|
|
int html_post_handler(const xs_dict *req, const char *q_path,
|
|
|
|
char *payload, int p_size,
|
2022-09-28 06:22:08 +03:00
|
|
|
char **body, int *b_size, char **ctype);
|
2022-10-04 09:51:24 +03:00
|
|
|
|
2023-01-31 20:38:56 +03:00
|
|
|
int snac_init(const char *_basedir);
|
2022-12-04 23:14:18 +03:00
|
|
|
int adduser(const char *uid);
|
2022-12-04 23:26:24 +03:00
|
|
|
int resetpwd(snac *snac);
|
2023-10-22 10:00:37 +03:00
|
|
|
int deluser(snac *user);
|
2023-02-06 22:29:18 +03:00
|
|
|
|
2023-08-14 19:02:20 +03:00
|
|
|
extern const char *snac_blurb;
|
|
|
|
|
2023-03-02 14:38:02 +03:00
|
|
|
void job_post(const xs_val *job, int urgent);
|
2023-02-06 22:29:18 +03:00
|
|
|
void job_wait(xs_val **job);
|
2023-04-08 07:09:05 +03:00
|
|
|
|
2023-04-08 10:09:43 +03:00
|
|
|
int oauth_get_handler(const xs_dict *req, const char *q_path,
|
|
|
|
char **body, int *b_size, char **ctype);
|
|
|
|
int oauth_post_handler(const xs_dict *req, const char *q_path,
|
2023-04-09 21:34:05 +03:00
|
|
|
const char *payload, int p_size,
|
|
|
|
char **body, int *b_size, char **ctype);
|
|
|
|
int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
|
|
|
char **body, int *b_size, char **ctype);
|
2024-01-11 16:38:08 +03:00
|
|
|
int mastoapi_delete_handler(const xs_dict *req, const char *q_path,
|
|
|
|
char **body, int *b_size, char **ctype);
|
2023-04-09 21:34:05 +03:00
|
|
|
int mastoapi_post_handler(const xs_dict *req, const char *q_path,
|
|
|
|
const char *payload, int p_size,
|
|
|
|
char **body, int *b_size, char **ctype);
|
2023-04-22 02:21:09 +03:00
|
|
|
int mastoapi_put_handler(const xs_dict *req, const char *q_path,
|
|
|
|
const char *payload, int p_size,
|
|
|
|
char **body, int *b_size, char **ctype);
|
2023-04-28 09:33:02 +03:00
|
|
|
void mastoapi_purge(void);
|
2024-02-15 21:24:10 +03:00
|
|
|
|
|
|
|
void verify_links(snac *user);
|