chiark / gitweb /
ac110d841cfb54b5f9b9b4d2a820ecfcf7b173bc
[disorder] / server / dcgi.h
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2005 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #ifndef DCGI_H
22 #define DCGI_H
23
24 typedef struct dcgi_global {
25   disorder_client *client;
26   unsigned flags;
27 #define DC_QUEUE 0x0001
28 #define DC_PLAYING 0x0002
29 #define DC_RECENT 0x0004
30 #define DC_VOLUME 0x0008
31 #define DC_DIRS 0x0010
32 #define DC_FILES 0x0020
33 #define DC_NEW 0x0040
34 #define DC_RIGHTS 0x0080
35   struct queue_entry *queue, *playing, *recent;
36   int volume_left, volume_right;
37   char **files, **dirs;
38   int nfiles, ndirs;
39   char **new;
40   int nnew;
41   rights_type rights;
42 } dcgi_global;
43
44 typedef struct dcgi_state {
45   dcgi_global *g;
46   struct queue_entry *track;
47   struct kvp *pref;
48   int index;
49   int first, last;
50   struct entry *entry;
51   /* for searching */
52   int ntracks;
53   char **tracks;
54   /* for @navigate@ */
55   const char *nav_path;
56   int nav_len, nav_dirlen;
57 } dcgi_state;
58
59 void disorder_cgi(cgi_sink *output, dcgi_state *ds);
60 void disorder_cgi_error(cgi_sink *output, dcgi_state *ds,
61                         const char *msg);
62 void disorder_cgi_login(dcgi_state *ds, cgi_sink *output);
63
64 extern char *login_cookie;
65
66 #endif /* DCGI_H */
67
68 /*
69 Local Variables:
70 c-basic-offset:2
71 comment-column:40
72 End:
73 */