mirror of
https://git.swurl.xyz/swirl/pacebin.git
synced 2024-11-21 20:39:21 +02:00
add -k option
This commit is contained in:
parent
f5315ae00c
commit
4f164ddc67
|
@ -0,0 +1,2 @@
|
||||||
|
*.o
|
||||||
|
pacebin
|
13
main.c
13
main.c
|
@ -13,6 +13,7 @@
|
||||||
char *port = "8081";
|
char *port = "8081";
|
||||||
char *data_dir = "/srv/pacebin";
|
char *data_dir = "/srv/pacebin";
|
||||||
char *seed = "secret";
|
char *seed = "secret";
|
||||||
|
char *proto = "http://";
|
||||||
|
|
||||||
static struct mg_http_serve_opts s_http_server_opts;
|
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);
|
char *del_header = malloc(256);
|
||||||
sprintf(del_header, "X-Delete-With: %s\r\n", del_key);
|
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) {
|
void handle_delete(struct mg_connection *nc, char *link, char *del_key) {
|
||||||
|
@ -187,7 +188,7 @@ int main(int argc, char *argv[]) {
|
||||||
opterr = 0;
|
opterr = 0;
|
||||||
setvbuf(stdout, NULL, _IONBF, 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) {
|
switch (c) {
|
||||||
case 'p':
|
case 'p':
|
||||||
port = optarg;
|
port = optarg;
|
||||||
|
@ -198,13 +199,17 @@ int main(int argc, char *argv[]) {
|
||||||
case 's':
|
case 's':
|
||||||
seed = optarg;
|
seed = optarg;
|
||||||
break;
|
break;
|
||||||
|
case 'k':
|
||||||
|
proto = "https://";
|
||||||
|
break;
|
||||||
case 'h':
|
case 'h':
|
||||||
printf("pacebin: a minimal pastebin\n");
|
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("options:\n");
|
||||||
printf("-p <port>\t\tport to use (default 8081)\n");
|
printf("-p <port>\t\tport to use (default 8081)\n");
|
||||||
printf("-d <data directory>\tdirectory to store data (default /srv/pacebin)\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");
|
printf("source: https://short.swurl.xyz/pacebin (submit bug reports, suggestions, etc. here)\n");
|
||||||
return 0;
|
return 0;
|
||||||
case '?':
|
case '?':
|
||||||
|
|
Loading…
Reference in New Issue