Extended simpletarget model with target names. Added names to target facet and detailed
[pazpar2-moved-to-github.git] / src / http_command.c
1 /*
2  * $Id: http_command.c,v 1.26 2007-01-18 18:11:19 quinn Exp $
3  */
4
5 #include <stdio.h>
6 #include <sys/types.h>
7 #include <sys/uio.h>
8 #include <unistd.h>
9 #include <stdlib.h>
10 #include <strings.h>
11 #include <ctype.h>
12 #include <sys/time.h>
13
14 #if HAVE_CONFIG_H
15 #include <cconfig.h>
16 #endif
17
18 #include <yaz/yaz-util.h>
19
20 #include "config.h"
21 #include "util.h"
22 #include "eventl.h"
23 #include "pazpar2.h"
24 #include "http.h"
25 #include "http_command.h"
26
27 extern struct parameters global_parameters;
28 extern IOCHAN channel_list;
29
30 struct http_session {
31     IOCHAN timeout_iochan;     // NOTE: This is NOT associated with a socket
32     struct session *psession;
33     unsigned int session_id;
34     int timestamp;
35     struct http_session *next;
36 };
37
38 static struct http_session *session_list = 0;
39
40 void http_session_destroy(struct http_session *s);
41
42 static void session_timeout(IOCHAN i, int event)
43 {
44     struct http_session *s = iochan_getdata(i);
45     http_session_destroy(s);
46 }
47
48 struct http_session *http_session_create()
49 {
50     struct http_session *r = xmalloc(sizeof(*r));
51     r->psession = new_session();
52     r->session_id = 0;
53     r->timestamp = 0;
54     r->next = session_list;
55     session_list = r;
56     r->timeout_iochan = iochan_create(-1, session_timeout, 0);
57     iochan_setdata(r->timeout_iochan, r);
58     iochan_settimeout(r->timeout_iochan, global_parameters.session_timeout);
59     r->timeout_iochan->next = channel_list;
60     channel_list = r->timeout_iochan;
61     return r;
62 }
63
64 void http_session_destroy(struct http_session *s)
65 {
66     struct http_session **p;
67
68     for (p = &session_list; *p; p = &(*p)->next)
69         if (*p == s)
70         {
71             *p = (*p)->next;
72             break;
73         }
74     iochan_destroy(s->timeout_iochan);
75     destroy_session(s->psession);
76     xfree(s);
77 }
78
79 static void error(struct http_response *rs, char *code, char *msg, char *txt)
80 {
81     struct http_channel *c = rs->channel;
82     char tmp[1024];
83
84     if (!txt)
85         txt = msg;
86     rs->msg = nmem_strdup(c->nmem, msg);
87     strcpy(rs->code, code);
88     sprintf(tmp, "<error code=\"general\">%s</error>", txt);
89     rs->payload = nmem_strdup(c->nmem, tmp);
90     http_send_response(c);
91 }
92
93 unsigned int make_sessionid()
94 {
95     struct timeval t;
96     unsigned int res;
97     static int seq = 0;
98
99     seq++;
100     if (gettimeofday(&t, 0) < 0)
101         abort();
102     res = t.tv_sec;
103     res = ((res << 8) | (seq & 0xff)) & ((1U << 31) - 1);
104     return res;
105 }
106
107 static struct http_session *locate_session(struct http_request *rq, struct http_response *rs)
108 {
109     struct http_session *p;
110     char *session = http_argbyname(rq, "session");
111     unsigned int id;
112
113     if (!session)
114     {
115         error(rs, "417", "Must supply session", 0);
116         return 0;
117     }
118     id = atoi(session);
119     for (p = session_list; p; p = p->next)
120         if (id == p->session_id)
121         {
122             iochan_activity(p->timeout_iochan);
123             return p;
124         }
125     error(rs, "417", "Session does not exist, or it has expired", 0);
126     return 0;
127 }
128
129 static void cmd_exit(struct http_channel *c)
130 {
131     yaz_log(YLOG_WARN, "exit");
132     exit(0);
133 }
134
135
136 static void cmd_init(struct http_channel *c)
137 {
138     unsigned int sesid;
139     char buf[1024];
140     struct http_session *s = http_session_create();
141     struct http_response *rs = c->response;
142
143     yaz_log(YLOG_DEBUG, "HTTP Session init");
144     sesid = make_sessionid();
145     s->session_id = sesid;
146     sprintf(buf, "<init><status>OK</status><session>%u</session></init>", sesid);
147     rs->payload = nmem_strdup(c->nmem, buf);
148     http_send_response(c);
149 }
150
151 // Compares two hitsbytarget nodes by hitcount
152 static int cmp_ht(const void *p1, const void *p2)
153 {
154     const struct hitsbytarget *h1 = p1;
155     const struct hitsbytarget *h2 = p2;
156     return h2->hits - h1->hits;
157 }
158
159 // This implements functionality somewhat similar to 'bytarget', but in a termlist form
160 static void targets_termlist(WRBUF wrbuf, struct session *se, int num)
161 {
162     struct hitsbytarget *ht;
163     int count, i;
164
165     if (!(ht = hitsbytarget(se, &count)))
166         return;
167     qsort(ht, count, sizeof(struct hitsbytarget), cmp_ht);
168     for (i = 0; i < count && i < num && ht[i].hits > 0; i++)
169     {
170         wrbuf_puts(wrbuf, "\n<term>\n");
171         wrbuf_printf(wrbuf, "<name>%s</name>\n", ht[i].name);
172         wrbuf_printf(wrbuf, "<frequency>%d</frequency>\n", ht[i].hits);
173         wrbuf_printf(wrbuf, "<state>%s</state>\n", ht[i].state);
174         wrbuf_printf(wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
175         wrbuf_puts(wrbuf, "\n</term>\n");
176     }
177 }
178
179 static void cmd_termlist(struct http_channel *c)
180 {
181     struct http_response *rs = c->response;
182     struct http_request *rq = c->request;
183     struct http_session *s = locate_session(rq, rs);
184     struct termlist_score **p;
185     int len;
186     int i;
187     char *name = http_argbyname(rq, "name");
188     char *nums = http_argbyname(rq, "num");
189     int num = 15;
190     int status;
191
192     if (!s)
193         return;
194
195     status = session_active_clients(s->psession);
196
197     if (!name)
198         name = "subject";
199     if (strlen(name) > 255)
200         return;
201     if (nums)
202         num = atoi(nums);
203
204     wrbuf_rewind(c->wrbuf);
205
206     wrbuf_puts(c->wrbuf, "<termlist>");
207     wrbuf_printf(c->wrbuf, "\n<activeclients>%d</activeclients>", status);
208     while (*name)
209     {
210         char tname[256];
211         char *tp;
212
213         if (!(tp = strchr(name, ',')))
214             tp = name + strlen(name);
215         strncpy(tname, name, tp - name);
216         tname[tp - name] = '\0';
217
218         wrbuf_printf(c->wrbuf, "\n<list name=\"%s\">\n", tname);
219         if (!strcmp(tname, "xtargets"))
220             targets_termlist(c->wrbuf, s->psession, num);
221         else
222         {
223             p = termlist(s->psession, tname, &len);
224             if (p)
225                 for (i = 0; i < len && i < num; i++)
226                 {
227                     wrbuf_puts(c->wrbuf, "\n<term>");
228                     wrbuf_printf(c->wrbuf, "<name>%s</name>", p[i]->term);
229                     wrbuf_printf(c->wrbuf, "<frequency>%d</frequency>", p[i]->frequency);
230                     wrbuf_puts(c->wrbuf, "</term>");
231                 }
232         }
233         wrbuf_puts(c->wrbuf, "\n</list>");
234         name = tp;
235         if (*name == ',')
236             name++;
237     }
238     wrbuf_puts(c->wrbuf, "</termlist>");
239     rs->payload = nmem_strdup(rq->channel->nmem, wrbuf_buf(c->wrbuf));
240     http_send_response(c);
241 }
242
243
244 static void cmd_bytarget(struct http_channel *c)
245 {
246     struct http_response *rs = c->response;
247     struct http_request *rq = c->request;
248     struct http_session *s = locate_session(rq, rs);
249     struct hitsbytarget *ht;
250     int count, i;
251
252     if (!s)
253         return;
254     if (!(ht = hitsbytarget(s->psession, &count)))
255     {
256         error(rs, "500", "Failed to retrieve hitcounts", 0);
257         return;
258     }
259     wrbuf_rewind(c->wrbuf);
260     wrbuf_puts(c->wrbuf, "<bytarget><status>OK</status>");
261
262     for (i = 0; i < count; i++)
263     {
264         wrbuf_puts(c->wrbuf, "\n<target>");
265         wrbuf_printf(c->wrbuf, "<id>%s</id>\n", ht[i].id);
266         wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", ht[i].hits);
267         wrbuf_printf(c->wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
268         wrbuf_printf(c->wrbuf, "<records>%d</records>\n", ht[i].records);
269         wrbuf_printf(c->wrbuf, "<state>%s</state>\n", ht[i].state);
270         wrbuf_puts(c->wrbuf, "</target>");
271     }
272
273     wrbuf_puts(c->wrbuf, "</bytarget>");
274     rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
275     http_send_response(c);
276 }
277
278 static void write_metadata(WRBUF w, struct conf_service *service,
279         struct record_metadata **ml, int full)
280 {
281     int imeta;
282
283     for (imeta = 0; imeta < service->num_metadata; imeta++)
284     {
285         struct conf_metadata *cmd = &service->metadata[imeta];
286         struct record_metadata *md;
287         if (!cmd->brief && !full)
288             continue;
289         for (md = ml[imeta]; md; md = md->next)
290         {
291             wrbuf_printf(w, "<md-%s>", cmd->name);
292             switch (cmd->type)
293             {
294                 case Metadata_type_generic:
295                     wrbuf_puts(w, md->data.text);
296                     break;
297                 case Metadata_type_year:
298                     wrbuf_printf(w, "%d", md->data.number.min);
299                     if (md->data.number.min != md->data.number.max)
300                         wrbuf_printf(w, "-%d", md->data.number.max);
301                     break;
302                 default:
303                     wrbuf_puts(w, "[can't represent]");
304             }
305             wrbuf_printf(w, "</md-%s>", cmd->name);
306         }
307     }
308 }
309
310 static void write_subrecord(struct record *r, WRBUF w, struct conf_service *service)
311 {
312     wrbuf_printf(w, "<location id=\"%s\" name=\"%s\">\n",
313             r->client->database->url,
314             r->client->database->name ? r->client->database->name : "");
315     write_metadata(w, service, r->metadata, 1);
316     wrbuf_puts(w, "</location>\n");
317 }
318
319 static void cmd_record(struct http_channel *c)
320 {
321     struct http_response *rs = c->response;
322     struct http_request *rq = c->request;
323     struct http_session *s = locate_session(rq, rs);
324     struct record_cluster *rec;
325     struct record *r;
326     struct conf_service *service = global_parameters.server->service;
327     char *idstr = http_argbyname(rq, "id");
328     int id;
329
330     if (!s)
331         return;
332     if (!idstr)
333     {
334         error(rs, "417", "Must supply id", 0);
335         return;
336     }
337     wrbuf_rewind(c->wrbuf);
338     id = atoi(idstr);
339     if (!(rec = show_single(s->psession, id)))
340     {
341         error(rs, "500", "Record missing", 0);
342         return;
343     }
344     wrbuf_puts(c->wrbuf, "<record>\n");
345     wrbuf_printf(c->wrbuf, "<recid>%d</recid>", rec->recid);
346     write_metadata(c->wrbuf, service, rec->metadata, 1);
347     for (r = rec->records; r; r = r->next)
348         write_subrecord(r, c->wrbuf, service);
349     wrbuf_puts(c->wrbuf, "</record>\n");
350     rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
351     http_send_response(c);
352 }
353
354 static void show_records(struct http_channel *c, int active)
355 {
356     struct http_request *rq = c->request;
357     struct http_response *rs = c->response;
358     struct http_session *s = locate_session(rq, rs);
359     struct record_cluster **rl;
360     struct reclist_sortparms *sp;
361     char *start = http_argbyname(rq, "start");
362     char *num = http_argbyname(rq, "num");
363     char *sort = http_argbyname(rq, "sort");
364     int startn = 0;
365     int numn = 20;
366     int total;
367     int total_hits;
368     int i;
369
370     if (!s)
371         return;
372
373     // We haven't counted clients yet if we're called on a block release
374     if (active < 0)
375         active = session_active_clients(s->psession);
376
377     if (start)
378         startn = atoi(start);
379     if (num)
380         numn = atoi(num);
381     if (!sort)
382         sort = "relevance";
383     if (!(sp = reclist_parse_sortparms(c->nmem, sort)))
384     {
385         error(rs, "500", "Bad sort parameters", 0);
386         return;
387     }
388
389     rl = show(s->psession, sp, startn, &numn, &total, &total_hits, c->nmem);
390
391     wrbuf_rewind(c->wrbuf);
392     wrbuf_puts(c->wrbuf, "<show>\n<status>OK</status>\n");
393     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", active);
394     wrbuf_printf(c->wrbuf, "<merged>%d</merged>\n", total);
395     wrbuf_printf(c->wrbuf, "<total>%d</total>\n", total_hits);
396     wrbuf_printf(c->wrbuf, "<start>%d</start>\n", startn);
397     wrbuf_printf(c->wrbuf, "<num>%d</num>\n", numn);
398
399     for (i = 0; i < numn; i++)
400     {
401         int ccount;
402         struct record *p;
403         struct record_cluster *rec = rl[i];
404         struct conf_service *service = global_parameters.server->service;
405
406         wrbuf_puts(c->wrbuf, "<hit>\n");
407         write_metadata(c->wrbuf, service, rec->metadata, 0);
408         for (ccount = 0, p = rl[i]->records; p;  p = p->next, ccount++)
409             ;
410         if (ccount > 1)
411             wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
412         wrbuf_printf(c->wrbuf, "<recid>%d</recid>\n", rec->recid);
413         wrbuf_puts(c->wrbuf, "</hit>\n");
414     }
415
416     wrbuf_puts(c->wrbuf, "</show>\n");
417     rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
418     http_send_response(c);
419 }
420
421 static void show_records_ready(void *data)
422 {
423     struct http_channel *c = (struct http_channel *) data;
424
425     show_records(c, -1);
426 }
427
428 static void cmd_show(struct http_channel *c)
429 {
430     struct http_request *rq = c->request;
431     struct http_response *rs = c->response;
432     struct http_session *s = locate_session(rq, rs);
433     char *block = http_argbyname(rq, "block");
434     int status;
435
436     if (!s)
437         return;
438
439     status = session_active_clients(s->psession);
440
441     if (block)
442     {
443         if (status && (!s->psession->reclist || !s->psession->reclist->num_records))
444         {
445             session_set_watch(s->psession, SESSION_WATCH_RECORDS, show_records_ready, c);
446             yaz_log(YLOG_DEBUG, "Blocking on cmd_show");
447             return;
448         }
449     }
450
451     show_records(c, status);
452 }
453
454 static void cmd_ping(struct http_channel *c)
455 {
456     struct http_request *rq = c->request;
457     struct http_response *rs = c->response;
458     struct http_session *s = locate_session(rq, rs);
459     if (!s)
460         return;
461     rs->payload = "<ping><status>OK</status></ping>";
462     http_send_response(c);
463 }
464
465 static void cmd_search(struct http_channel *c)
466 {
467     struct http_request *rq = c->request;
468     struct http_response *rs = c->response;
469     struct http_session *s = locate_session(rq, rs);
470     char *query = http_argbyname(rq, "query");
471     char *res;
472
473     if (!s)
474         return;
475     if (!query)
476     {
477         error(rs, "417", "Must supply query", 0);
478         return;
479     }
480     res = search(s->psession, query);
481     if (res)
482     {
483         error(rs, "417", res, res);
484         return;
485     }
486     rs->payload = "<search><status>OK</status></search>";
487     http_send_response(c);
488 }
489
490
491 static void cmd_stat(struct http_channel *c)
492 {
493     struct http_request *rq = c->request;
494     struct http_response *rs = c->response;
495     struct http_session *s = locate_session(rq, rs);
496     struct statistics stat;
497     int clients;
498
499     if (!s)
500         return;
501
502     clients = session_active_clients(s->psession);
503     statistics(s->psession, &stat);
504
505     wrbuf_rewind(c->wrbuf);
506     wrbuf_puts(c->wrbuf, "<stat>");
507     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", clients);
508     wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", stat.num_hits);
509     wrbuf_printf(c->wrbuf, "<records>%d</records>\n", stat.num_records);
510     wrbuf_printf(c->wrbuf, "<clients>%d</clients>\n", stat.num_clients);
511     wrbuf_printf(c->wrbuf, "<unconnected>%d</unconnected>\n", stat.num_no_connection);
512     wrbuf_printf(c->wrbuf, "<connecting>%d</connecting>\n", stat.num_connecting);
513     wrbuf_printf(c->wrbuf, "<initializing>%d</initializing>\n", stat.num_initializing);
514     wrbuf_printf(c->wrbuf, "<searching>%d</searching>\n", stat.num_searching);
515     wrbuf_printf(c->wrbuf, "<presenting>%d</presenting>\n", stat.num_presenting);
516     wrbuf_printf(c->wrbuf, "<idle>%d</idle>\n", stat.num_idle);
517     wrbuf_printf(c->wrbuf, "<failed>%d</failed>\n", stat.num_failed);
518     wrbuf_printf(c->wrbuf, "<error>%d</error>\n", stat.num_error);
519     wrbuf_puts(c->wrbuf, "</stat>");
520     rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
521     http_send_response(c);
522 }
523
524 static void cmd_info(struct http_channel *c)
525 {
526     char yaz_version_str[20];
527     struct http_response *rs = c->response;
528
529     wrbuf_rewind(c->wrbuf);
530     wrbuf_puts(c->wrbuf, "<info>\n");
531     wrbuf_printf(c->wrbuf, " <version>\n");
532     wrbuf_printf(c->wrbuf, "  <pazpar2>%s</pazpar2>\n", VERSION);
533
534     yaz_version(yaz_version_str, 0);
535     wrbuf_printf(c->wrbuf, "  <yaz compiled=\"%s\">%s</yaz>\n",
536                  YAZ_VERSION, yaz_version_str);
537     wrbuf_printf(c->wrbuf, " </version>\n");
538     
539     wrbuf_puts(c->wrbuf, "</info>");
540     rs->payload = nmem_strdup(c->nmem, wrbuf_buf(c->wrbuf));
541     http_send_response(c);
542 }
543
544 struct {
545     char *name;
546     void (*fun)(struct http_channel *c);
547 } commands[] = {
548     { "init", cmd_init },
549     { "stat", cmd_stat },
550     { "bytarget", cmd_bytarget },
551     { "show", cmd_show },
552     { "search", cmd_search },
553     { "termlist", cmd_termlist },
554     { "exit", cmd_exit },
555     { "ping", cmd_ping },
556     { "record", cmd_record },
557     { "info", cmd_info },
558     {0,0}
559 };
560
561 void http_command(struct http_channel *c)
562 {
563     char *command = http_argbyname(c->request, "command");
564     struct http_response *rs = http_create_response(c);
565     int i;
566
567     c->response = rs;
568
569     http_addheader(rs, "Expires", "Thu, 19 Nov 1981 08:52:00 GMT");
570     http_addheader(rs, "Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
571
572     if (!command)
573     {
574         error(rs, "417", "Must supply command", 0);
575         return;
576     }
577     for (i = 0; commands[i].name; i++)
578         if (!strcmp(commands[i].name, command))
579         {
580             (*commands[i].fun)(c);
581             break;
582         }
583     if (!commands[i].name)
584         error(rs, "417", "Unknown command", 0);
585
586     return;
587 }
588
589 /*
590  * Local variables:
591  * c-basic-offset: 4
592  * indent-tabs-mode: nil
593  * End:
594  * vim: shiftwidth=4 tabstop=8 expandtab
595  */