X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/78efa64e092d96e15dc40283b73f3af117b2d0a3..834e7c4afb9125d868f9f488976d17f66364efc0:/server/dcgi.c diff --git a/server/dcgi.c b/server/dcgi.c index b818883..f14d8bf 100644 --- a/server/dcgi.c +++ b/server/dcgi.c @@ -46,7 +46,6 @@ #include "queue.h" #include "plugin.h" #include "split.h" -#include "words.h" #include "wstat.h" #include "kvp.h" #include "syscalls.h" @@ -54,6 +53,9 @@ #include "regsub.h" #include "defs.h" #include "trackname.h" +#include "charset.h" + +char *login_cookie; static void expand(cgi_sink *output, const char *template, @@ -102,11 +104,35 @@ static const char *front_url(void) { static void redirect(struct sink *output) { const char *back; - cgi_header(output, "Location", - (back = cgi_get("back")) ? back : front_url()); + back = cgi_get("back"); + cgi_header(output, "Location", back && *back ? back : front_url()); cgi_body(output); } +static void header_cookie(cgi_sink *output) { + struct dynstr d[1]; + char *s; + + if(login_cookie) { + dynstr_init(d); + for(s = login_cookie; *s; ++s) { + if(*s == '"') + dynstr_append(d, '\\'); + dynstr_append(d, *s); + } + dynstr_terminate(d); + byte_xasprintf(&s, "disorder=\"%s\"", d->vec); /* TODO domain, path, expiry */ + cgi_header(output->sink, "Set-Cookie", s); + } +} + +static void expand_template(dcgi_state *ds, cgi_sink *output, + const char *action) { + cgi_header(output->sink, "Content-Type", "text/html"); + cgi_body(output->sink); + expand(output, action, ds); +} + static void lookups(dcgi_state *ds, unsigned want) { unsigned need; struct queue_entry *r, *rnext; @@ -400,12 +426,97 @@ static void act_resume(cgi_sink *output, redirect(output->sink); } +static void act_login(cgi_sink *output, + dcgi_state *ds) { + const char *username, *password, *back; + disorder_client *c; + + username = cgi_get("username"); + password = cgi_get("password"); + if(!username || !password + || !strcmp(username, "guest")/*bodge to avoid guest cookies*/) { + /* We're just visiting the login page */ + expand_template(ds, output, "login"); + return; + } + c = disorder_new(1); + if(disorder_connect_user(c, username, password)) { + cgi_set_option("error", "loginfailed"); + expand_template(ds, output, "login"); + return; + } + if(disorder_make_cookie(c, &login_cookie)) { + cgi_set_option("error", "cookiefailed"); + expand_template(ds, output, "login"); + return; + } + /* We have a new cookie */ + header_cookie(output); + if((back = cgi_get("back")) && back) + /* Redirect back to somewhere or other */ + redirect(output->sink); + else + /* Stick to the login page */ + expand_template(ds, output, "login"); +} + +static void act_logout(cgi_sink *output, + dcgi_state *ds) { + disorder_revoke(ds->g->client); + login_cookie = 0; + /* Back to the login page */ + expand_template(ds, output, "login"); +} + +static void act_register(cgi_sink *output, + dcgi_state *ds) { + const char *username, *password, *email; + char *confirm; + + username = cgi_get("username"); + password = cgi_get("password"); + email = cgi_get("email"); + + if(!username || !*username) { + cgi_set_option("error", "nousername"); + expand_template(ds, output, "login"); + return; + } + if(!password || !*password) { + cgi_set_option("error", "nopassword"); + expand_template(ds, output, "login"); + return; + } + if(!email || !*email) { + cgi_set_option("error", "noemail"); + expand_template(ds, output, "login"); + return; + } + /* We could well do better address validation but for now we'll just do the + * minimum */ + if(!strchr(email, '@')) { + cgi_set_option("error", "bademail"); + expand_template(ds, output, "login"); + return; + } + if(disorder_register(ds->g->client, username, password, email, &confirm)) { + cgi_set_option("error", "cannotregister"); + expand_template(ds, output, "login"); + return; + } + /* We'll go back to the login page with a suitable message */ + cgi_set_option("registered", "registeredok"); + expand_template(ds, output, "login"); +} + static const struct action { const char *name; void (*handler)(cgi_sink *output, dcgi_state *ds); } actions[] = { { "disable", act_disable }, { "enable", act_enable }, + { "login", act_login }, + { "logout", act_logout }, { "move", act_move }, { "pause", act_pause }, { "play", act_play }, @@ -413,6 +524,7 @@ static const struct action { { "prefs", act_prefs }, { "random-disable", act_random_disable }, { "random-enable", act_random_enable }, + { "register", act_register }, { "remove", act_remove }, { "resume", act_resume }, { "scratch", act_scratch }, @@ -446,7 +558,7 @@ static void exp_version(int attribute((unused)) nargs, char attribute((unused)) **args, cgi_sink *output, void attribute((unused)) *u) { - cgi_output(output, "%s", disorder_version_string); + cgi_output(output, "%s", disorder_short_version_string); } static void exp_nonce(int attribute((unused)) nargs, @@ -567,8 +679,11 @@ static void exp_part(int nargs, default: abort(); } - if(disorder_part(ds->g->client, (char **)&s, track, context, part)) + if(disorder_part(ds->g->client, (char **)&s, track, + !strcmp(context, "short") ? "display" : context, part)) fatal(0, "disorder_part() failed"); + if(!strcmp(context, "short")) + s = truncate_for_display(s, config->short_display); cgi_output(output, "%s", s); } else sink_printf(output->sink, " "); @@ -1398,6 +1513,15 @@ static void exp_nfiles(int attribute((unused)) nargs, cgi_output(output, "1"); } +static void exp_user(int attribute((unused)) nargs, + char attribute((unused)) **args, + cgi_sink *output, + void *u) { + dcgi_state *const ds = u; + + cgi_output(output, "%s", disorder_user(ds->g->client)); +} + static const struct cgi_expansion expansions[] = { { "#", 0, INT_MAX, EXP_MAGIC, exp_comment }, { "action", 0, 0, 0, exp_action }, @@ -1457,6 +1581,7 @@ static const struct cgi_expansion expansions[] = { { "transform", 2, 3, 0, exp_transform }, { "url", 0, 0, 0, exp_url }, { "urlquote", 1, 1, 0, exp_urlquote }, + { "user", 0, 0, 0, exp_user }, { "version", 0, 0, 0, exp_version }, { "volume", 1, 1, 0, exp_volume }, { "when", 0, 0, 0, exp_when }, @@ -1486,13 +1611,14 @@ static void perform_action(cgi_sink *output, dcgi_state *ds, const char *action) { int n; + /* If we have a login cookie it'd better appear in all responses */ + header_cookie(output); + /* We don't ever want anything to be cached */ + cgi_header(output->sink, "Cache-Control", "no-cache"); if((n = TABLE_FIND(actions, struct action, name, action)) >= 0) actions[n].handler(output, ds); - else { - cgi_header(output->sink, "Content-Type", "text/html"); - cgi_body(output->sink); - expand(output, action, ds); - } + else + expand_template(ds, output, action); } void disorder_cgi(cgi_sink *output, dcgi_state *ds) {