X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/968f044ac93cee0b8ead3f36b76543324de0106f..8d516888863f6236649b33af3d69b8d159d1f789:/server/dcgi.c diff --git a/server/dcgi.c b/server/dcgi.c index 4e289a0..81b6943 100644 --- a/server/dcgi.c +++ b/server/dcgi.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell + * Copyright (C) 2004-2008 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -113,7 +113,7 @@ static void header_cookie(struct sink *output) { parse_url(config->url, &u); if(login_cookie) { dynstr_append_string(d, "disorder="); - dynstr_append_string(d, quote822(login_cookie, 0)); + dynstr_append_string(d, login_cookie); } else { /* Force browser to discard cookie */ dynstr_append_string(d, "disorder=none;Max-Age=0"); @@ -123,8 +123,8 @@ static void header_cookie(struct sink *output) { * that. But the default path only goes up to the rightmost /, which would * cause the browser to expose the cookie to other CGI programs on the same * web server. */ - dynstr_append_string(d, ";Path="); - dynstr_append_string(d, quote822(u.path, 0)); + dynstr_append_string(d, ";Version=1;Path="); + dynstr_append_string(d, u.path); } dynstr_terminate(d); cgi_header(output, "Set-Cookie", d->vec); @@ -645,6 +645,24 @@ static void act_edituser(cgi_sink *output, expand_template(ds, output, "login"); } +static void act_reminder(cgi_sink *output, + dcgi_state *ds) { + const char *const username = cgi_get("username"); + + if(!username || !*username) { + cgi_set_option("error", "nousername"); + expand_template(ds, output, "login"); + return; + } + if(disorder_reminder(ds->g->client, username)) { + cgi_set_option("error", "reminderfailed"); + expand_template(ds, output, "login"); + return; + } + cgi_set_option("status", "reminded"); + expand_template(ds, output, "login"); +} + static const struct action { const char *name; void (*handler)(cgi_sink *output, dcgi_state *ds); @@ -663,6 +681,7 @@ static const struct action { { "random-disable", act_random_disable }, { "random-enable", act_random_enable }, { "register", act_register }, + { "reminder", act_reminder }, { "remove", act_remove }, { "resume", act_resume }, { "scratch", act_scratch }, @@ -1696,6 +1715,26 @@ static void exp_userinfo(int attribute((unused)) nargs, cgi_output(output, "%s", value); } +static void exp_image(int attribute((unused)) nargs, + char **args, + cgi_sink *output, + void attribute((unused)) *u) { + char *labelname; + const char *imagestem; + + byte_xasprintf(&labelname, "images.%s", args[0]); + if(cgi_label_exists(labelname)) + imagestem = cgi_label(labelname); + else if(strchr(args[0], '.')) + imagestem = args[0]; + else + byte_xasprintf((char **)&imagestem, "%s.png", args[0]); + if(cgi_label_exists("url.static")) + cgi_output(output, "%s/%s", cgi_label("url.static"), imagestem); + else + cgi_output(output, "/disorder/%s", imagestem); +} + static const struct cgi_expansion expansions[] = { { "#", 0, INT_MAX, EXP_MAGIC, exp_comment }, { "action", 0, 0, 0, exp_action }, @@ -1711,6 +1750,7 @@ static const struct cgi_expansion expansions[] = { { "fullname", 0, 0, 0, exp_fullname }, { "id", 0, 0, 0, exp_id }, { "if", 2, 3, EXP_MAGIC, exp_if }, + { "image", 1, 1, 0, exp_image }, { "include", 1, 1, 0, exp_include }, { "index", 0, 0, 0, exp_index }, { "isdirectories", 0, 0, 0, exp_isdirectories },