X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=http_blerg.c;h=e6eddad7fe3ce13e9ed8cdc65fa5aea63166f51c;hb=3d6d277d4cdfff7c11729cde0e2498b4b3912a98;hp=3cbc2070000d174e89420a27e15f5c01ddbe12e5;hpb=756d4bcc451233245a952d4b5b0e9fd348323131;p=blerg.git diff --git a/http_blerg.c b/http_blerg.c index 3cbc207..e6eddad 100644 --- a/http_blerg.c +++ b/http_blerg.c @@ -2,6 +2,7 @@ #include #include #include +#include #include "database.h" #include "tags.h" #include "auth.h" @@ -131,10 +132,17 @@ ahc_derp (void *cls, struct MHD_Connection *connection, const char *url, const c char *data; if (strncmp(url, "/get", 4) == 0 && strlen(url) > 4) { - if (strcmp(method, MHD_HTTP_METHOD_GET) != 0) - return MHD_NO; + if (*ptr == NULL) { + if (strcmp(method, MHD_HTTP_METHOD_GET) != 0) + return respond_405(connection); + + *ptr = (void *) 1; + return MHD_YES; + } + if (url[4] != '/') return respond_404(connection); + ret = parse_url_info(url + 5, author, &record); if ((ret & URL_INFO_AUTHOR) == 0) return respond_404(connection); @@ -142,37 +150,26 @@ ahc_derp (void *cls, struct MHD_Connection *connection, const char *url, const c if (!blerg_exists(author)) return respond_404(connection); + *ptr == NULL; + if (ret & URL_INFO_RECORD) { - if (*ptr == NULL) { - *ptr = (void *) 1; - return MHD_YES; - } else { - *ptr == NULL; - - struct blerg *b = blerg_open(author); - ret = blerg_fetch(b, record, &data, &len); - blerg_close(b); - - if (ret == 0) { - return respond_404(connection); - } else { - response = MHD_create_response_from_data(len, data, MHD_YES, MHD_NO); - ret = MHD_queue_response(connection, MHD_HTTP_OK, response); - } - MHD_destroy_response(response); - return ret; - } - } else { - if (*ptr == NULL) { - *ptr = (void*) 1; - return MHD_YES; + struct blerg *b = blerg_open(author); + ret = blerg_fetch(b, record, &data, &len); + blerg_close(b); + + if (ret == 0) { + return respond_404(connection); } else { - *ptr == NULL; - response = MHD_create_response_from_data(strlen(DERP), DERP, MHD_NO, MHD_NO); + response = MHD_create_response_from_data(len, data, MHD_YES, MHD_NO); ret = MHD_queue_response(connection, MHD_HTTP_OK, response); - MHD_destroy_response(response); - return ret; } + MHD_destroy_response(response); + return ret; + } else { + response = MHD_create_response_from_data(strlen(DERP), DERP, MHD_NO, MHD_NO); + ret = MHD_queue_response(connection, MHD_HTTP_OK, response); + MHD_destroy_response(response); + return ret; } } else if (strncmp(url, "/put", 4) == 0) { struct put_state *ps = (struct put_state *) *ptr;