summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-09-20 12:00:13 +0200
committerdefault <nobody@localhost>2022-09-20 12:00:13 +0200
commit5d843a488ec349d94e22314e90a73885ebfce007 (patch)
treece103859ce4d4ee90564192cd56160a54cf61a71 /data.c
parent065773c70377567f7c6669b752ca51b27bef8ad3 (diff)
New function enqueue().
Diffstat (limited to 'data.c')
-rw-r--r--data.c37
1 files changed, 36 insertions, 1 deletions
diff --git a/data.c b/data.c
index 667d1e6..fe21be6 100644
--- a/data.c
+++ b/data.c
@@ -391,7 +391,7 @@ void timeline_add(snac *snac, char *id, char *msg, char *parent)
}
/* build the new filename */
- xs *ntid = tid();
+ xs *ntid = tid(0);
xs *md5 = xs_md5_hex(id, strlen(id));
xs *fn = xs_fmt("%s/timeline/%s-%s.json", snac->basedir, ntid, md5);
xs *md;
@@ -519,3 +519,38 @@ int is_muted(snac *snac, char *actor)
return !!(mtime(fn) != 0.0);
}
+
+
+void enqueue(snac *snac, char *actor, char *msg, int retries)
+/* enqueues a message for an actor */
+{
+ if (strcmp(actor, snac->actor) == 0) {
+ snac_debug(snac, 1, xs_str_new("enqueue refused to myself"));
+ return;
+ }
+
+ int qrt = xs_number_get(xs_dict_get(srv_config, "query_retry_minutes"));
+ xs *ntid = tid(retries * 60 * qrt);
+ xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
+ xs *tfn = xs_str_cat(fn, ".tmp");
+ FILE *f;
+
+ if ((f = fopen(tfn, "w")) != NULL) {
+ xs *qmsg = xs_dict_new();
+ xs *rn = xs_number_new(retries);
+ xs *j;
+
+ qmsg = xs_dict_append(qmsg, "actor", actor);
+ qmsg = xs_dict_append(qmsg, "object", msg);
+ qmsg = xs_dict_append(qmsg, "retries", rn);
+
+ j = xs_json_dumps_pp(qmsg, 4);
+
+ fwrite(j, strlen(j), 1, f);
+ fclose(f);
+
+ rename(tfn, fn);
+
+ snac_debug(snac, 2, xs_fmt("enqueue %s %s %d", actor, fn, retries));
+ }
+}