From: Felix Fietkau Date: Sun, 8 Nov 2015 19:21:07 +0000 (+0100) Subject: handler: add support for overriding redirect status code + message X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuhttpd.git;a=commitdiff_plain;h=23b521b8840c959b1bb60b12b3c5c2cf5e00d649 handler: add support for overriding redirect status code + message Signed-off-by: Felix Fietkau --- diff --git a/handler.c b/handler.c index 6ec18af..a578a32 100644 --- a/handler.c +++ b/handler.c @@ -41,19 +41,29 @@ static void handle_redirect(struct json_script_ctx *ctx, struct blob_attr *data) { struct client *cl = cur_client; - static struct blobmsg_policy policy = { - .type = BLOBMSG_TYPE_STRING, + static struct blobmsg_policy policy[3] = { + { .type = BLOBMSG_TYPE_STRING }, + { .type = BLOBMSG_TYPE_INT32 }, + { .type = BLOBMSG_TYPE_STRING }, }; - struct blob_attr *tb; + struct blob_attr *tb[3]; + const char *status = "Found"; + int code = 302; - blobmsg_parse_array(&policy, 1, &tb, blobmsg_data(data), blobmsg_data_len(data)); - if (!tb) + blobmsg_parse_array(policy, ARRAY_SIZE(policy), tb, blobmsg_data(data), blobmsg_data_len(data)); + if (!tb[0]) return; - uh_http_header(cl, 302, "Found"); + if (tb[1]) { + code = blobmsg_get_u32(tb[1]); + if (tb[2]) + status = blobmsg_get_string(tb[2]); + } + + uh_http_header(cl, code, status); ustream_printf(cl->us, "Content-Length: 0\r\n"); ustream_printf(cl->us, "Location: %s\r\n\r\n", - blobmsg_get_string(tb)); + blobmsg_get_string(tb[0])); uh_request_done(cl); *cur_url = NULL;