libical, expat, and libsieve are now *required*.
[citadel.git] / citadel / modules / rssclient / serv_rssclient.c
1 /*
2  * $Id: serv_rssclient.c 5652 2007-10-29 20:14:48Z ajc $
3  *
4  * Bring external RSS feeds into rooms.
5  *
6  */
7
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <stdio.h>
11
12 #if TIME_WITH_SYS_TIME
13 # include <sys/time.h>
14 # include <time.h>
15 #else
16 # if HAVE_SYS_TIME_H
17 #  include <sys/time.h>
18 # else
19 #  include <time.h>
20 # endif
21 #endif
22
23 #include <ctype.h>
24 #include <string.h>
25 #include <errno.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <expat.h>
29 #include <libcitadel.h>
30 #include "citadel.h"
31 #include "server.h"
32 #include "citserver.h"
33 #include "support.h"
34 #include "config.h"
35 #include "threads.h"
36 #include "room_ops.h"
37 #include "ctdl_module.h"
38 #include "clientsocket.h"
39 #include "msgbase.h"
40 #include "parsedate.h"
41 #include "database.h"
42 #include "citadel_dirs.h"
43 #include "md5.h"
44
45
46 struct rssnetcfg {
47         struct rssnetcfg *next;
48         char url[256];
49         char *rooms;
50 };
51
52 struct rss_item {
53         char *chardata;
54         int chardata_len;
55         char *roomlist;
56         int done_parsing;
57         char *guid;
58         char *title;
59         char *link;
60         char *description;
61         time_t pubdate;
62         char channel_title[256];
63         int item_tag_nesting;
64 };
65
66 struct rssnetcfg *rnclist = NULL;
67
68
69 /*
70  * Commit a fetched and parsed RSS item to disk
71  */
72 void rss_save_item(struct rss_item *ri) {
73
74         struct MD5Context md5context;
75         u_char rawdigest[MD5_DIGEST_LEN];
76         int i;
77         char utmsgid[SIZ];
78         struct cdbdata *cdbut;
79         struct UseTable ut;
80         struct CtdlMessage *msg;
81         struct recptypes *recp = NULL;
82         int msglen = 0;
83
84         recp = (struct recptypes *) malloc(sizeof(struct recptypes));
85         if (recp == NULL) return;
86         memset(recp, 0, sizeof(struct recptypes));
87         recp->recp_room = strdup(ri->roomlist);
88         recp->num_room = num_tokens(ri->roomlist, '|');
89         recp->recptypes_magic = RECPTYPES_MAGIC;
90    
91         /* Construct a GUID to use in the S_USETABLE table.
92          * If one is not present in the item itself, make one up.
93          */
94         if (ri->guid != NULL) {
95                 snprintf(utmsgid, sizeof utmsgid, "rss/%s", ri->guid);
96         }
97         else {
98                 MD5Init(&md5context);
99                 if (ri->title != NULL) {
100                         MD5Update(&md5context, ri->title, strlen(ri->title));
101                 }
102                 if (ri->link != NULL) {
103                         MD5Update(&md5context, ri->link, strlen(ri->link));
104                 }
105                 MD5Final(rawdigest, &md5context);
106                 for (i=0; i<MD5_DIGEST_LEN; i++) {
107                         sprintf(&utmsgid[i*2], "%02X", (unsigned char) (rawdigest[i] & 0xff));
108                         utmsgid[i*2] = tolower(utmsgid[i*2]);
109                         utmsgid[(i*2)+1] = tolower(utmsgid[(i*2)+1]);
110                 }
111                 strcat(utmsgid, "_rss2ctdl");
112         }
113
114         /* Find out if we've already seen this item */
115         cdbut = cdb_fetch(CDB_USETABLE, utmsgid, strlen(utmsgid));
116         if (cdbut != NULL) {
117                 /* Item has already been seen */
118                 lprintf(CTDL_DEBUG, "%s has already been seen\n", utmsgid);
119                 cdb_free(cdbut);
120
121                 /* rewrite the record anyway, to update the timestamp */
122                 strcpy(ut.ut_msgid, utmsgid);
123                 ut.ut_timestamp = time(NULL);
124                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
125         }
126         else {
127                 /* Item has not been seen, so save it. */
128
129                 if (ri->description == NULL) ri->description = strdup("");
130                 for (i=strlen(ri->description); i>=0; --i) {
131                         if (isspace(ri->description[i])) {
132                                 ri->description[i] = ' ';
133                         }
134                 }
135
136                 msg = malloc(sizeof(struct CtdlMessage));
137                 memset(msg, 0, sizeof(struct CtdlMessage));
138                 msg->cm_magic = CTDLMESSAGE_MAGIC;
139                 msg->cm_anon_type = MES_NORMAL;
140                 msg->cm_format_type = FMT_RFC822;
141                 msg->cm_fields['A'] = strdup("rss");
142                 msg->cm_fields['N'] = strdup(NODENAME);
143                 msg->cm_fields['U'] = strdup(ri->title);
144                 msg->cm_fields['T'] = malloc(64);
145                 snprintf(msg->cm_fields['T'], 64, "%ld", ri->pubdate);
146                 if (!IsEmptyStr(ri->channel_title)) {
147                         msg->cm_fields['O'] = strdup(ri->channel_title);
148                 }
149
150                 msglen = 1024 + strlen(ri->link) + strlen(ri->description) ;
151                 msg->cm_fields['M'] = malloc(msglen);
152                 snprintf(msg->cm_fields['M'], msglen,
153                         "Content-type: text/html\r\n\r\n"
154                         "<html><body>\n"
155                         "%s<br><br>\n"
156                         "<a href=\"%s\">%s</a>\n"
157                         "</body></html>\n"
158                         ,
159                         ri->description,
160                         ri->link, ri->link
161                 );
162
163                 CtdlSubmitMsg(msg, recp, NULL);
164                 CtdlFreeMessage(msg);
165
166                 /* write the uidl to the use table so we don't store this item again */
167                 strcpy(ut.ut_msgid, utmsgid);
168                 ut.ut_timestamp = time(NULL);
169                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
170         }
171         free_recipients(recp);
172 }
173
174
175
176 /*
177  * Convert an RDF/RSS datestamp into a time_t
178  */
179 time_t rdf_parsedate(char *p)
180 {
181         struct tm tm;
182         time_t t = 0;
183
184         if (!p) return 0L;
185         if (strlen(p) < 10) return 0L;
186
187         memset(&tm, 0, sizeof tm);
188
189         /* YYYY-MM-DDTHH:MM format...
190          */
191         if ( (p[4] == '-') && (p[7] == '-') ) {
192                 tm.tm_year = atoi(&p[0]) - 1900;
193                 tm.tm_mon = atoi(&p[5]) - 1;
194                 tm.tm_mday = atoi(&p[8]);
195                 if ( (p[10] == 'T') && (p[13] == ':') ) {
196                         tm.tm_hour = atoi(&p[11]);
197                         tm.tm_min = atoi(&p[14]);
198                 }
199                 return mktime(&tm);
200         }
201
202         /* hmm... try RFC822 date stamp format */
203
204         t = parsedate(p);
205         if (t > 0) return(t);
206
207         /* yeesh.  ok, just return the current date and time. */
208         return(time(NULL));
209 }
210
211
212
213 void rss_xml_start(void *data, const char *supplied_el, const char **attr) {
214         struct rss_item *ri = (struct rss_item *) data;
215         char el[256];
216         char *sep = NULL;
217
218         /* Axe the namespace, we don't care about it */
219         safestrncpy(el, supplied_el, sizeof el);
220         while (sep = strchr(el, ':'), sep) {
221                 strcpy(el, ++sep);
222         }
223
224         if (!strcasecmp(el, "item")) {
225                 ++ri->item_tag_nesting;
226
227                 /* Initialize the feed item data structure */
228                 if (ri->guid != NULL) free(ri->guid);
229                 ri->guid = NULL;
230                 if (ri->title != NULL) free(ri->title);
231                 ri->title = NULL;
232                 if (ri->link != NULL) free(ri->link);
233                 ri->link = NULL;
234                 if (ri->description != NULL) free(ri->description);
235                 ri->description = NULL;
236
237                 /* Throw away any existing character data */
238                 if (ri->chardata_len > 0) {
239                         free(ri->chardata);
240                         ri->chardata = 0;
241                         ri->chardata_len = 0;
242                 }
243         }
244
245
246
247 }
248
249 void rss_xml_end(void *data, const char *supplied_el) {
250         struct rss_item *ri = (struct rss_item *) data;
251         char el[256];
252         char *sep = NULL;
253
254         /* Axe the namespace, we don't care about it */
255         safestrncpy(el, supplied_el, sizeof el);
256         while (sep = strchr(el, ':'), sep) {
257                 strcpy(el, ++sep);
258         }
259
260         if ( (!strcasecmp(el, "title")) && (ri->item_tag_nesting == 0) && (ri->chardata != NULL) ) {
261                 safestrncpy(ri->channel_title, ri->chardata, sizeof ri->channel_title);
262                 striplt(ri->channel_title);
263         }
264
265         if ( (!strcasecmp(el, "guid")) && (ri->chardata != NULL) ) {
266                 if (ri->guid != NULL) free(ri->guid);
267                 striplt(ri->chardata);
268                 ri->guid = strdup(ri->chardata);
269         }
270
271         if ( (!strcasecmp(el, "title")) && (ri->chardata != NULL) ) {
272                 if (ri->title != NULL) free(ri->title);
273                 striplt(ri->chardata);
274                 ri->title = strdup(ri->chardata);
275         }
276
277         if ( (!strcasecmp(el, "link")) && (ri->chardata != NULL) ) {
278                 if (ri->link != NULL) free(ri->link);
279                 striplt(ri->chardata);
280                 ri->link = strdup(ri->chardata);
281         }
282
283         if ( (!strcasecmp(el, "description")) && (ri->chardata != NULL) ) {
284                 if (ri->description != NULL) free(ri->description);
285                 ri->description = strdup(ri->chardata);
286         }
287
288         if ( ((!strcasecmp(el, "pubdate")) || (!strcasecmp(el, "date"))) && (ri->chardata != NULL) ) {
289                 striplt(ri->chardata);
290                 ri->pubdate = rdf_parsedate(ri->chardata);
291         }
292
293         if (!strcasecmp(el, "item")) {
294                 --ri->item_tag_nesting;
295                 rss_save_item(ri);
296         }
297
298         if ( (!strcasecmp(el, "rss")) || (!strcasecmp(el, "rdf")) ) {
299                 lprintf(CTDL_DEBUG, "End of feed detected.  Closing parser.\n");
300                 ri->done_parsing = 1;
301         }
302
303         if (ri->chardata_len > 0) {
304                 free(ri->chardata);
305                 ri->chardata = 0;
306                 ri->chardata_len = 0;
307         }
308
309 }
310
311
312 /*
313  * This callback stores up the data which appears in between tags.
314  */
315 void rss_xml_chardata(void *data, const XML_Char *s, int len) {
316         struct rss_item *ri = (struct rss_item *) data;
317         int old_len;
318         int new_len;
319         char *new_buffer;
320
321         old_len = ri->chardata_len;
322         new_len = old_len + len;
323         new_buffer = realloc(ri->chardata, new_len + 1);
324         if (new_buffer != NULL) {
325                 memcpy(&new_buffer[old_len], s, len);
326                 new_buffer[new_len] = 0;
327                 ri->chardata = new_buffer;
328                 ri->chardata_len = new_len;
329         }
330 }
331
332
333
334 /* 
335  * Parse a URL into host, port number, and resource identifier.
336  */
337 int parse_url(char *url, char *hostname, int *port, char *identifier)
338 {
339         char protocol[1024];
340         char scratch[1024];
341         char *ptr = NULL;
342         char *nptr = NULL;
343         
344         strcpy(scratch, url);
345         ptr = (char *)strchr(scratch, ':');
346         if (!ptr) {
347                 return(1);      /* no protocol specified */
348         }
349
350         strcpy(ptr, "");
351         strcpy(protocol, scratch);
352         if (strcmp(protocol, "http")) {
353                 return(2);      /* not HTTP */
354         }
355
356         strcpy(scratch, url);
357         ptr = (char *) strstr(scratch, "//");
358         if (!ptr) {
359                 return(3);      /* no server specified */
360         }
361         ptr += 2;
362
363         strcpy(hostname, ptr);
364         nptr = (char *)strchr(ptr, ':');
365         if (!nptr) {
366                 *port = 80;     /* default */
367                 nptr = (char *)strchr(hostname, '/');
368         }
369         else {
370                 sscanf(nptr, ":%d", port);
371                 nptr = (char *)strchr(hostname, ':');
372         }
373
374         if (nptr) {
375                 *nptr = '\0';
376         }
377
378         nptr = (char *)strchr(ptr, '/');
379         
380         if (!nptr) {
381                 return(4);      /* no url specified */
382         }
383         
384         strcpy(identifier, nptr);
385         return(0);
386 }
387
388
389 /*
390  * Begin a feed parse
391  */
392 void rss_do_fetching(char *url, char *rooms) {
393         char buf[1024];
394         char rsshost[1024];
395         int rssport = 80;
396         char rssurl[1024];
397         struct rss_item ri;
398         XML_Parser xp;
399         int sock = (-1);
400         int got_bytes = (-1);
401         int redirect_count = 0;
402
403         /* Parse the URL */
404         if (parse_url(url, rsshost, &rssport, rssurl) != 0) {
405                 lprintf(CTDL_ALERT, "Invalid URL: %s\n", url);
406         }
407
408         xp = XML_ParserCreateNS("UTF-8", ':');
409         if (!xp) {
410                 lprintf(CTDL_ALERT, "Cannot create XML parser!\n");
411                 return;
412         }
413
414         memset(&ri, 0, sizeof(struct rss_item));
415         ri.roomlist = rooms;
416         XML_SetElementHandler(xp, rss_xml_start, rss_xml_end);
417         XML_SetCharacterDataHandler(xp, rss_xml_chardata);
418         XML_SetUserData(xp, &ri);
419
420 retry:  lprintf(CTDL_NOTICE, "Connecting to <%s>\n", rsshost);
421         sprintf(buf, "%d", rssport);
422         sock = sock_connect(rsshost, buf, "tcp");
423         if (sock >= 0) {
424                 lprintf(CTDL_DEBUG, "Connected!\n");
425
426                 snprintf(buf, sizeof buf, "GET %s HTTP/1.0", rssurl);
427                 lprintf(CTDL_DEBUG, "<%s\n", buf);
428                 sock_puts(sock, buf);
429
430                 snprintf(buf, sizeof buf, "Host: %s", rsshost);
431                 lprintf(CTDL_DEBUG, "<%s\n", buf);
432                 sock_puts(sock, buf);
433
434                 snprintf(buf, sizeof buf, "User-Agent: %s", CITADEL);
435                 lprintf(CTDL_DEBUG, "<%s\n", buf);
436                 sock_puts(sock, buf);
437
438                 snprintf(buf, sizeof buf, "Accept: */*");
439                 lprintf(CTDL_DEBUG, "<%s\n", buf);
440                 sock_puts(sock, buf);
441
442                 sock_puts(sock, "");
443
444                 if (sock_getln(sock, buf, sizeof buf) >= 0) {
445                 lprintf(CTDL_DEBUG, ">%s\n", buf);
446                         remove_token(buf, 0, ' ');
447
448                         /* 200 OK */
449                         if (buf[0] == '2') {
450
451                                 while (got_bytes = sock_getln(sock, buf, sizeof buf),
452                                       (got_bytes >= 0 && (strcmp(buf, "")) && (strcmp(buf, "\r"))) ) {
453                                         /* discard headers */
454                                 }
455
456                                 while (got_bytes = sock_read(sock, buf, sizeof buf, 0),
457                                       ((got_bytes>=0) && (ri.done_parsing == 0)) ) {
458                                         XML_Parse(xp, buf, got_bytes, 0);
459                                 }
460                                 if (ri.done_parsing == 0) XML_Parse(xp, "", 0, 1);
461                         }
462
463                         /* 30X redirect */
464                         else if ( (!strncmp(buf, "30", 2)) && (redirect_count < 16) ) {
465                                 while (got_bytes = sock_getln(sock, buf, sizeof buf),
466                                       (got_bytes >= 0 && (strcmp(buf, "")) && (strcmp(buf, "\r"))) ) {
467                                         if (!strncasecmp(buf, "Location:", 9)) {
468                                                 ++redirect_count;
469                                                 strcpy(buf, &buf[9]);
470                                                 striplt(buf);
471                                                 if (parse_url(buf, rsshost, &rssport, rssurl) == 0) {
472                                                         sock_close(sock);
473                                                         goto retry;
474                                                 }
475                                                 else {
476                                                         lprintf(CTDL_ALERT, "Invalid URL: %s\n", buf);
477                                                 }
478                                         }
479                                 }
480                         }
481
482                 }
483                 sock_close(sock);
484         }
485         else {
486                 lprintf(CTDL_ERR, "Could not connect: %s\n", strerror(errno));
487         }
488
489         XML_ParserFree(xp);
490
491         /* Free the feed item data structure */
492         if (ri.guid != NULL) free(ri.guid);
493         ri.guid = NULL;
494         if (ri.title != NULL) free(ri.title);
495         ri.title = NULL;
496         if (ri.link != NULL) free(ri.link);
497         ri.link = NULL;
498         if (ri.description != NULL) free(ri.description);
499         ri.description = NULL;
500         if (ri.chardata_len > 0) {
501                 free(ri.chardata);
502                 ri.chardata = 0;
503                 ri.chardata_len = 0;
504         }
505 }
506
507
508 /*
509  * Scan a room's netconfig to determine whether it is requesting any RSS feeds
510  */
511 void rssclient_scan_room(struct ctdlroom *qrbuf, void *data)
512 {
513         char filename[PATH_MAX];
514         char buf[1024];
515         char instr[32];
516         FILE *fp;
517         char feedurl[256];
518         struct rssnetcfg *rncptr = NULL;
519         struct rssnetcfg *use_this_rncptr = NULL;
520         int len = 0;
521         char *ptr = NULL;
522
523         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_netcfg_dir);
524
525         /* Only do net processing for rooms that have netconfigs */
526         fp = fopen(filename, "r");
527         if (fp == NULL) {
528                 return;
529         }
530
531         while (fgets(buf, sizeof buf, fp) != NULL) {
532                 buf[strlen(buf)-1] = 0;
533
534                 extract_token(instr, buf, 0, '|', sizeof instr);
535                 if (!strcasecmp(instr, "rssclient")) {
536
537                         use_this_rncptr = NULL;
538
539                         extract_token(feedurl, buf, 1, '|', sizeof feedurl);
540
541                         /* If any other rooms have requested the same feed, then we will just add this
542                          * room to the target list for that client request.
543                          */
544                         for (rncptr=rnclist; rncptr!=NULL; rncptr=rncptr->next) {
545                                 if (!strcmp(rncptr->url, feedurl)) {
546                                         use_this_rncptr = rncptr;
547                                 }
548                         }
549
550                         /* Otherwise create a new client request */
551                         if (use_this_rncptr == NULL) {
552                                 rncptr = (struct rssnetcfg *) malloc(sizeof(struct rssnetcfg));
553                                 if (rncptr != NULL) {
554                                         rncptr->next = rnclist;
555                                         safestrncpy(rncptr->url, feedurl, sizeof rncptr->url);
556                                         rncptr->rooms = NULL;
557                                         rnclist = rncptr;
558                                         use_this_rncptr = rncptr;
559                                 }
560                         }
561
562                         /* Add the room name to the request */
563                         if (use_this_rncptr != NULL) {
564                                 if (use_this_rncptr->rooms == NULL) {
565                                         rncptr->rooms = strdup(qrbuf->QRname);
566                                 }
567                                 else {
568                                         len = strlen(use_this_rncptr->rooms) + strlen(qrbuf->QRname) + 5;
569                                         ptr = realloc(use_this_rncptr->rooms, len);
570                                         if (ptr != NULL) {
571                                                 strcat(ptr, "|");
572                                                 strcat(ptr, qrbuf->QRname);
573                                                 use_this_rncptr->rooms = ptr;
574                                         }
575                                 }
576                         }
577                 }
578
579         }
580
581         fclose(fp);
582
583 }
584
585 /*
586  * Scan for rooms that have RSS client requests configured
587  */
588 void *rssclient_scan(void *args) {
589         static time_t last_run = 0L;
590         static int doing_rssclient = 0;
591         struct rssnetcfg *rptr = NULL;
592         struct CitContext rssclientCC;
593
594         /* Give this thread its own private CitContext */
595         memset(&rssclientCC, 0, sizeof(struct CitContext));
596         rssclientCC.internal_pgm = 1;
597         rssclientCC.cs_pid = 0;
598         pthread_setspecific(MyConKey, (void *)&rssclientCC );
599
600         CtdlThreadAllocTSD();
601
602         /*
603          * This is a simple concurrency check to make sure only one rssclient run
604          * is done at a time.  We could do this with a mutex, but since we
605          * don't really require extremely fine granularity here, we'll do it
606          * with a static variable instead.
607          */
608         if (doing_rssclient) return NULL;
609         doing_rssclient = 1;
610
611         lprintf(CTDL_DEBUG, "rssclient started\n");
612         ForEachRoom(rssclient_scan_room, NULL);
613
614         while (rnclist != NULL) {
615                 rss_do_fetching(rnclist->url, rnclist->rooms);
616                 rptr = rnclist;
617                 rnclist = rnclist->next;
618                 if (rptr->rooms != NULL) free(rptr->rooms);
619                 free(rptr);
620         }
621
622         lprintf(CTDL_DEBUG, "rssclient ended\n");
623         last_run = time(NULL);
624         doing_rssclient = 0;
625         CtdlThreadSchedule ("RSS Client", CTDLTHREAD_BIGSTACK, rssclient_scan, NULL, last_run + config.c_net_freq);
626         return NULL;
627 }
628
629
630 CTDL_MODULE_INIT(rssclient)
631 {
632         if (threading)
633         {
634                 CtdlThreadSchedule ("RSS Client", CTDLTHREAD_BIGSTACK, rssclient_scan, NULL, 0);
635         }
636         /* return our Subversion id for the Log */
637         return "$Id: serv_rssclient.c 5652 2007-10-29 20:14:48Z ajc $";
638 }