RSS parser can now handle datestamps in RFC822 format
[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 <libcitadel.h>
29 #include "citadel.h"
30 #include "server.h"
31 #include "citserver.h"
32 #include "support.h"
33 #include "config.h"
34 #include "room_ops.h"
35 #include "ctdl_module.h"
36 #include "clientsocket.h"
37 #include "msgbase.h"
38 #include "parsedate.h"
39 #include "database.h"
40 #include "citadel_dirs.h"
41 #include "md5.h"
42
43 #ifdef HAVE_EXPAT
44 #include <expat.h>
45
46
47 struct rssnetcfg {
48         struct rssnetcfg *next;
49         char url[256];
50         char *rooms;
51 };
52
53 struct rss_item {
54         char *chardata;
55         int chardata_len;
56         char *roomlist;
57         int done_parsing;
58         char *guid;
59         char *title;
60         char *link;
61         char *description;
62         time_t pubdate;
63         char channel_title[256];
64         int item_tag_nesting;
65 };
66
67 struct rssnetcfg *rnclist = NULL;
68
69
70 /*
71  * Commit a fetched and parsed RSS item to disk
72  */
73 void rss_save_item(struct rss_item *ri) {
74
75         struct MD5Context md5context;
76         u_char rawdigest[MD5_DIGEST_LEN];
77         int i;
78         char utmsgid[SIZ];
79         struct cdbdata *cdbut;
80         struct UseTable ut;
81         struct CtdlMessage *msg;
82         struct recptypes *recp = NULL;
83         int msglen = 0;
84
85         recp = (struct recptypes *) malloc(sizeof(struct recptypes));
86         if (recp == NULL) return;
87         memset(recp, 0, sizeof(struct recptypes));
88         recp->recp_room = strdup(ri->roomlist);
89         recp->num_room = num_tokens(ri->roomlist, '|');
90         recp->recptypes_magic = RECPTYPES_MAGIC;
91    
92         /* Construct a GUID to use in the S_USETABLE table.
93          * If one is not present in the item itself, make one up.
94          */
95         if (ri->guid != NULL) {
96                 snprintf(utmsgid, sizeof utmsgid, "rss/%s", ri->guid);
97         }
98         else {
99                 MD5Init(&md5context);
100                 if (ri->title != NULL) {
101                         MD5Update(&md5context, ri->title, strlen(ri->title));
102                 }
103                 if (ri->link != NULL) {
104                         MD5Update(&md5context, ri->link, strlen(ri->link));
105                 }
106                 MD5Final(rawdigest, &md5context);
107                 for (i=0; i<MD5_DIGEST_LEN; i++) {
108                         sprintf(&utmsgid[i*2], "%02X", (unsigned char) (rawdigest[i] & 0xff));
109                         utmsgid[i*2] = tolower(utmsgid[i*2]);
110                         utmsgid[(i*2)+1] = tolower(utmsgid[(i*2)+1]);
111                 }
112                 strcat(utmsgid, "_rss2ctdl");
113         }
114
115         /* Find out if we've already seen this item */
116         cdbut = cdb_fetch(CDB_USETABLE, utmsgid, strlen(utmsgid));
117         if (cdbut != NULL) {
118                 /* Item has already been seen */
119                 lprintf(CTDL_DEBUG, "%s has already been seen\n", utmsgid);
120                 cdb_free(cdbut);
121
122                 /* rewrite the record anyway, to update the timestamp */
123                 strcpy(ut.ut_msgid, utmsgid);
124                 ut.ut_timestamp = time(NULL);
125                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
126         }
127         else {
128                 /* Item has not been seen, so save it. */
129
130                 if (ri->description == NULL) ri->description = strdup("");
131                 for (i=strlen(ri->description); i>=0; --i) {
132                         if (isspace(ri->description[i])) {
133                                 ri->description[i] = ' ';
134                         }
135                 }
136
137                 msg = malloc(sizeof(struct CtdlMessage));
138                 memset(msg, 0, sizeof(struct CtdlMessage));
139                 msg->cm_magic = CTDLMESSAGE_MAGIC;
140                 msg->cm_anon_type = MES_NORMAL;
141                 msg->cm_format_type = FMT_RFC822;
142                 msg->cm_fields['A'] = strdup("rss");
143                 msg->cm_fields['N'] = strdup(NODENAME);
144                 msg->cm_fields['U'] = strdup(ri->title);
145                 msg->cm_fields['T'] = malloc(64);
146                 snprintf(msg->cm_fields['T'], 64, "%ld", ri->pubdate);
147                 if (!IsEmptyStr(ri->channel_title)) {
148                         msg->cm_fields['O'] = strdup(ri->channel_title);
149                 }
150
151                 msglen = 1024 + strlen(ri->link) + strlen(ri->description) ;
152                 msg->cm_fields['M'] = malloc(msglen);
153                 snprintf(msg->cm_fields['M'], msglen,
154                         "Content-type: text/html\r\n\r\n"
155                         "<html><body>\n"
156                         "%s<br><br>\n"
157                         "<a href=\"%s\">%s</a>\n"
158                         "</body></html>\n"
159                         ,
160                         ri->description,
161                         ri->link, ri->link
162                 );
163
164                 CtdlSubmitMsg(msg, recp, NULL);
165                 CtdlFreeMessage(msg);
166
167                 /* write the uidl to the use table so we don't store this item again */
168                 strcpy(ut.ut_msgid, utmsgid);
169                 ut.ut_timestamp = time(NULL);
170                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
171         }
172         free_recipients(recp);
173 }
174
175
176
177 /*
178  * Convert an RDF/RSS datestamp into a time_t
179  */
180 time_t rdf_parsedate(char *p)
181 {
182         struct tm tm;
183         time_t t = 0;
184
185         if (!p) return 0L;
186         if (strlen(p) < 10) return 0L;
187
188         memset(&tm, 0, sizeof tm);
189
190         /* YYYY-MM-DDTHH:MM format...
191          */
192         if ( (p[4] == '-') && (p[7] == '-') ) {
193                 tm.tm_year = atoi(&p[0]) - 1900;
194                 tm.tm_mon = atoi(&p[5]) - 1;
195                 tm.tm_mday = atoi(&p[8]);
196                 if ( (p[10] == 'T') && (p[13] == ':') ) {
197                         tm.tm_hour = atoi(&p[11]);
198                         tm.tm_min = atoi(&p[14]);
199                 }
200                 return mktime(&tm);
201         }
202
203         /* hmm... try RFC822 date stamp format */
204
205         t = parsedate(p);
206         if (t > 0) return(t);
207
208         /* yeesh.  ok, just return the current date and time. */
209         return(time(NULL));
210 }
211
212
213
214 void rss_xml_start(void *data, const char *supplied_el, const char **attr) {
215         struct rss_item *ri = (struct rss_item *) data;
216         char el[256];
217         char *sep = NULL;
218
219         /* Axe the namespace, we don't care about it */
220         safestrncpy(el, supplied_el, sizeof el);
221         while (sep = strchr(el, ':'), sep) {
222                 strcpy(el, ++sep);
223         }
224
225         if (!strcasecmp(el, "item")) {
226                 ++ri->item_tag_nesting;
227
228                 /* Initialize the feed item data structure */
229                 if (ri->guid != NULL) free(ri->guid);
230                 ri->guid = NULL;
231                 if (ri->title != NULL) free(ri->title);
232                 ri->title = NULL;
233                 if (ri->link != NULL) free(ri->link);
234                 ri->link = NULL;
235                 if (ri->description != NULL) free(ri->description);
236                 ri->description = NULL;
237
238                 /* Throw away any existing character data */
239                 if (ri->chardata_len > 0) {
240                         free(ri->chardata);
241                         ri->chardata = 0;
242                         ri->chardata_len = 0;
243                 }
244         }
245
246
247
248 }
249
250 void rss_xml_end(void *data, const char *supplied_el) {
251         struct rss_item *ri = (struct rss_item *) data;
252         char el[256];
253         char *sep = NULL;
254
255         /* Axe the namespace, we don't care about it */
256         safestrncpy(el, supplied_el, sizeof el);
257         while (sep = strchr(el, ':'), sep) {
258                 strcpy(el, ++sep);
259         }
260
261         if ( (!strcasecmp(el, "title")) && (ri->item_tag_nesting == 0) && (ri->chardata != NULL) ) {
262                 safestrncpy(ri->channel_title, ri->chardata, sizeof ri->channel_title);
263                 striplt(ri->channel_title);
264         }
265
266         if ( (!strcasecmp(el, "guid")) && (ri->chardata != NULL) ) {
267                 if (ri->guid != NULL) free(ri->guid);
268                 striplt(ri->chardata);
269                 ri->guid = strdup(ri->chardata);
270         }
271
272         if ( (!strcasecmp(el, "title")) && (ri->chardata != NULL) ) {
273                 if (ri->title != NULL) free(ri->title);
274                 striplt(ri->chardata);
275                 ri->title = strdup(ri->chardata);
276         }
277
278         if ( (!strcasecmp(el, "link")) && (ri->chardata != NULL) ) {
279                 if (ri->link != NULL) free(ri->link);
280                 striplt(ri->chardata);
281                 ri->link = strdup(ri->chardata);
282         }
283
284         if ( (!strcasecmp(el, "description")) && (ri->chardata != NULL) ) {
285                 if (ri->description != NULL) free(ri->description);
286                 ri->description = strdup(ri->chardata);
287         }
288
289         if ( ((!strcasecmp(el, "pubdate")) || (!strcasecmp(el, "date"))) && (ri->chardata != NULL) ) {
290                 striplt(ri->chardata);
291                 ri->pubdate = rdf_parsedate(ri->chardata);
292         }
293
294         if (!strcasecmp(el, "item")) {
295                 --ri->item_tag_nesting;
296                 rss_save_item(ri);
297         }
298
299         if ( (!strcasecmp(el, "rss")) || (!strcasecmp(el, "rdf")) ) {
300                 lprintf(CTDL_DEBUG, "End of feed detected.  Closing parser.\n");
301                 ri->done_parsing = 1;
302         }
303
304         if (ri->chardata_len > 0) {
305                 free(ri->chardata);
306                 ri->chardata = 0;
307                 ri->chardata_len = 0;
308         }
309
310 }
311
312
313 /*
314  * This callback stores up the data which appears in between tags.
315  */
316 void rss_xml_chardata(void *data, const XML_Char *s, int len) {
317         struct rss_item *ri = (struct rss_item *) data;
318         int old_len;
319         int new_len;
320         char *new_buffer;
321
322         old_len = ri->chardata_len;
323         new_len = old_len + len;
324         new_buffer = realloc(ri->chardata, new_len + 1);
325         if (new_buffer != NULL) {
326                 memcpy(&new_buffer[old_len], s, len);
327                 new_buffer[new_len] = 0;
328                 ri->chardata = new_buffer;
329                 ri->chardata_len = new_len;
330         }
331 }
332
333
334
335 /* 
336  * Parse a URL into host, port number, and resource identifier.
337  */
338 int parse_url(char *url, char *hostname, int *port, char *identifier)
339 {
340         char protocol[1024];
341         char scratch[1024];
342         char *ptr = NULL;
343         char *nptr = NULL;
344         
345         strcpy(scratch, url);
346         ptr = (char *)strchr(scratch, ':');
347         if (!ptr) {
348                 return(1);      /* no protocol specified */
349         }
350
351         strcpy(ptr, "");
352         strcpy(protocol, scratch);
353         if (strcmp(protocol, "http")) {
354                 return(2);      /* not HTTP */
355         }
356
357         strcpy(scratch, url);
358         ptr = (char *) strstr(scratch, "//");
359         if (!ptr) {
360                 return(3);      /* no server specified */
361         }
362         ptr += 2;
363
364         strcpy(hostname, ptr);
365         nptr = (char *)strchr(ptr, ':');
366         if (!nptr) {
367                 *port = 80;     /* default */
368                 nptr = (char *)strchr(hostname, '/');
369         }
370         else {
371                 sscanf(nptr, ":%d", port);
372                 nptr = (char *)strchr(hostname, ':');
373         }
374
375         if (nptr) {
376                 *nptr = '\0';
377         }
378
379         nptr = (char *)strchr(ptr, '/');
380         
381         if (!nptr) {
382                 return(4);      /* no url specified */
383         }
384         
385         strcpy(identifier, nptr);
386         return(0);
387 }
388
389
390 /*
391  * Begin a feed parse
392  */
393 void rss_do_fetching(char *url, char *rooms) {
394         char buf[1024];
395         char rsshost[1024];
396         int rssport = 80;
397         char rssurl[1024];
398         struct rss_item ri;
399         XML_Parser xp;
400         int sock = (-1);
401         int got_bytes = (-1);
402         int redirect_count = 0;
403
404         /* Parse the URL */
405         if (parse_url(url, rsshost, &rssport, rssurl) != 0) {
406                 lprintf(CTDL_ALERT, "Invalid URL: %s\n", url);
407         }
408
409         xp = XML_ParserCreateNS("UTF-8", ':');
410         if (!xp) {
411                 lprintf(CTDL_ALERT, "Cannot create XML parser!\n");
412                 return;
413         }
414
415         memset(&ri, 0, sizeof(struct rss_item));
416         ri.roomlist = rooms;
417         XML_SetElementHandler(xp, rss_xml_start, rss_xml_end);
418         XML_SetCharacterDataHandler(xp, rss_xml_chardata);
419         XML_SetUserData(xp, &ri);
420
421 retry:  lprintf(CTDL_NOTICE, "Connecting to <%s>\n", rsshost);
422         sprintf(buf, "%d", rssport);
423         sock = sock_connect(rsshost, buf, "tcp");
424         if (sock >= 0) {
425                 lprintf(CTDL_DEBUG, "Connected!\n");
426
427                 snprintf(buf, sizeof buf, "GET %s HTTP/1.0", rssurl);
428                 lprintf(CTDL_DEBUG, "<%s\n", buf);
429                 sock_puts(sock, buf);
430
431                 snprintf(buf, sizeof buf, "Host: %s", rsshost);
432                 lprintf(CTDL_DEBUG, "<%s\n", buf);
433                 sock_puts(sock, buf);
434
435                 snprintf(buf, sizeof buf, "User-Agent: %s", CITADEL);
436                 lprintf(CTDL_DEBUG, "<%s\n", buf);
437                 sock_puts(sock, buf);
438
439                 snprintf(buf, sizeof buf, "Accept: */*");
440                 lprintf(CTDL_DEBUG, "<%s\n", buf);
441                 sock_puts(sock, buf);
442
443                 sock_puts(sock, "");
444
445                 if (sock_getln(sock, buf, sizeof buf) >= 0) {
446                 lprintf(CTDL_DEBUG, ">%s\n", buf);
447                         remove_token(buf, 0, ' ');
448
449                         /* 200 OK */
450                         if (buf[0] == '2') {
451
452                                 while (got_bytes = sock_getln(sock, buf, sizeof buf),
453                                       (got_bytes >= 0 && (strcmp(buf, "")) && (strcmp(buf, "\r"))) ) {
454                                         /* discard headers */
455                                 }
456
457                                 while (got_bytes = sock_read(sock, buf, sizeof buf, 0),
458                                       ((got_bytes>=0) && (ri.done_parsing == 0)) ) {
459                                         XML_Parse(xp, buf, got_bytes, 0);
460                                 }
461                                 if (ri.done_parsing == 0) XML_Parse(xp, "", 0, 1);
462                         }
463
464                         /* 30X redirect */
465                         else if ( (!strncmp(buf, "30", 2)) && (redirect_count < 16) ) {
466                                 while (got_bytes = sock_getln(sock, buf, sizeof buf),
467                                       (got_bytes >= 0 && (strcmp(buf, "")) && (strcmp(buf, "\r"))) ) {
468                                         if (!strncasecmp(buf, "Location:", 9)) {
469                                                 ++redirect_count;
470                                                 strcpy(buf, &buf[9]);
471                                                 striplt(buf);
472                                                 if (parse_url(buf, rsshost, &rssport, rssurl) == 0) {
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
593         CtdlThreadAllocTSD();
594         /*
595          * Run RSS client no more frequently than once every n seconds
596          */
597 //      if ( (time(NULL) - last_run) < config.c_net_freq ) {
598 //              return;
599 //      }
600
601         /*
602          * This is a simple concurrency check to make sure only one rssclient run
603          * is done at a time.  We could do this with a mutex, but since we
604          * don't really require extremely fine granularity here, we'll do it
605          * with a static variable instead.
606          */
607         if (doing_rssclient) return NULL;
608         doing_rssclient = 1;
609
610         lprintf(CTDL_DEBUG, "rssclient started\n");
611         ForEachRoom(rssclient_scan_room, NULL);
612
613         while (rnclist != NULL) {
614                 rss_do_fetching(rnclist->url, rnclist->rooms);
615                 rptr = rnclist;
616                 rnclist = rnclist->next;
617                 if (rptr->rooms != NULL) free(rptr->rooms);
618                 free(rptr);
619         }
620
621         lprintf(CTDL_DEBUG, "rssclient ended\n");
622         last_run = time(NULL);
623         doing_rssclient = 0;
624         CtdlThreadSchedule ("RSS Client", CTDLTHREAD_BIGSTACK, rssclient_scan, NULL, last_run + config.c_net_freq);
625         return NULL;
626 }
627
628
629 #endif  /* HAVE_EXPAT */
630
631 CTDL_MODULE_INIT(rssclient)
632 {
633         if (threading)
634         {
635 #ifdef HAVE_EXPAT
636 //              CtdlRegisterSessionHook(rssclient_scan, EVT_TIMER);
637                 CtdlThreadSchedule ("RSS Client", CTDLTHREAD_BIGSTACK, rssclient_scan, NULL, 0);
638 #else
639                 lprintf(CTDL_INFO, "This server is missing the Expat XML parser.  RSS client will be disabled.\n");
640 #endif
641         }
642         
643         /* return our Subversion id for the Log */
644         return "$Id: serv_rssclient.c 5652 2007-10-29 20:14:48Z ajc $";
645 }