2022-09-19 22:13:40 +03:00
|
|
|
/* snac - A simple, minimalistic ActivityPub instance */
|
2023-01-17 11:50:16 +03:00
|
|
|
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
2022-09-19 21:47:22 +03:00
|
|
|
|
2023-05-21 21:33:20 +03:00
|
|
|
#define VERSION "2.33-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-02-07 11:01:57 +03:00
|
|
|
#define DIR_PERM 02770
|
|
|
|
|
2023-01-31 20:33:45 +03:00
|
|
|
extern double disk_layout;
|
2022-09-19 22:13:40 +03:00
|
|
|
extern d_char *srv_basedir;
|
|
|
|
extern d_char *srv_config;
|
|
|
|
extern d_char *srv_baseurl;
|
2022-09-21 19:13:11 +03:00
|
|
|
extern int srv_running;
|
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);
|
2022-09-20 13:00:13 +03:00
|
|
|
d_char *tid(int offset);
|
2022-09-28 18:18:30 +03:00
|
|
|
double ftime(void);
|
2022-09-19 23:19:14 +03:00
|
|
|
|
2022-09-19 22:30:19 +03:00
|
|
|
void srv_debug(int level, d_char *str);
|
|
|
|
#define srv_log(str) srv_debug(0, str)
|
|
|
|
|
2022-11-25 12:53:16 +03:00
|
|
|
int srv_open(char *basedir, int auto_upgrade);
|
2022-10-25 11:38:20 +03:00
|
|
|
void srv_free(void);
|
2022-09-19 22:13:40 +03:00
|
|
|
|
2022-09-19 23:19:14 +03:00
|
|
|
typedef struct _snac {
|
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 */
|
|
|
|
xs_str *actor; /* actor url */
|
|
|
|
xs_str *md5; /* actor url md5 */
|
2022-09-19 23:19:14 +03:00
|
|
|
} snac;
|
|
|
|
|
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
|
|
|
|
|
|
|
void snac_debug(snac *snac, int level, d_char *str);
|
|
|
|
#define snac_log(snac, str) snac_debug(snac, 0, str)
|
2022-09-19 23:41:30 +03:00
|
|
|
|
2022-12-04 23:14:18 +03:00
|
|
|
int validate_uid(const char *uid);
|
2022-09-19 23:58:27 +03:00
|
|
|
|
2022-12-04 23:14:18 +03:00
|
|
|
d_char *hash_password(const char *uid, const char *passwd, const char *nonce);
|
|
|
|
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);
|
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
|
|
|
|
2022-11-24 10:00:35 +03:00
|
|
|
int index_add(const char *fn, const char *md5);
|
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);
|
2022-11-24 10:00:35 +03:00
|
|
|
d_char *index_list(const char *fn, int max);
|
2022-12-04 23:28:29 +03:00
|
|
|
d_char *index_list_desc(const char *fn, int skip, int show);
|
2022-11-23 22:50:35 +03:00
|
|
|
|
2022-12-03 19:58:49 +03:00
|
|
|
int object_add(const char *id, d_char *obj);
|
|
|
|
int object_add_ow(const char *id, d_char *obj);
|
2022-12-02 23:36:12 +03:00
|
|
|
int object_here_by_md5(char *id);
|
2022-12-02 22:44:51 +03:00
|
|
|
int object_here(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);
|
|
|
|
|
2022-12-02 21:14:59 +03:00
|
|
|
d_char *object_children(const char *id);
|
|
|
|
d_char *object_likes(const char *id);
|
|
|
|
d_char *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);
|
2022-09-20 10:48:13 +03:00
|
|
|
d_char *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-01-11 22:40:13 +03:00
|
|
|
int timeline_add(snac *snac, char *id, char *o_msg);
|
2023-01-11 22:47:36 +03:00
|
|
|
void timeline_admire(snac *snac, char *id, 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-04-23 09:51:02 +03:00
|
|
|
int following_get(snac *snac, const char *actor, d_char **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
|
|
|
|
2022-11-24 11:39:16 +03:00
|
|
|
void hide(snac *snac, const char *id);
|
|
|
|
int is_hidden(snac *snac, const char *id);
|
|
|
|
|
2023-05-04 10:19:26 +03:00
|
|
|
int actor_add(const char *actor, xs_dict *msg);
|
2023-04-30 08:00:49 +03:00
|
|
|
int actor_get(snac *snac, const char *actor, xs_dict **data);
|
2022-09-22 19:50:39 +03:00
|
|
|
|
2022-10-16 19:03:28 +03:00
|
|
|
int static_get(snac *snac, const char *id, d_char **data, int *size);
|
|
|
|
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);
|
|
|
|
void history_add(snac *snac, const char *id, const char *content, int size);
|
|
|
|
xs_str *history_get(snac *snac, const char *id);
|
|
|
|
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);
|
|
|
|
xs_list *notify_list(snac *snac, int new_only);
|
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-05-04 10:25:09 +03:00
|
|
|
void enqueue_input(snac *snac, 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,
|
|
|
|
xs_dict *msg, xs_str *inbox, int retries);
|
2023-01-31 23:15:16 +03:00
|
|
|
void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries);
|
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);
|
2022-12-16 09:09:25 +03:00
|
|
|
void enqueue_message(snac *snac, char *msg);
|
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-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-03-01 10:25:36 +03:00
|
|
|
int check_signature(snac *snac, xs_dict *req, xs_str **err);
|
2022-09-21 19:27:30 +03:00
|
|
|
|
|
|
|
void httpd(void);
|
2022-09-21 22:12:49 +03:00
|
|
|
|
2023-04-23 06:33:54 +03:00
|
|
|
int webfinger_request(const char *qs, char **actor, char **user);
|
2023-05-04 10:25:09 +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);
|
|
|
|
|
2022-09-26 11:08:14 +03:00
|
|
|
d_char *msg_admiration(snac *snac, char *object, char *type);
|
2022-09-27 15:07:36 +03:00
|
|
|
d_char *msg_create(snac *snac, char *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);
|
|
|
|
|
2022-10-01 10:12:33 +03:00
|
|
|
d_char *msg_undo(snac *snac, char *object);
|
2022-10-01 20:37:47 +03:00
|
|
|
d_char *msg_delete(snac *snac, char *id);
|
2022-10-02 18:42:36 +03:00
|
|
|
d_char *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-24 12:07:47 +03:00
|
|
|
xs_dict *msg_question(snac *user, const char *content, 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);
|
|
|
|
int actor_request(snac *snac, const char *actor, xs_dict **data);
|
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-04-23 09:44:26 +03:00
|
|
|
d_char *get_actor_inbox(snac *snac, const char *actor);
|
2023-01-24 17:06:58 +03:00
|
|
|
int send_to_actor(snac *snac, char *actor, char *msg, d_char **payload, int *p_size, int timeout);
|
2023-04-11 10:50:12 +03:00
|
|
|
int is_msg_public(snac *snac, const xs_dict *msg);
|
|
|
|
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);
|
2022-10-28 19:06:42 +03:00
|
|
|
|
2023-05-04 10:25:09 +03:00
|
|
|
int html_get_handler(const xs_dict *req, const char *q_path,
|
|
|
|
char **body, int *b_size, char **ctype);
|
|
|
|
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-02-06 22:29:18 +03:00
|
|
|
|
2023-02-11 08:28:36 +03:00
|
|
|
int job_fifo_ready(void);
|
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);
|
|
|
|
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);
|