mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 14:35:04 +00:00
Started command-line command 'note'.
This commit is contained in:
parent
26a3b260d5
commit
55226d3e6b
1 changed files with 35 additions and 0 deletions
35
main.c
35
main.c
|
@ -2,6 +2,7 @@
|
||||||
/* copyright (c) 2022 grunfink - MIT license */
|
/* copyright (c) 2022 grunfink - MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
|
#include "xs_io.h"
|
||||||
#include "xs_encdec.h"
|
#include "xs_encdec.h"
|
||||||
#include "xs_json.h"
|
#include "xs_json.h"
|
||||||
|
|
||||||
|
@ -34,6 +35,7 @@ int usage(void)
|
||||||
|
|
||||||
printf("request {basedir} {uid} {url} Requests an object\n");
|
printf("request {basedir} {uid} {url} Requests an object\n");
|
||||||
printf("actor {basedir} {uid} {url} Requests an actor\n");
|
printf("actor {basedir} {uid} {url} Requests an actor\n");
|
||||||
|
printf("note {basedir} {uid} {'text'} Sends a note to followers\n");
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -161,6 +163,39 @@ int main(int argc, char *argv[])
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (strcmp(cmd, "note") == 0) {
|
||||||
|
int status;
|
||||||
|
xs *data = NULL;
|
||||||
|
xs *content = NULL;
|
||||||
|
xs *f_content = NULL;
|
||||||
|
|
||||||
|
if (strcmp(url, "-") == 0) {
|
||||||
|
/* get the content from an editor */
|
||||||
|
FILE *f;
|
||||||
|
|
||||||
|
system("$EDITOR /tmp/snac-edit.txt");
|
||||||
|
|
||||||
|
if ((f = fopen("/tmp/snac-edit.txt", "r")) != NULL) {
|
||||||
|
content = xs_readall(f);
|
||||||
|
fclose(f);
|
||||||
|
|
||||||
|
unlink("/tmp/snac-edit.txt");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("Nothing to send\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
content = xs_dup(url);
|
||||||
|
|
||||||
|
not_really_markdown(content, &f_content);
|
||||||
|
|
||||||
|
printf("%s\n", f_content);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue