add -k option

This commit is contained in:
swirl 2021-09-25 17:54:58 -04:00
parent f5315ae00c
commit 4f164ddc67
2 changed files with 11 additions and 4 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.o
pacebin

13
main.c
View File

@ -13,6 +13,7 @@
char *port = "8081";
char *data_dir = "/srv/pacebin";
char *seed = "secret";
char *proto = "http://";
static struct mg_http_serve_opts s_http_server_opts;
@ -129,7 +130,7 @@ void handle_post(struct mg_connection *nc, char *content, char *host, char *link
char *del_header = malloc(256);
sprintf(del_header, "X-Delete-With: %s\r\n", del_key);
mg_http_reply(nc, 201, del_header, "http://%s/%s", host, short_link);
mg_http_reply(nc, 201, del_header, "%s%s/%s", proto, host, short_link);
}
void handle_delete(struct mg_connection *nc, char *link, char *del_key) {
@ -187,7 +188,7 @@ int main(int argc, char *argv[]) {
opterr = 0;
setvbuf(stdout, NULL, _IONBF, 0);
while ((c = getopt (argc, argv, "p:d:s:h")) != -1) {
while ((c = getopt (argc, argv, "p:d:s:kh")) != -1) {
switch (c) {
case 'p':
port = optarg;
@ -198,13 +199,17 @@ int main(int argc, char *argv[]) {
case 's':
seed = optarg;
break;
case 'k':
proto = "https://";
break;
case 'h':
printf("pacebin: a minimal pastebin\n");
printf("usage: %s [-p port] [-d data_dir] [-s seed]\n\n", argv[0]);
printf("usage: %s [-p port] [-d data_dir] [-s seed] [-k]\n\n", argv[0]);
printf("options:\n");
printf("-p <port>\t\tport to use (default 8081)\n");
printf("-d <data directory>\tdirectory to store data (default /srv/pacebin)\n");
printf("-s <seed>\t\tsecret seed to use (DO NOT SHARE THIS; default 'secret')\n\n");
printf("-s <seed>\t\tsecret seed to use (DO NOT SHARE THIS; default 'secret')\n");
printf("-k\t\t\treturns HTTPS URLs when uploading files, use with an HTTPS-enabled reverse proxy\n\n");
printf("source: https://short.swurl.xyz/pacebin (submit bug reports, suggestions, etc. here)\n");
return 0;
case '?':