Removed payload log msg for well-formed payload
[pazpar2-moved-to-github.git] / src / http_command.c
1 /* $Id: http_command.c,v 1.45 2007-06-04 14:27:48 adam Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 /*
23  * $Id: http_command.c,v 1.45 2007-06-04 14:27:48 adam Exp $
24  */
25
26 #include <stdio.h>
27 #include <sys/types.h>
28 #include <sys/uio.h>
29 #include <unistd.h>
30 #include <stdlib.h>
31 #include <strings.h>
32 #include <ctype.h>
33 #include <sys/time.h>
34 #include <yaz/snprintf.h>
35 #if HAVE_CONFIG_H
36 #include <cconfig.h>
37 #endif
38
39 #include <yaz/yaz-util.h>
40
41 #include "config.h"
42 #include "util.h"
43 #include "eventl.h"
44 #include "pazpar2.h"
45 #include "http.h"
46 #include "http_command.h"
47 #include "settings.h"
48 #include "client.h"
49
50 // Update this when the protocol changes
51 #define PAZPAR2_PROTOCOL_VERSION "1"
52
53 struct http_session {
54     IOCHAN timeout_iochan;     // NOTE: This is NOT associated with a socket
55     struct session *psession;
56     unsigned int session_id;
57     int timestamp;
58     NMEM nmem;
59     struct http_session *next;
60 };
61
62 static struct http_session *session_list = 0;
63
64 void http_session_destroy(struct http_session *s);
65
66 static void session_timeout(IOCHAN i, int event)
67 {
68     struct http_session *s = iochan_getdata(i);
69     http_session_destroy(s);
70 }
71
72 struct http_session *http_session_create()
73 {
74     NMEM nmem = nmem_create();
75     struct http_session *r = nmem_malloc(nmem, sizeof(*r));
76
77     r->psession = new_session(nmem);
78     r->session_id = 0;
79     r->timestamp = 0;
80     r->nmem = nmem;
81     r->next = session_list;
82     session_list = r;
83     r->timeout_iochan = iochan_create(-1, session_timeout, 0);
84     iochan_setdata(r->timeout_iochan, r);
85     iochan_settimeout(r->timeout_iochan, global_parameters.session_timeout);
86
87     pazpar2_add_channel(r->timeout_iochan);
88     return r;
89 }
90
91 void http_session_destroy(struct http_session *s)
92 {
93     struct http_session **p;
94
95     for (p = &session_list; *p; p = &(*p)->next)
96         if (*p == s)
97         {
98             *p = (*p)->next;
99             break;
100         }
101     iochan_destroy(s->timeout_iochan);
102     destroy_session(s->psession);
103     nmem_destroy(s->nmem);
104 }
105
106 static void error(struct http_response *rs, 
107                   const char *code, const char *msg, const char *extra)
108 {
109     struct http_channel *c = rs->channel;
110     char text[1024];
111     char *sep = extra ? ": " : "";
112
113     rs->msg = nmem_strdup(c->nmem, msg);
114     strcpy(rs->code, code);
115
116     yaz_snprintf(text, sizeof(text),
117                  "<error code=\"general\">%s%s%s</error>", msg, sep,
118                  extra ? extra : "");
119
120     yaz_log(YLOG_WARN, "HTTP %s %s%s%s", code, msg, sep,
121             extra ? extra : "");
122     rs->payload = nmem_strdup(c->nmem, text);
123     http_send_response(c);
124 }
125
126 unsigned int make_sessionid()
127 {
128     static int seq = 0;
129     unsigned int res;
130
131     seq++;
132     if (global_parameters.debug_mode)
133         res = seq;
134     else
135     {
136         struct timeval t;
137
138         if (gettimeofday(&t, 0) < 0)
139         {
140             yaz_log(YLOG_WARN|YLOG_ERRNO, "gettimeofday");
141             exit(1);
142         }
143         /* at most 256 sessions per second .. 
144            (long long would be more appropriate)*/
145         res = t.tv_sec;
146         res = ((res << 8) | (seq & 0xff)) & ((1U << 31) - 1);
147     }
148     return res;
149 }
150
151 static struct http_session *locate_session(struct http_request *rq, struct http_response *rs)
152 {
153     struct http_session *p;
154     char *session = http_argbyname(rq, "session");
155     unsigned int id;
156
157     if (!session)
158     {
159         error(rs, "417", "Must supply session", 0);
160         return 0;
161     }
162     id = atoi(session);
163     for (p = session_list; p; p = p->next)
164         if (id == p->session_id)
165         {
166             iochan_activity(p->timeout_iochan);
167             return p;
168         }
169     error(rs, "417", "Session does not exist, or it has expired", 0);
170     return 0;
171 }
172
173 // Decode settings parameters and apply to session
174 // Syntax: setting[target]=value
175 static int process_settings(struct session *se, struct http_request *rq,
176         struct http_response *rs)
177 {
178     struct http_argument *a;
179
180     for (a = rq->arguments; a; a = a->next)
181         if (strchr(a->name, '['))
182         {
183             char **res;
184             int num;
185             char *dbname;
186             char *setting;
187
188             // Nmem_strsplit *rules*!!!
189             nmem_strsplit(se->session_nmem, "[]", a->name, &res, &num);
190             if (num != 2)
191             {
192                 error(rs, "417", "Malformed setting argument", a->name);
193                 return -1;
194             }
195             setting = res[0];
196             dbname = res[1];
197             session_apply_setting(se, dbname, setting,
198                     nmem_strdup(se->session_nmem, a->value));
199         }
200     return 0;
201 }
202
203 static void cmd_exit(struct http_channel *c)
204 {
205     yaz_log(YLOG_WARN, "exit");
206     exit(0);
207 }
208
209 static void cmd_init(struct http_channel *c)
210 {
211     unsigned int sesid;
212     char buf[1024];
213     struct http_session *s = http_session_create();
214     struct http_response *rs = c->response;
215
216     yaz_log(YLOG_DEBUG, "HTTP Session init");
217     sesid = make_sessionid();
218     s->session_id = sesid;
219     if (process_settings(s->psession, c->request, c->response) < 0)
220         return;
221     sprintf(buf, "<init><status>OK</status><session>%u</session>"
222             "<protocol>" PAZPAR2_PROTOCOL_VERSION "</protocol></init>", sesid);
223     rs->payload = nmem_strdup(c->nmem, buf);
224     http_send_response(c);
225 }
226
227 static void cmd_settings(struct http_channel *c)
228 {
229     struct http_response *rs = c->response;
230     struct http_request *rq = c->request;
231     struct http_session *s = locate_session(rq, rs);
232
233     if (!s)
234         return;
235
236     if (process_settings(s->psession, rq, rs) < 0)
237         return;
238     rs->payload = "<settings><status>OK</status></settings>";
239     http_send_response(c);
240 }
241
242 // Compares two hitsbytarget nodes by hitcount
243 static int cmp_ht(const void *p1, const void *p2)
244 {
245     const struct hitsbytarget *h1 = p1;
246     const struct hitsbytarget *h2 = p2;
247     return h2->hits - h1->hits;
248 }
249
250 // This implements functionality somewhat similar to 'bytarget', but in a termlist form
251 static void targets_termlist(WRBUF wrbuf, struct session *se, int num)
252 {
253     struct hitsbytarget *ht;
254     int count, i;
255
256     if (!(ht = hitsbytarget(se, &count)))
257         return;
258     qsort(ht, count, sizeof(struct hitsbytarget), cmp_ht);
259     for (i = 0; i < count && i < num && ht[i].hits > 0; i++)
260     {
261         wrbuf_puts(wrbuf, "\n<term>\n");
262         wrbuf_printf(wrbuf, "<id>%s</id>\n", ht[i].id);
263         wrbuf_puts(wrbuf, "<name>");
264         wrbuf_xmlputs(wrbuf, ht[i].name);
265         wrbuf_puts(wrbuf, "</name>\n");
266
267         wrbuf_printf(wrbuf, "<frequency>%d</frequency>\n", ht[i].hits);
268         wrbuf_printf(wrbuf, "<state>%s</state>\n", ht[i].state);
269         wrbuf_printf(wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
270         wrbuf_puts(wrbuf, "\n</term>\n");
271     }
272 }
273
274 static void cmd_termlist(struct http_channel *c)
275 {
276     struct http_response *rs = c->response;
277     struct http_request *rq = c->request;
278     struct http_session *s = locate_session(rq, rs);
279     struct termlist_score **p;
280     int len;
281     int i;
282     char *name = http_argbyname(rq, "name");
283     char *nums = http_argbyname(rq, "num");
284     int num = 15;
285     int status;
286
287     if (!s)
288         return;
289
290     status = session_active_clients(s->psession);
291
292     if (!name)
293         name = "subject";
294     if (strlen(name) > 255)
295         return;
296     if (nums)
297         num = atoi(nums);
298
299     wrbuf_rewind(c->wrbuf);
300
301     wrbuf_puts(c->wrbuf, "<termlist>");
302     wrbuf_printf(c->wrbuf, "\n<activeclients>%d</activeclients>", status);
303     while (*name)
304     {
305         char tname[256];
306         char *tp;
307
308         if (!(tp = strchr(name, ',')))
309             tp = name + strlen(name);
310         strncpy(tname, name, tp - name);
311         tname[tp - name] = '\0';
312
313         wrbuf_puts(c->wrbuf, "\n<list name=\"");
314         wrbuf_xmlputs(c->wrbuf, tname);
315         wrbuf_puts(c->wrbuf, "\">\n");
316         if (!strcmp(tname, "xtargets"))
317             targets_termlist(c->wrbuf, s->psession, num);
318         else
319         {
320             p = termlist(s->psession, tname, &len);
321             if (p)
322                 for (i = 0; i < len && i < num; i++)
323                 {
324                     wrbuf_puts(c->wrbuf, "\n<term>");
325                     wrbuf_puts(c->wrbuf, "<name>");
326                     wrbuf_xmlputs(c->wrbuf, p[i]->term);
327                     wrbuf_puts(c->wrbuf, "</name>");
328
329                     wrbuf_printf(c->wrbuf, "<frequency>%d</frequency>", p[i]->frequency);
330                     wrbuf_puts(c->wrbuf, "</term>");
331                 }
332         }
333         wrbuf_puts(c->wrbuf, "\n</list>");
334         name = tp;
335         if (*name == ',')
336             name++;
337     }
338     wrbuf_puts(c->wrbuf, "</termlist>");
339     rs->payload = nmem_strdup(rq->channel->nmem, wrbuf_cstr(c->wrbuf));
340     http_send_response(c);
341 }
342
343
344 static void cmd_bytarget(struct http_channel *c)
345 {
346     struct http_response *rs = c->response;
347     struct http_request *rq = c->request;
348     struct http_session *s = locate_session(rq, rs);
349     struct hitsbytarget *ht;
350     int count, i;
351
352     if (!s)
353         return;
354     if (!(ht = hitsbytarget(s->psession, &count)))
355     {
356         error(rs, "500", "Failed to retrieve hitcounts", 0);
357         return;
358     }
359     wrbuf_rewind(c->wrbuf);
360     wrbuf_puts(c->wrbuf, "<bytarget><status>OK</status>");
361
362     for (i = 0; i < count; i++)
363     {
364         wrbuf_puts(c->wrbuf, "\n<target>");
365         wrbuf_printf(c->wrbuf, "<id>%s</id>\n", ht[i].id);
366         wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", ht[i].hits);
367         wrbuf_printf(c->wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
368         wrbuf_printf(c->wrbuf, "<records>%d</records>\n", ht[i].records);
369         wrbuf_printf(c->wrbuf, "<state>%s</state>\n", ht[i].state);
370         wrbuf_puts(c->wrbuf, "</target>");
371     }
372
373     wrbuf_puts(c->wrbuf, "</bytarget>");
374     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
375     http_send_response(c);
376 }
377
378 static void write_metadata(WRBUF w, struct conf_service *service,
379         struct record_metadata **ml, int full)
380 {
381     int imeta;
382
383     for (imeta = 0; imeta < service->num_metadata; imeta++)
384     {
385         struct conf_metadata *cmd = &service->metadata[imeta];
386         struct record_metadata *md;
387         if (!cmd->brief && !full)
388             continue;
389         for (md = ml[imeta]; md; md = md->next)
390         {
391             wrbuf_printf(w, "\n<md-%s>", cmd->name);
392             switch (cmd->type)
393             {
394                 case Metadata_type_generic:
395                     wrbuf_puts(w, md->data.text);
396                     break;
397                 case Metadata_type_year:
398                     wrbuf_printf(w, "%d", md->data.number.min);
399                     if (md->data.number.min != md->data.number.max)
400                         wrbuf_printf(w, "-%d", md->data.number.max);
401                     break;
402                 default:
403                     wrbuf_puts(w, "[can't represent]");
404             }
405             wrbuf_printf(w, "</md-%s>", cmd->name);
406         }
407     }
408 }
409
410 static void write_subrecord(struct record *r, WRBUF w,
411         struct conf_service *service, int show_details)
412 {
413     char *name = session_setting_oneval(client_get_database(r->client), PZ_NAME);
414
415     wrbuf_printf(w, "<location id=\"");
416     wrbuf_xmlputs(w, client_get_database(r->client)->database->url);
417     wrbuf_puts(w, "\" ");
418
419     wrbuf_printf(w, "name=\"");
420
421     wrbuf_xmlputs(w,  *name ? name : "Unknown");
422     wrbuf_printf(w, "\">");
423     if (show_details)
424         write_metadata(w, service, r->metadata, 1);
425     wrbuf_puts(w, "</location>\n");
426 }
427
428 static void cmd_record(struct http_channel *c)
429 {
430     struct http_response *rs = c->response;
431     struct http_request *rq = c->request;
432     struct http_session *s = locate_session(rq, rs);
433     struct record_cluster *rec;
434     struct record *r;
435     struct conf_service *service = global_parameters.server->service;
436     char *idstr = http_argbyname(rq, "id");
437     int id;
438
439     if (!s)
440         return;
441     if (!idstr)
442     {
443         error(rs, "417", "Must supply id", 0);
444         return;
445     }
446     wrbuf_rewind(c->wrbuf);
447     id = atoi(idstr);
448     if (!(rec = show_single(s->psession, id)))
449     {
450         error(rs, "500", "Record missing", 0);
451         return;
452     }
453     wrbuf_puts(c->wrbuf, "<record>\n");
454     wrbuf_printf(c->wrbuf, "<recid>%d</recid>", rec->recid);
455     write_metadata(c->wrbuf, service, rec->metadata, 1);
456     for (r = rec->records; r; r = r->next)
457         write_subrecord(r, c->wrbuf, service, 1);
458     wrbuf_puts(c->wrbuf, "</record>\n");
459     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
460     http_send_response(c);
461 }
462
463 static void show_records(struct http_channel *c, int active)
464 {
465     struct http_request *rq = c->request;
466     struct http_response *rs = c->response;
467     struct http_session *s = locate_session(rq, rs);
468     struct record_cluster **rl;
469     struct reclist_sortparms *sp;
470     char *start = http_argbyname(rq, "start");
471     char *num = http_argbyname(rq, "num");
472     char *sort = http_argbyname(rq, "sort");
473     int startn = 0;
474     int numn = 20;
475     int total;
476     int total_hits;
477     int i;
478
479     if (!s)
480         return;
481
482     // We haven't counted clients yet if we're called on a block release
483     if (active < 0)
484         active = session_active_clients(s->psession);
485
486     if (start)
487         startn = atoi(start);
488     if (num)
489         numn = atoi(num);
490     if (!sort)
491         sort = "relevance";
492     if (!(sp = reclist_parse_sortparms(c->nmem, sort)))
493     {
494         error(rs, "500", "Bad sort parameters", 0);
495         return;
496     }
497
498     rl = show(s->psession, sp, startn, &numn, &total, &total_hits, c->nmem);
499
500     wrbuf_rewind(c->wrbuf);
501     wrbuf_puts(c->wrbuf, "<show>\n<status>OK</status>\n");
502     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", active);
503     wrbuf_printf(c->wrbuf, "<merged>%d</merged>\n", total);
504     wrbuf_printf(c->wrbuf, "<total>%d</total>\n", total_hits);
505     wrbuf_printf(c->wrbuf, "<start>%d</start>\n", startn);
506     wrbuf_printf(c->wrbuf, "<num>%d</num>\n", numn);
507
508     for (i = 0; i < numn; i++)
509     {
510         int ccount;
511         struct record *p;
512         struct record_cluster *rec = rl[i];
513         struct conf_service *service = global_parameters.server->service;
514
515         wrbuf_puts(c->wrbuf, "<hit>\n");
516         write_metadata(c->wrbuf, service, rec->metadata, 0);
517         for (ccount = 0, p = rl[i]->records; p;  p = p->next, ccount++)
518             write_subrecord(p, c->wrbuf, service, 0); // subrecs w/o details
519         if (ccount > 1)
520             wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
521         wrbuf_printf(c->wrbuf, "<recid>%d</recid>\n", rec->recid);
522         wrbuf_puts(c->wrbuf, "</hit>\n");
523     }
524
525     wrbuf_puts(c->wrbuf, "</show>\n");
526     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
527     http_send_response(c);
528 }
529
530 static void show_records_ready(void *data)
531 {
532     struct http_channel *c = (struct http_channel *) data;
533
534     show_records(c, -1);
535 }
536
537 static void cmd_show(struct http_channel *c)
538 {
539     struct http_request *rq = c->request;
540     struct http_response *rs = c->response;
541     struct http_session *s = locate_session(rq, rs);
542     char *block = http_argbyname(rq, "block");
543     int status;
544
545     if (!s)
546         return;
547
548     status = session_active_clients(s->psession);
549
550     if (block)
551     {
552         if (status && (!s->psession->reclist || !s->psession->reclist->num_records))
553         {
554             session_set_watch(s->psession, SESSION_WATCH_RECORDS, show_records_ready, c);
555             yaz_log(YLOG_DEBUG, "Blocking on cmd_show");
556             return;
557         }
558     }
559
560     show_records(c, status);
561 }
562
563 static void cmd_ping(struct http_channel *c)
564 {
565     struct http_request *rq = c->request;
566     struct http_response *rs = c->response;
567     struct http_session *s = locate_session(rq, rs);
568     if (!s)
569         return;
570     rs->payload = "<ping><status>OK</status></ping>";
571     http_send_response(c);
572 }
573
574 static int utf_8_valid(const char *str)
575 {
576     yaz_iconv_t cd = yaz_iconv_open("utf-8", "utf-8");
577     if (cd)
578     {
579         /* check that query is UTF-8 encoded */
580         char *inbuf = (char *) str; /* we know iconv does not alter this */
581         size_t inbytesleft = strlen(inbuf);
582
583         size_t outbytesleft = strlen(inbuf) + 10;
584         char *out = xmalloc(outbytesleft);
585         char *outbuf = out;
586         size_t r = yaz_iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
587
588         /* if OK, try flushing the rest  */
589         if (r != (size_t) (-1))
590             r = yaz_iconv(cd, 0, 0, &outbuf, &outbytesleft);
591         yaz_iconv_close(cd);
592         xfree(out);
593         if (r == (size_t) (-1))
594             return 0;
595     }
596     return 1;
597 }
598
599 static void cmd_search(struct http_channel *c)
600 {
601     struct http_request *rq = c->request;
602     struct http_response *rs = c->response;
603     struct http_session *s = locate_session(rq, rs);
604     char *query = http_argbyname(rq, "query");
605     char *filter = http_argbyname(rq, "filter");
606     char *res;
607
608     if (!s)
609         return;
610     if (!query)
611     {
612         error(rs, "417", "Must supply query", 0);
613         return;
614     }
615     if (!utf_8_valid(query))
616     {
617         error(rs, "417", "Query not UTF-8 encoded", 0);
618         return;
619     }
620     res = search(s->psession, query, filter);
621     if (res)
622     {
623         error(rs, "417", res, 0);
624         return;
625     }
626     rs->payload = "<search><status>OK</status></search>";
627     http_send_response(c);
628 }
629
630
631 static void cmd_stat(struct http_channel *c)
632 {
633     struct http_request *rq = c->request;
634     struct http_response *rs = c->response;
635     struct http_session *s = locate_session(rq, rs);
636     struct statistics stat;
637     int clients;
638
639     if (!s)
640         return;
641
642     clients = session_active_clients(s->psession);
643     statistics(s->psession, &stat);
644
645     wrbuf_rewind(c->wrbuf);
646     wrbuf_puts(c->wrbuf, "<stat>");
647     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", clients);
648     wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", stat.num_hits);
649     wrbuf_printf(c->wrbuf, "<records>%d</records>\n", stat.num_records);
650     wrbuf_printf(c->wrbuf, "<clients>%d</clients>\n", stat.num_clients);
651     wrbuf_printf(c->wrbuf, "<unconnected>%d</unconnected>\n", stat.num_no_connection);
652     wrbuf_printf(c->wrbuf, "<connecting>%d</connecting>\n", stat.num_connecting);
653     wrbuf_printf(c->wrbuf, "<initializing>%d</initializing>\n", stat.num_initializing);
654     wrbuf_printf(c->wrbuf, "<searching>%d</searching>\n", stat.num_searching);
655     wrbuf_printf(c->wrbuf, "<presenting>%d</presenting>\n", stat.num_presenting);
656     wrbuf_printf(c->wrbuf, "<idle>%d</idle>\n", stat.num_idle);
657     wrbuf_printf(c->wrbuf, "<failed>%d</failed>\n", stat.num_failed);
658     wrbuf_printf(c->wrbuf, "<error>%d</error>\n", stat.num_error);
659     wrbuf_puts(c->wrbuf, "</stat>");
660     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
661     http_send_response(c);
662 }
663
664 static void cmd_info(struct http_channel *c)
665 {
666     char yaz_version_str[20];
667     struct http_response *rs = c->response;
668
669     wrbuf_rewind(c->wrbuf);
670     wrbuf_puts(c->wrbuf, "<info>\n");
671     wrbuf_printf(c->wrbuf, " <version>\n");
672     wrbuf_printf(c->wrbuf, "  <pazpar2>%s</pazpar2>\n", VERSION);
673
674     yaz_version(yaz_version_str, 0);
675     wrbuf_printf(c->wrbuf, "  <yaz compiled=\"%s\">%s</yaz>\n",
676                  YAZ_VERSION, yaz_version_str);
677     wrbuf_printf(c->wrbuf, " </version>\n");
678     
679     wrbuf_puts(c->wrbuf, "</info>");
680     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
681     http_send_response(c);
682 }
683
684 struct {
685     char *name;
686     void (*fun)(struct http_channel *c);
687 } commands[] = {
688     { "init", cmd_init },
689     { "settings", cmd_settings },
690     { "stat", cmd_stat },
691     { "bytarget", cmd_bytarget },
692     { "show", cmd_show },
693     { "search", cmd_search },
694     { "termlist", cmd_termlist },
695     { "exit", cmd_exit },
696     { "ping", cmd_ping },
697     { "record", cmd_record },
698     { "info", cmd_info },
699     {0,0}
700 };
701
702 void http_command(struct http_channel *c)
703 {
704     char *command = http_argbyname(c->request, "command");
705     struct http_response *rs = http_create_response(c);
706     int i;
707
708     c->response = rs;
709
710     http_addheader(rs, "Expires", "Thu, 19 Nov 1981 08:52:00 GMT");
711     http_addheader(rs, "Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
712
713     if (!command)
714     {
715         error(rs, "417", "Must supply command", 0);
716         return;
717     }
718     for (i = 0; commands[i].name; i++)
719         if (!strcmp(commands[i].name, command))
720         {
721             (*commands[i].fun)(c);
722             break;
723         }
724     if (!commands[i].name)
725         error(rs, "417", "Unknown command", command);
726
727     return;
728 }
729
730 /*
731  * Local variables:
732  * c-basic-offset: 4
733  * indent-tabs-mode: nil
734  * End:
735  * vim: shiftwidth=4 tabstop=8 expandtab
736  */