Removed dead code
[pazpar2-moved-to-github.git] / src / http_command.c
1 /* $Id: http_command.c,v 1.50 2007-06-12 09:26:40 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.50 2007-06-12 09:26:40 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
262         // do only print terms which have display names
263     
264         wrbuf_puts(wrbuf, "<term>\n");
265
266         wrbuf_puts(wrbuf, "<id>");
267         wrbuf_xmlputs(wrbuf, ht[i].id);
268         wrbuf_puts(wrbuf, "</id>\n");
269         
270         wrbuf_puts(wrbuf, "<name>");
271         if (!ht[i].name || !ht[i].name[0])
272             wrbuf_xmlputs(wrbuf, "NO TARGET NAME");
273         else
274             wrbuf_xmlputs(wrbuf, ht[i].name);
275         wrbuf_puts(wrbuf, "</name>\n");
276         
277         wrbuf_printf(wrbuf, "<frequency>%d</frequency>\n", ht[i].hits);
278         
279         wrbuf_puts(wrbuf, "<state>");
280         wrbuf_xmlputs(wrbuf, ht[i].state);
281         wrbuf_puts(wrbuf, "</state>\n");
282         
283         wrbuf_printf(wrbuf, "<diagnostic>%d</diagnostic>\n", 
284                      ht[i].diagnostic);
285         wrbuf_puts(wrbuf, "</term>\n");
286     }
287 }
288
289 static void cmd_termlist(struct http_channel *c)
290 {
291     struct http_response *rs = c->response;
292     struct http_request *rq = c->request;
293     struct http_session *s = locate_session(rq, rs);
294     struct termlist_score **p;
295     int len;
296     int i;
297     char *name = http_argbyname(rq, "name");
298     char *nums = http_argbyname(rq, "num");
299     int num = 15;
300     int status;
301
302     if (!s)
303         return;
304
305     status = session_active_clients(s->psession);
306
307     if (!name)
308         name = "subject";
309     if (strlen(name) > 255)
310         return;
311     if (nums)
312         num = atoi(nums);
313
314     wrbuf_rewind(c->wrbuf);
315
316     wrbuf_puts(c->wrbuf, "<termlist>\n");
317     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", status);
318     while (*name)
319     {
320         char tname[256];
321         char *tp;
322
323         if (!(tp = strchr(name, ',')))
324             tp = name + strlen(name);
325         strncpy(tname, name, tp - name);
326         tname[tp - name] = '\0';
327
328         wrbuf_puts(c->wrbuf, "<list name=\"");
329         wrbuf_xmlputs(c->wrbuf, tname);
330         wrbuf_puts(c->wrbuf, "\">\n");
331         if (!strcmp(tname, "xtargets"))
332             targets_termlist(c->wrbuf, s->psession, num);
333         else
334         {
335             p = termlist(s->psession, tname, &len);
336             if (p)
337                 for (i = 0; i < len && i < num; i++){
338                     // prevnt sending empty term elements
339                     if (!p[i]->term || !p[i]->term[0])
340                         continue;
341
342                     wrbuf_puts(c->wrbuf, "<term>");
343                     wrbuf_puts(c->wrbuf, "<name>");
344                     wrbuf_xmlputs(c->wrbuf, p[i]->term);
345                     wrbuf_puts(c->wrbuf, "</name>");
346                         
347                     wrbuf_printf(c->wrbuf, 
348                                  "<frequency>%d</frequency>", 
349                                  p[i]->frequency);
350                     wrbuf_puts(c->wrbuf, "</term>\n");
351                }
352         }
353         wrbuf_puts(c->wrbuf, "</list>\n");
354         name = tp;
355         if (*name == ',')
356             name++;
357     }
358     wrbuf_puts(c->wrbuf, "</termlist>\n");
359     rs->payload = nmem_strdup(rq->channel->nmem, wrbuf_cstr(c->wrbuf));
360     http_send_response(c);
361 }
362
363
364 static void cmd_bytarget(struct http_channel *c)
365 {
366     struct http_response *rs = c->response;
367     struct http_request *rq = c->request;
368     struct http_session *s = locate_session(rq, rs);
369     struct hitsbytarget *ht;
370     int count, i;
371
372     if (!s)
373         return;
374     if (!(ht = hitsbytarget(s->psession, &count)))
375     {
376         error(rs, "500", "Failed to retrieve hitcounts", 0);
377         return;
378     }
379     wrbuf_rewind(c->wrbuf);
380     wrbuf_puts(c->wrbuf, "<bytarget><status>OK</status>");
381
382     for (i = 0; i < count; i++)
383     {
384         wrbuf_puts(c->wrbuf, "\n<target>");
385
386         wrbuf_puts(c->wrbuf, "<id>");
387         wrbuf_xmlputs(c->wrbuf, ht[i].id);
388         wrbuf_puts(c->wrbuf, "</id>\n");
389
390         wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", ht[i].hits);
391         wrbuf_printf(c->wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
392         wrbuf_printf(c->wrbuf, "<records>%d</records>\n", ht[i].records);
393
394         wrbuf_puts(c->wrbuf, "<state>");
395         wrbuf_xmlputs(c->wrbuf, ht[i].state);
396         wrbuf_puts(c->wrbuf, "</state>\n");
397
398         wrbuf_puts(c->wrbuf, "</target>");
399     }
400
401     wrbuf_puts(c->wrbuf, "</bytarget>");
402     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
403     http_send_response(c);
404 }
405
406 static void write_metadata(WRBUF w, struct conf_service *service,
407         struct record_metadata **ml, int full)
408 {
409     int imeta;
410
411     for (imeta = 0; imeta < service->num_metadata; imeta++)
412     {
413         struct conf_metadata *cmd = &service->metadata[imeta];
414         struct record_metadata *md;
415         if (!cmd->brief && !full)
416             continue;
417         for (md = ml[imeta]; md; md = md->next)
418         {
419             wrbuf_printf(w, "\n<md-%s>", cmd->name);
420
421             switch (cmd->type)
422             {
423                 case Metadata_type_generic:
424                     wrbuf_xmlputs(w, md->data.text);
425                     break;
426                 case Metadata_type_year:
427                     wrbuf_printf(w, "%d", md->data.number.min);
428                     if (md->data.number.min != md->data.number.max)
429                         wrbuf_printf(w, "-%d", md->data.number.max);
430                     break;
431                 default:
432                     wrbuf_puts(w, "[can't represent]");
433             }
434             wrbuf_printf(w, "</md-%s>", cmd->name);
435         }
436     }
437 }
438
439 static void write_subrecord(struct record *r, WRBUF w,
440         struct conf_service *service, int show_details)
441 {
442     char *name = session_setting_oneval(client_get_database(r->client), PZ_NAME);
443
444     wrbuf_puts(w, "<location id=\"");
445     wrbuf_xmlputs(w, client_get_database(r->client)->database->url);
446     wrbuf_puts(w, "\" ");
447
448     wrbuf_puts(w, "name=\"");
449     wrbuf_xmlputs(w,  *name ? name : "Unknown");
450     wrbuf_puts(w, "\">");
451
452     if (show_details)
453         write_metadata(w, service, r->metadata, 1);
454     wrbuf_puts(w, "</location>\n");
455 }
456
457 static void cmd_record(struct http_channel *c)
458 {
459     struct http_response *rs = c->response;
460     struct http_request *rq = c->request;
461     struct http_session *s = locate_session(rq, rs);
462     struct record_cluster *rec;
463     struct record *r;
464     struct conf_service *service = global_parameters.server->service;
465     char *idstr = http_argbyname(rq, "id");
466     int id;
467
468     if (!s)
469         return;
470     if (!idstr)
471     {
472         error(rs, "417", "Must supply id", 0);
473         return;
474     }
475     wrbuf_rewind(c->wrbuf);
476     id = atoi(idstr);
477     if (!(rec = show_single(s->psession, id)))
478     {
479         error(rs, "500", "Record missing", 0);
480         return;
481     }
482     wrbuf_puts(c->wrbuf, "<record>\n");
483     wrbuf_printf(c->wrbuf, "<recid>%d</recid>\n", rec->recid);
484     write_metadata(c->wrbuf, service, rec->metadata, 1);
485     for (r = rec->records; r; r = r->next)
486         write_subrecord(r, c->wrbuf, service, 1);
487     wrbuf_puts(c->wrbuf, "</record>\n");
488     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
489     http_send_response(c);
490 }
491
492 static void show_records(struct http_channel *c, int active)
493 {
494     struct http_request *rq = c->request;
495     struct http_response *rs = c->response;
496     struct http_session *s = locate_session(rq, rs);
497     struct record_cluster **rl;
498     struct reclist_sortparms *sp;
499     char *start = http_argbyname(rq, "start");
500     char *num = http_argbyname(rq, "num");
501     char *sort = http_argbyname(rq, "sort");
502     int startn = 0;
503     int numn = 20;
504     int total;
505     int total_hits;
506     int i;
507
508     if (!s)
509         return;
510
511     // We haven't counted clients yet if we're called on a block release
512     if (active < 0)
513         active = session_active_clients(s->psession);
514
515     if (start)
516         startn = atoi(start);
517     if (num)
518         numn = atoi(num);
519     if (!sort)
520         sort = "relevance";
521     if (!(sp = reclist_parse_sortparms(c->nmem, sort)))
522     {
523         error(rs, "500", "Bad sort parameters", 0);
524         return;
525     }
526
527     rl = show(s->psession, sp, startn, &numn, &total, &total_hits, c->nmem);
528
529     wrbuf_rewind(c->wrbuf);
530     wrbuf_puts(c->wrbuf, "<show>\n<status>OK</status>\n");
531     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", active);
532     wrbuf_printf(c->wrbuf, "<merged>%d</merged>\n", total);
533     wrbuf_printf(c->wrbuf, "<total>%d</total>\n", total_hits);
534     wrbuf_printf(c->wrbuf, "<start>%d</start>\n", startn);
535     wrbuf_printf(c->wrbuf, "<num>%d</num>\n", numn);
536
537     for (i = 0; i < numn; i++)
538     {
539         int ccount;
540         struct record *p;
541         struct record_cluster *rec = rl[i];
542         struct conf_service *service = global_parameters.server->service;
543
544         wrbuf_puts(c->wrbuf, "<hit>\n");
545         write_metadata(c->wrbuf, service, rec->metadata, 0);
546         for (ccount = 0, p = rl[i]->records; p;  p = p->next, ccount++)
547             write_subrecord(p, c->wrbuf, service, 0); // subrecs w/o details
548         if (ccount > 1)
549             wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
550         wrbuf_printf(c->wrbuf, "<recid>%d</recid>\n", rec->recid);
551         wrbuf_puts(c->wrbuf, "</hit>\n");
552     }
553
554     wrbuf_puts(c->wrbuf, "</show>\n");
555     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
556     http_send_response(c);
557 }
558
559 static void show_records_ready(void *data)
560 {
561     struct http_channel *c = (struct http_channel *) data;
562
563     show_records(c, -1);
564 }
565
566 static void cmd_show(struct http_channel *c)
567 {
568     struct http_request *rq = c->request;
569     struct http_response *rs = c->response;
570     struct http_session *s = locate_session(rq, rs);
571     char *block = http_argbyname(rq, "block");
572     int status;
573
574     if (!s)
575         return;
576
577     status = session_active_clients(s->psession);
578
579     if (block)
580     {
581         if (status && (!s->psession->reclist || !s->psession->reclist->num_records))
582         {
583             session_set_watch(s->psession, SESSION_WATCH_RECORDS, show_records_ready, c);
584             yaz_log(YLOG_DEBUG, "Blocking on cmd_show");
585             return;
586         }
587     }
588
589     show_records(c, status);
590 }
591
592 static void cmd_ping(struct http_channel *c)
593 {
594     struct http_request *rq = c->request;
595     struct http_response *rs = c->response;
596     struct http_session *s = locate_session(rq, rs);
597     if (!s)
598         return;
599     rs->payload = "<ping><status>OK</status></ping>";
600     http_send_response(c);
601 }
602
603 static int utf_8_valid(const char *str)
604 {
605     yaz_iconv_t cd = yaz_iconv_open("utf-8", "utf-8");
606     if (cd)
607     {
608         /* check that query is UTF-8 encoded */
609         char *inbuf = (char *) str; /* we know iconv does not alter this */
610         size_t inbytesleft = strlen(inbuf);
611
612         size_t outbytesleft = strlen(inbuf) + 10;
613         char *out = xmalloc(outbytesleft);
614         char *outbuf = out;
615         size_t r = yaz_iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
616
617         /* if OK, try flushing the rest  */
618         if (r != (size_t) (-1))
619             r = yaz_iconv(cd, 0, 0, &outbuf, &outbytesleft);
620         yaz_iconv_close(cd);
621         xfree(out);
622         if (r == (size_t) (-1))
623             return 0;
624     }
625     return 1;
626 }
627
628 static void cmd_search(struct http_channel *c)
629 {
630     struct http_request *rq = c->request;
631     struct http_response *rs = c->response;
632     struct http_session *s = locate_session(rq, rs);
633     char *query = http_argbyname(rq, "query");
634     char *filter = http_argbyname(rq, "filter");
635     char *res;
636
637     if (!s)
638         return;
639     if (!query)
640     {
641         error(rs, "417", "Must supply query", 0);
642         return;
643     }
644     if (!utf_8_valid(query))
645     {
646         error(rs, "417", "Query not UTF-8 encoded", 0);
647         return;
648     }
649     res = search(s->psession, query, filter);
650     if (res)
651     {
652         error(rs, "417", res, 0);
653         return;
654     }
655     rs->payload = "<search><status>OK</status></search>";
656     http_send_response(c);
657 }
658
659
660 static void cmd_stat(struct http_channel *c)
661 {
662     struct http_request *rq = c->request;
663     struct http_response *rs = c->response;
664     struct http_session *s = locate_session(rq, rs);
665     struct statistics stat;
666     int clients;
667
668     if (!s)
669         return;
670
671     clients = session_active_clients(s->psession);
672     statistics(s->psession, &stat);
673
674     wrbuf_rewind(c->wrbuf);
675     wrbuf_puts(c->wrbuf, "<stat>");
676     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", clients);
677     wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", stat.num_hits);
678     wrbuf_printf(c->wrbuf, "<records>%d</records>\n", stat.num_records);
679     wrbuf_printf(c->wrbuf, "<clients>%d</clients>\n", stat.num_clients);
680     wrbuf_printf(c->wrbuf, "<unconnected>%d</unconnected>\n", stat.num_no_connection);
681     wrbuf_printf(c->wrbuf, "<connecting>%d</connecting>\n", stat.num_connecting);
682     wrbuf_printf(c->wrbuf, "<initializing>%d</initializing>\n", stat.num_initializing);
683     wrbuf_printf(c->wrbuf, "<searching>%d</searching>\n", stat.num_searching);
684     wrbuf_printf(c->wrbuf, "<presenting>%d</presenting>\n", stat.num_presenting);
685     wrbuf_printf(c->wrbuf, "<idle>%d</idle>\n", stat.num_idle);
686     wrbuf_printf(c->wrbuf, "<failed>%d</failed>\n", stat.num_failed);
687     wrbuf_printf(c->wrbuf, "<error>%d</error>\n", stat.num_error);
688     wrbuf_puts(c->wrbuf, "</stat>");
689     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
690     http_send_response(c);
691 }
692
693 static void cmd_info(struct http_channel *c)
694 {
695     char yaz_version_str[20];
696     struct http_response *rs = c->response;
697
698     wrbuf_rewind(c->wrbuf);
699     wrbuf_puts(c->wrbuf, "<info>\n");
700     wrbuf_puts(c->wrbuf, " <version>\n");
701     wrbuf_puts(c->wrbuf, "<pazpar2>");
702     wrbuf_xmlputs(c->wrbuf, VERSION);
703     wrbuf_puts(c->wrbuf, "</pazpar2>");
704
705
706     yaz_version(yaz_version_str, 0);
707     wrbuf_puts(c->wrbuf, "  <yaz compiled=\"");
708     wrbuf_xmlputs(c->wrbuf, YAZ_VERSION);
709     wrbuf_puts(c->wrbuf, "\">");
710     wrbuf_xmlputs(c->wrbuf, yaz_version_str);
711     wrbuf_puts(c->wrbuf, "</yaz>\n");
712
713     wrbuf_puts(c->wrbuf, " </version>\n");
714     
715     wrbuf_puts(c->wrbuf, "</info>");
716     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
717     http_send_response(c);
718 }
719
720 struct {
721     char *name;
722     void (*fun)(struct http_channel *c);
723 } commands[] = {
724     { "init", cmd_init },
725     { "settings", cmd_settings },
726     { "stat", cmd_stat },
727     { "bytarget", cmd_bytarget },
728     { "show", cmd_show },
729     { "search", cmd_search },
730     { "termlist", cmd_termlist },
731     { "exit", cmd_exit },
732     { "ping", cmd_ping },
733     { "record", cmd_record },
734     { "info", cmd_info },
735     {0,0}
736 };
737
738 void http_command(struct http_channel *c)
739 {
740     char *command = http_argbyname(c->request, "command");
741     struct http_response *rs = http_create_response(c);
742     int i;
743
744     c->response = rs;
745
746     http_addheader(rs, "Expires", "Thu, 19 Nov 1981 08:52:00 GMT");
747     http_addheader(rs, "Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
748
749     if (!command)
750     {
751         error(rs, "417", "Must supply command", 0);
752         return;
753     }
754     for (i = 0; commands[i].name; i++)
755         if (!strcmp(commands[i].name, command))
756         {
757             (*commands[i].fun)(c);
758             break;
759         }
760     if (!commands[i].name)
761         error(rs, "417", "Unknown command", command);
762
763     return;
764 }
765
766 /*
767  * Local variables:
768  * c-basic-offset: 4
769  * indent-tabs-mode: nil
770  * End:
771  * vim: shiftwidth=4 tabstop=8 expandtab
772  */