chiark / gitweb /
server: docs: remove deprecated configuration and user upgrade.
[disorder] / cgi / actions.c
CommitLineData
bca4e2b7
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2004-2008 Richard Kettlewell
4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
bca4e2b7 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
bca4e2b7
RK
8 * (at your option) any later version.
9 *
e7eb3a27
RK
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
bca4e2b7 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
bca4e2b7 17 */
59cf25c4 18/** @file cgi/actions.c
1e97629d
RK
19 * @brief DisOrder web actions
20 *
21 * Actions are anything that the web interface does beyond passive template
22 * expansion and inspection of state recieved from the server. This means
23 * playing tracks, editing prefs etc but also setting extra headers e.g. to
24 * auto-refresh the playing list.
59cf25c4
RK
25 *
26 * See @ref lib/macros-builtin.c for docstring syntax.
1e97629d 27 */
bca4e2b7 28
1e97629d 29#include "disorder-cgi.h"
5a7df048
RK
30
31/** @brief Redirect to some other action or URL */
32static void redirect(const char *url) {
33 /* By default use the 'back' argument */
34 if(!url)
71634563 35 url = cgi_get("back");
04aa2c4f 36 if(url && *url) {
e7ce7665 37 if(strncmp(url, "http", 4))
5a7df048
RK
38 /* If the target is not a full URL assume it's the action */
39 url = cgi_makeurl(config->url, "action", url, (char *)0);
40 } else {
41 /* If back= is not set just go back to the front page */
42 url = config->url;
43 }
44 if(printf("Location: %s\n"
45 "%s\n"
1e97629d 46 "\n", url, dcgi_cookie_header()) < 0)
2e9ba080 47 disorder_fatal(errno, "error writing to stdout");
5a7df048
RK
48}
49
59cf25c4 50/*$ playing
5c1ae3bc
RK
51 *
52 * Expands \fIplaying.tmpl\fR as if there was no special 'playing' action, but
53 * adds a Refresh: field to the HTTP header. The maximum refresh interval is
54 * defined by \fBrefresh\fR (see \fBdisorder_config\fR(5)) but may be less if
55 * the end of the track is near.
56 */
59cf25c4 57/*$ manage
5c1ae3bc
RK
58 *
59 * Expands \fIplaying.tmpl\fR (NB not \fImanage.tmpl\fR) as if there was no
60 * special 'playing' action, and adds a Refresh: field to the HTTP header. The
61 * maximum refresh interval is defined by \Bfrefresh\fR (see
62 * \fBdisorder_config\fR(5)) but may be less if the end of the track is near.
63 */
448d3570
RK
64static void act_playing(void) {
65 long refresh = config->refresh;
66 long length;
67 time_t now, fin;
68 char *url;
71634563 69 const char *action;
448d3570 70
1e97629d
RK
71 dcgi_lookup(DCGI_PLAYING|DCGI_QUEUE|DCGI_ENABLED|DCGI_RANDOM_ENABLED);
72 if(dcgi_playing
73 && dcgi_playing->state == playing_started /* i.e. not paused */
74 && !disorder_length(dcgi_client, dcgi_playing->track, &length)
448d3570 75 && length
1e97629d 76 && dcgi_playing->sofar >= 0) {
448d3570 77 /* Try to put the next refresh at the start of the next track. */
4265e5d3 78 xtime(&now);
657fdb79 79 fin = now + length - dcgi_playing->sofar;
448d3570
RK
80 if(now + refresh > fin)
81 refresh = fin - now;
82 }
6a5964b7 83 if(dcgi_queue && dcgi_queue->origin == origin_scratch) {
657fdb79
RK
84 /* next track is a scratch, refresh immediately */
85 refresh = 0;
448d3570 86 }
1e97629d
RK
87 if(!dcgi_playing
88 && ((dcgi_queue
2dc2f478 89 && dcgi_queue->origin != origin_random)
1e97629d
RK
90 || dcgi_random_enabled)
91 && dcgi_enabled) {
448d3570 92 /* no track playing but playing is enabled and there is something coming
657fdb79
RK
93 * up, so refresh immediately */
94 refresh = 0;
448d3570 95 }
533272be
RK
96 /* Bound the refresh interval below as a back-stop against the above
97 * calculations coming up with a stupid answer */
98 if(refresh < config->refresh_min)
99 refresh = config->refresh_min;
448d3570
RK
100 if((action = cgi_get("action")))
101 url = cgi_makeurl(config->url, "action", action, (char *)0);
102 else
103 url = config->url;
e7ce7665
RK
104 if(printf("Refresh: %ld;url=%s\n",
105 refresh, url) < 0)
2e9ba080 106 disorder_fatal(errno, "error writing to stdout");
e7ce7665 107 dcgi_expand("playing", 1);
1e97629d
RK
108}
109
59cf25c4 110/*$ disable
5c1ae3bc
RK
111 *
112 * Disables play.
113 */
1e97629d
RK
114static void act_disable(void) {
115 if(dcgi_client)
116 disorder_disable(dcgi_client);
117 redirect(0);
118}
119
59cf25c4 120/*$ enable
5c1ae3bc
RK
121 *
122 * Enables play.
123 */
1e97629d
RK
124static void act_enable(void) {
125 if(dcgi_client)
126 disorder_enable(dcgi_client);
127 redirect(0);
128}
129
59cf25c4 130/*$ random-disable
5c1ae3bc
RK
131 *
132 * Disables random play.
133 */
1e97629d
RK
134static void act_random_disable(void) {
135 if(dcgi_client)
136 disorder_random_disable(dcgi_client);
137 redirect(0);
138}
139
59cf25c4 140/*$ random-enable
5c1ae3bc
RK
141 *
142 * Enables random play.
143 */
1e97629d
RK
144static void act_random_enable(void) {
145 if(dcgi_client)
146 disorder_random_enable(dcgi_client);
147 redirect(0);
448d3570
RK
148}
149
59cf25c4 150/*$ pause
5c1ae3bc
RK
151 *
152 * Pauses the current track (if there is one and it's not paused already).
153 */
6d9dd8d9
RK
154static void act_pause(void) {
155 if(dcgi_client)
156 disorder_pause(dcgi_client);
157 redirect(0);
158}
159
59cf25c4 160/*$ resume
5c1ae3bc
RK
161 *
162 * Resumes the current track (if there is one and it's paused).
163 */
6d9dd8d9
RK
164static void act_resume(void) {
165 if(dcgi_client)
166 disorder_resume(dcgi_client);
167 redirect(0);
168}
169
59cf25c4 170/*$ remove
5c1ae3bc
RK
171 *
172 * Removes the track given by the \fBid\fR argument. If this is the currently
173 * playing track then it is scratched.
174 */
a2c4ad5f
RK
175static void act_remove(void) {
176 const char *id;
177 struct queue_entry *q;
178
179 if(dcgi_client) {
180 if(!(id = cgi_get("id")))
2e9ba080 181 disorder_error(0, "missing 'id' argument");
a2c4ad5f 182 else if(!(q = dcgi_findtrack(id)))
2e9ba080 183 disorder_error(0, "unknown queue id %s", id);
6a5964b7
RK
184 else if(q->origin == origin_scratch)
185 /* can't scratch scratches */
2e9ba080 186 disorder_error(0, "does not make sense to scratch or remove %s", id);
6a5964b7
RK
187 else if(q->state == playing_paused
188 || q->state == playing_started)
189 /* removing the playing track = scratching */
a2c4ad5f 190 disorder_scratch(dcgi_client, id);
6a5964b7
RK
191 else if(q->state == playing_unplayed)
192 /* otherwise it must be in the queue */
a2c4ad5f 193 disorder_remove(dcgi_client, id);
6a5964b7
RK
194 else
195 /* various error states */
2e9ba080 196 disorder_error(0, "does not make sense to scratch or remove %s", id);
a2c4ad5f
RK
197 }
198 redirect(0);
199}
200
59cf25c4 201/*$ move
5c1ae3bc
RK
202 *
203 * Moves the track given by the \fBid\fR argument the distance given by the
204 * \fBdelta\fR argument. If this is positive the track is moved earlier in the
205 * queue and if negative, later.
206 */
6d9dd8d9
RK
207static void act_move(void) {
208 const char *id, *delta;
209 struct queue_entry *q;
210
211 if(dcgi_client) {
212 if(!(id = cgi_get("id")))
2e9ba080 213 disorder_error(0, "missing 'id' argument");
6d9dd8d9 214 else if(!(delta = cgi_get("delta")))
2e9ba080 215 disorder_error(0, "missing 'delta' argument");
6d9dd8d9 216 else if(!(q = dcgi_findtrack(id)))
2e9ba080 217 disorder_error(0, "unknown queue id %s", id);
6d9dd8d9
RK
218 else switch(q->state) {
219 case playing_random: /* unplayed randomly chosen track */
220 case playing_unplayed: /* haven't played this track yet */
221 disorder_move(dcgi_client, id, atol(delta));
222 break;
223 default:
2e9ba080 224 disorder_error(0, "does not make sense to scratch %s", id);
6d9dd8d9
RK
225 break;
226 }
227 }
228 redirect(0);
229}
230
59cf25c4 231/*$ play
5c1ae3bc
RK
232 *
233 * Play the track given by the \fBtrack\fR argument, or if that is not set all
234 * the tracks in the directory given by the \fBdir\fR argument.
235 */
6d9dd8d9
RK
236static void act_play(void) {
237 const char *track, *dir;
238 char **tracks;
239 int ntracks, n;
e13809e4 240 struct tracksort_data *tsd;
00861dcb 241 char *id;
6d9dd8d9
RK
242
243 if(dcgi_client) {
02eaa49d 244 if((track = cgi_get("track"))) {
00861dcb 245 disorder_play(dcgi_client, track, &id);
6d9dd8d9
RK
246 } else if((dir = cgi_get("dir"))) {
247 if(disorder_files(dcgi_client, dir, 0, &tracks, &ntracks))
248 ntracks = 0;
e13809e4 249 tsd = tracksort_init(ntracks, tracks, "track");
6d9dd8d9 250 for(n = 0; n < ntracks; ++n)
00861dcb 251 disorder_play(dcgi_client, tsd[n].track, &id);
6d9dd8d9
RK
252 }
253 }
254 redirect(0);
255}
256
257static int clamp(int n, int min, int max) {
258 if(n < min)
259 return min;
260 if(n > max)
261 return max;
262 return n;
263}
264
59cf25c4 265/*$ volume
5c1ae3bc
RK
266 *
267 * If the \fBdelta\fR argument is set: adjust both channels by that amount (up
268 * if positive, down if negative).
269 *
270 * Otherwise if \fBleft\fR and \fBright\fR are set, set the channels
271 * independently to those values.
272 */
6d9dd8d9
RK
273static void act_volume(void) {
274 const char *l, *r, *d;
275 int nd;
276
277 if(dcgi_client) {
278 if((d = cgi_get("delta"))) {
279 dcgi_lookup(DCGI_VOLUME);
280 nd = clamp(atoi(d), -255, 255);
281 disorder_set_volume(dcgi_client,
282 clamp(dcgi_volume_left + nd, 0, 255),
283 clamp(dcgi_volume_right + nd, 0, 255));
284 } else if((l = cgi_get("left")) && (r = cgi_get("right")))
285 disorder_set_volume(dcgi_client, atoi(l), atoi(r));
286 }
287 redirect(0);
288}
289
e7ce7665 290/** @brief Expand the login template with @b @@error set to @p error
b7e452c7 291 * @param e Error keyword
e7ce7665 292 */
b7e452c7
RK
293static void login_error(const char *e) {
294 dcgi_error_string = e;
e7ce7665
RK
295 dcgi_expand("login", 1);
296}
297
298/** @brief Log in
299 * @param username Login name
300 * @param password Password
301 * @return 0 on success, non-0 on error
302 *
303 * On error, calls login_error() to expand the login template.
304 */
305static int login_as(const char *username, const char *password) {
306 disorder_client *c;
307
308 if(dcgi_cookie && dcgi_client)
309 disorder_revoke(dcgi_client);
310 /* We'll need a new connection as we are going to stop being guest */
311 c = disorder_new(0);
312 if(disorder_connect_user(c, username, password)) {
313 login_error("loginfailed");
314 return -1;
315 }
316 /* Generate a cookie so we can log in again later */
317 if(disorder_make_cookie(c, &dcgi_cookie)) {
318 login_error("cookiefailed");
319 return -1;
320 }
321 /* Use the new connection henceforth */
322 dcgi_client = c;
323 dcgi_lookup_reset();
324 return 0; /* OK */
325}
326
59cf25c4 327/*$ login
5c1ae3bc
RK
328 *
329 * If \fBusername\fR and \fBpassword\fR are set (and the username isn't
330 * "guest") then attempt to log in using those credentials. On success,
331 * redirects to the \fBback\fR argument if that is set, or just expands
332 * \fIlogin.tmpl\fI otherwise, with \fB@status\fR set to \fBloginok\fR.
333 *
334 * If they aren't set then just expands \fIlogin.tmpl\fI.
335 */
e7ce7665
RK
336static void act_login(void) {
337 const char *username, *password;
338
339 /* We try all this even if not connected since the subsequent connection may
340 * succeed. */
341
342 username = cgi_get("username");
343 password = cgi_get("password");
344 if(!username
345 || !password
346 || !strcmp(username, "guest")/*bodge to avoid guest cookies*/) {
347 /* We're just visiting the login page, not performing an action at all. */
348 dcgi_expand("login", 1);
349 return;
350 }
351 if(!login_as(username, password)) {
352 /* Report the succesful login */
353 dcgi_status_string = "loginok";
2cc4c0ef
RK
354 /* Redirect back to where we came from, if necessary */
355 if(cgi_get("back"))
356 redirect(0);
357 else
358 dcgi_expand("login", 1);
e7ce7665
RK
359 }
360}
361
59cf25c4 362/*$ logout
5c1ae3bc
RK
363 *
364 * Logs out the current user and expands \fIlogin.tmpl\fR with \fBstatus\fR or
365 * \fB@error\fR set according to the result.
366 */
e7ce7665
RK
367static void act_logout(void) {
368 if(dcgi_client) {
369 /* Ask the server to revoke the cookie */
370 if(!disorder_revoke(dcgi_client))
371 dcgi_status_string = "logoutok";
372 else
373 dcgi_error_string = "revokefailed";
374 } else {
375 /* We can't guarantee a logout if we can't connect to the server to revoke
376 * the cookie, so we report an error. We'll still ask the browser to
377 * forget the cookie though. */
378 dcgi_error_string = "connect";
379 }
380 /* Attempt to reconnect without the cookie */
381 dcgi_cookie = 0;
382 dcgi_login();
383 /* Back to login page, hopefuly forcing the browser to forget the cookie. */
384 dcgi_expand("login", 1);
385}
386
59cf25c4 387/*$ register
5c1ae3bc
RK
388 *
389 * Register a new user using \fBusername\fR, \fBpassword1\fR, \fBpassword2\fR
390 * and \fBemail\fR and expands \fIlogin.tmpl\fR with \fBstatus\fR or
391 * \fB@error\fR set according to the result.
392 */
e7ce7665
RK
393static void act_register(void) {
394 const char *username, *password, *password2, *email;
395 char *confirm, *content_type;
396 const char *text, *encoding, *charset;
397
398 /* If we're not connected then this is a hopeless exercise */
399 if(!dcgi_client) {
400 login_error("connect");
401 return;
402 }
403
404 /* Collect arguments */
405 username = cgi_get("username");
406 password = cgi_get("password1");
407 password2 = cgi_get("password2");
408 email = cgi_get("email");
409
410 /* Verify arguments */
411 if(!username || !*username) {
412 login_error("nousername");
413 return;
414 }
415 if(!password || !*password) {
416 login_error("nopassword");
417 return;
418 }
419 if(!password2 || !*password2 || strcmp(password, password2)) {
420 login_error("passwordmismatch");
421 return;
422 }
423 if(!email || !*email) {
424 login_error("noemail");
425 return;
426 }
427 /* We could well do better address validation but for now we'll just do the
5f2d537c 428 * minimum */
33e95f03 429 if(!email_valid(email)) {
e7ce7665
RK
430 login_error("bademail");
431 return;
432 }
433 if(disorder_register(dcgi_client, username, password, email, &confirm)) {
434 login_error("cannotregister");
435 return;
436 }
437 /* Send the user a mail */
438 /* TODO templatize this */
439 byte_xasprintf((char **)&text,
440 "Welcome to DisOrder. To active your login, please visit this URL:\n"
441 "\n"
442 "%s?c=%s\n", config->url, urlencodestring(confirm));
443 if(!(text = mime_encode_text(text, &charset, &encoding)))
2e9ba080 444 disorder_fatal(0, "cannot encode email");
e7ce7665
RK
445 byte_xasprintf(&content_type, "text/plain;charset=%s",
446 quote822(charset, 0));
447 sendmail("", config->mail_sender, email, "Welcome to DisOrder",
448 encoding, content_type, text); /* TODO error checking */
449 /* We'll go back to the login page with a suitable message */
450 dcgi_status_string = "registered";
451 dcgi_expand("login", 1);
452}
453
59cf25c4 454/*$ confirm
5c1ae3bc
RK
455 *
456 * Confirm a user registration using the nonce supplied in \fBc\fR and expands
457 * \fIlogin.tmpl\fR with \fBstatus\fR or \fB@error\fR set according to the
458 * result.
459 */
e7ce7665
RK
460static void act_confirm(void) {
461 const char *confirmation;
462
463 /* If we're not connected then this is a hopeless exercise */
464 if(!dcgi_client) {
465 login_error("connect");
466 return;
467 }
468
469 if(!(confirmation = cgi_get("c"))) {
470 login_error("noconfirm");
471 return;
472 }
473 /* Confirm our registration */
474 if(disorder_confirm(dcgi_client, confirmation)) {
475 login_error("badconfirm");
476 return;
477 }
478 /* Get a cookie */
479 if(disorder_make_cookie(dcgi_client, &dcgi_cookie)) {
480 login_error("cookiefailed");
481 return;
482 }
483 /* Junk cached data */
484 dcgi_lookup_reset();
485 /* Report success */
486 dcgi_status_string = "confirmed";
487 dcgi_expand("login", 1);
488}
489
59cf25c4 490/*$ edituser
5c1ae3bc
RK
491 *
492 * Edit user details using \fBusername\fR, \fBchangepassword1\fR,
493 * \fBchangepassword2\fR and \fBemail\fR and expands \fIlogin.tmpl\fR with
494 * \fBstatus\fR or \fB@error\fR set according to the result.
495 */
e7ce7665
RK
496static void act_edituser(void) {
497 const char *email = cgi_get("email"), *password = cgi_get("changepassword1");
498 const char *password2 = cgi_get("changepassword2");
499 int newpassword = 0;
500
501 /* If we're not connected then this is a hopeless exercise */
502 if(!dcgi_client) {
503 login_error("connect");
504 return;
505 }
506
507 /* Verify input */
508
509 /* If either password or password2 is set we insist they match. If they
510 * don't we report an error. */
511 if((password && *password) || (password2 && *password2)) {
512 if(!password || !password2 || strcmp(password, password2)) {
513 login_error("passwordmismatch");
514 return;
515 }
516 } else
517 password = password2 = 0;
33e95f03 518 if(email && !email_valid(email)) {
e7ce7665
RK
519 login_error("bademail");
520 return;
521 }
522
523 /* Commit changes */
524 if(email) {
525 if(disorder_edituser(dcgi_client, disorder_user(dcgi_client),
526 "email", email)) {
527 login_error("badedit");
528 return;
529 }
530 }
531 if(password) {
532 if(disorder_edituser(dcgi_client, disorder_user(dcgi_client),
533 "password", password)) {
534 login_error("badedit");
535 return;
536 }
537 newpassword = 1;
538 }
539
540 if(newpassword) {
541 /* If we changed the password, the cookie is now invalid, so we must log
542 * back in. */
543 if(login_as(disorder_user(dcgi_client), password))
544 return;
545 }
546 /* Report success */
547 dcgi_status_string = "edited";
548 dcgi_expand("login", 1);
549}
550
59cf25c4 551/*$ reminder
5c1ae3bc
RK
552 *
553 * Issue an email password reminder to \fBusername\fR and expands
554 * \fIlogin.tmpl\fR with \fBstatus\fR or \fB@error\fR set according to the
555 * result.
556 */
e7ce7665
RK
557static void act_reminder(void) {
558 const char *const username = cgi_get("username");
559
560 /* If we're not connected then this is a hopeless exercise */
561 if(!dcgi_client) {
562 login_error("connect");
563 return;
564 }
565
566 if(!username || !*username) {
567 login_error("nousername");
568 return;
569 }
570 if(disorder_reminder(dcgi_client, username)) {
571 login_error("reminderfailed");
572 return;
573 }
574 /* Report success */
575 dcgi_status_string = "reminded";
576 dcgi_expand("login", 1);
577}
578
02eaa49d
RK
579/** @brief Get the numbered version of an argument
580 * @param argname Base argument name
581 * @param numfile File number
582 * @return cgi_get(NUMFILE_ARGNAME)
583 */
584static const char *numbered_arg(const char *argname, int numfile) {
585 char *fullname;
586
587 byte_xasprintf(&fullname, "%d_%s", numfile, argname);
588 return cgi_get(fullname);
589}
590
591/** @brief Set preferences for file @p numfile
592 * @return 0 on success, -1 if there is no such track number
593 *
594 * The old @b nfiles parameter has been abolished, we just keep look for more
595 * files until we run out.
596 */
597static int process_prefs(int numfile) {
598 const char *file, *name, *value, *part, *parts, *context;
599 char **partslist;
600
601 if(!(file = numbered_arg("track", numfile)))
602 return -1;
603 if(!(parts = cgi_get("parts")))
604 parts = "artist album title";
605 if(!(context = cgi_get("context")))
606 context = "display";
607 partslist = split(parts, 0, 0, 0, 0);
608 while((part = *partslist++)) {
609 if(!(value = numbered_arg(part, numfile)))
610 continue;
611 byte_xasprintf((char **)&name, "trackname_%s_%s", context, part);
612 disorder_set(dcgi_client, file, name, value);
613 }
9efa107e 614 if(numbered_arg("random", numfile))
02eaa49d
RK
615 disorder_unset(dcgi_client, file, "pick_at_random");
616 else
617 disorder_set(dcgi_client, file, "pick_at_random", "0");
618 if((value = numbered_arg("tags", numfile))) {
619 if(!*value)
620 disorder_unset(dcgi_client, file, "tags");
621 else
622 disorder_set(dcgi_client, file, "tags", value);
623 }
624 if((value = numbered_arg("weight", numfile))) {
625 if(!*value)
626 disorder_unset(dcgi_client, file, "weight");
627 else
628 disorder_set(dcgi_client, file, "weight", value);
629 }
630 return 0;
631}
632
59cf25c4 633/*$ prefs
5c1ae3bc
RK
634 *
635 * Set preferences on a number of tracks.
636 *
637 * The tracks to modify are specified in arguments \fB0_track\fR, \fB1_track\fR
638 * etc. The number sequence must be contiguous and start from 0.
639 *
640 * For each track \fIINDEX\fB_track\fR:
641 * - \fIINDEX\fB_\fIPART\fR is used to set the trackname preference for
642 * that part. (See \fBparts\fR below.)
643 * - \fIINDEX\fB_\fIrandom\fR if present enables random play for this track
644 * or disables it if absent.
645 * - \fIINDEX\fB_\fItags\fR sets the list of tags for this track.
646 * - \fIINDEX\fB_\fIweight\fR sets the weight for this track.
647 *
648 * \fBparts\fR can be set to the track name parts to modify. The default is
649 * "artist album title".
650 *
651 * \fBcontext\fR can be set to the context to modify. The default is
652 * "display".
653 *
654 * If the server detects a preference being set to its default, it removes the
655 * preference, thus keeping the database tidy.
656 */
02eaa49d
RK
657static void act_set(void) {
658 int numfile;
659
660 if(dcgi_client) {
661 for(numfile = 0; !process_prefs(numfile); ++numfile)
662 ;
663 }
664 redirect(0);
665}
666
bca4e2b7
RK
667/** @brief Table of actions */
668static const struct action {
669 /** @brief Action name */
670 const char *name;
671 /** @brief Action handler */
672 void (*handler)(void);
02eaa49d
RK
673 /** @brief Union of suitable rights */
674 rights_type rights;
bca4e2b7 675} actions[] = {
02eaa49d
RK
676 { "confirm", act_confirm, 0 },
677 { "disable", act_disable, RIGHT_GLOBAL_PREFS },
678 { "edituser", act_edituser, 0 },
679 { "enable", act_enable, RIGHT_GLOBAL_PREFS },
680 { "login", act_login, 0 },
681 { "logout", act_logout, 0 },
682 { "manage", act_playing, 0 },
683 { "move", act_move, RIGHT_MOVE__MASK },
684 { "pause", act_pause, RIGHT_PAUSE },
685 { "play", act_play, RIGHT_PLAY },
686 { "playing", act_playing, 0 },
687 { "randomdisable", act_random_disable, RIGHT_GLOBAL_PREFS },
688 { "randomenable", act_random_enable, RIGHT_GLOBAL_PREFS },
689 { "register", act_register, 0 },
690 { "reminder", act_reminder, 0 },
691 { "remove", act_remove, RIGHT_MOVE__MASK|RIGHT_SCRATCH__MASK },
692 { "resume", act_resume, RIGHT_PAUSE },
693 { "set", act_set, RIGHT_PREFS },
694 { "volume", act_volume, RIGHT_VOLUME },
bca4e2b7
RK
695};
696
40dcd866
RK
697/** @brief Check that an action name is valid
698 * @param name Action
699 * @return 1 if valid, 0 if not
700 */
701static int dcgi_valid_action(const char *name) {
702 int c;
703
704 /* First character must be letter or digit (this also requires there to _be_
705 * a first character) */
706 if(!isalnum((unsigned char)*name))
707 return 0;
708 /* Only letters, digits, '.' and '-' allowed */
709 while((c = (unsigned char)*name++)) {
710 if(!(isalnum(c)
711 || c == '.'
712 || c == '_'))
713 return 0;
714 }
715 return 1;
716}
717
bca4e2b7
RK
718/** @brief Expand a template
719 * @param name Base name of template, or NULL to consult CGI args
e7ce7665 720 * @param header True to write header
bca4e2b7 721 */
e7ce7665 722void dcgi_expand(const char *name, int header) {
99955407 723 const char *p, *found;
0d0253c9
RK
724
725 /* Parse macros first */
f2d306b4
RK
726 if((found = mx_find("macros.tmpl", 1/*report*/)))
727 mx_expand_file(found, sink_discard(), 0);
728 if((found = mx_find("user.tmpl", 0/*report*/)))
99955407 729 mx_expand_file(found, sink_discard(), 0);
bca4e2b7 730 /* For unknown actions check that they aren't evil */
40dcd866 731 if(!dcgi_valid_action(name))
2e9ba080 732 disorder_fatal(0, "invalid action name '%s'", name);
71634563 733 byte_xasprintf((char **)&p, "%s.tmpl", name);
f2d306b4 734 if(!(found = mx_find(p, 0/*report*/)))
2e9ba080 735 disorder_fatal(errno, "cannot find %s", p);
e7ce7665 736 if(header) {
10921eba 737 if(printf("Content-Type: text/html; charset=UTF-8\n"
e7ce7665
RK
738 "%s\n"
739 "\n", dcgi_cookie_header()) < 0)
2e9ba080 740 disorder_fatal(errno, "error writing to stdout");
e7ce7665 741 }
99955407 742 if(mx_expand_file(found, sink_stdio("stdout", stdout), 0) == -1
bca4e2b7 743 || fflush(stdout) < 0)
2e9ba080 744 disorder_fatal(errno, "error writing to stdout");
bca4e2b7
RK
745}
746
747/** @brief Execute a web action
748 * @param action Action to perform, or NULL to consult CGI args
749 *
750 * If no recognized action is specified then 'playing' is assumed.
751 */
1e97629d 752void dcgi_action(const char *action) {
bca4e2b7 753 int n;
bca4e2b7
RK
754
755 /* Consult CGI args if caller had no view */
756 if(!action)
757 action = cgi_get("action");
758 /* Pick a default if nobody cares at all */
759 if(!action) {
760 /* We allow URLs which are just c=... in order to keep confirmation URLs,
761 * which are user-facing, as short as possible. Actually we could lose the
762 * c= for this... */
763 if(cgi_get("c"))
764 action = "confirm";
765 else
766 action = "playing";
5a7df048
RK
767 /* Make sure 'action' is always set */
768 cgi_set("action", action);
bca4e2b7 769 }
ba937f01 770 if((n = TABLE_FIND(actions, name, action)) >= 0) {
02eaa49d
RK
771 if(actions[n].rights) {
772 /* Some right or other is required */
773 dcgi_lookup(DCGI_RIGHTS);
774 if(!(actions[n].rights & dcgi_rights)) {
2cc4c0ef 775 const char *back = cgi_thisurl(config->url);
02eaa49d 776 /* Failed operations jump you to the login screen with an error
2cc4c0ef
RK
777 * message. On success, the user comes back to the page they were
778 * after. */
779 cgi_clear();
780 cgi_set("back", back);
02eaa49d
RK
781 login_error("noright");
782 return;
783 }
784 }
785 /* It's a known action */
bca4e2b7 786 actions[n].handler();
02eaa49d 787 } else {
bca4e2b7 788 /* Just expand the template */
e7ce7665 789 dcgi_expand(action, 1/*header*/);
448d3570 790 }
bca4e2b7
RK
791}
792
793/** @brief Generate an error page */
0d0253c9
RK
794void dcgi_error(const char *key) {
795 dcgi_error_string = xstrdup(key);
e7ce7665 796 dcgi_expand("error", 1);
bca4e2b7
RK
797}
798
799/*
800Local Variables:
801c-basic-offset:2
802comment-column:40
803fill-column:79
804indent-tabs-mode:nil
805End:
806*/