mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 01:25:04 +00:00
New command line action 'insert'.
This commit is contained in:
parent
0d6659af73
commit
be98082eee
1 changed files with 18 additions and 0 deletions
18
main.c
18
main.c
|
@ -30,6 +30,7 @@ int usage(void)
|
|||
printf("follow {basedir} {uid} {actor} Follows an actor\n");
|
||||
printf("unfollow {basedir} {uid} {actor} Unfollows an actor\n");
|
||||
printf("request {basedir} {uid} {url} Requests an object\n");
|
||||
printf("insert {basedir} {uid} {url} Requests an object and inserts it into the timeline\n");
|
||||
printf("actor {basedir} [{uid}] {url} Requests an actor\n");
|
||||
printf("note {basedir} {uid} {text} [files...] Sends a note with optional attachments\n");
|
||||
printf("boost|announce {basedir} {uid} {url} Boosts (announces) a post\n");
|
||||
|
@ -546,6 +547,23 @@ int main(int argc, char *argv[])
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (strcmp(cmd, "insert") == 0) { /** **/
|
||||
int status;
|
||||
xs *data = NULL;
|
||||
|
||||
status = activitypub_request(&snac, url, &data);
|
||||
|
||||
printf("status: %d\n", status);
|
||||
|
||||
if (data != NULL) {
|
||||
xs_json_dump(data, 4, stdout);
|
||||
enqueue_actor_refresh(&snac, xs_dict_get(data, "attributedTo"), 0);
|
||||
timeline_add(&snac, url, data);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (strcmp(cmd, "request2") == 0) { /** **/
|
||||
enqueue_object_request(&snac, url, 2);
|
||||
|
||||
|
|
Loading…
Reference in a new issue