* rss_save_item(): trim the sender
[citadel.git] / citadel / modules / rssclient / serv_rssclient.c
1 /*
2  * $Id$
3  *
4  * Bring external RSS feeds into rooms.
5  *
6  * Copyright (c) 2007-2009 by the citadel.org team
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 3 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <stdio.h>
26
27 #if TIME_WITH_SYS_TIME
28 # include <sys/time.h>
29 # include <time.h>
30 #else
31 # if HAVE_SYS_TIME_H
32 #  include <sys/time.h>
33 # else
34 #  include <time.h>
35 # endif
36 #endif
37
38 #include <ctype.h>
39 #include <string.h>
40 #include <errno.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <expat.h>
44 #include <curl/curl.h>
45 #include <libcitadel.h>
46 #include "citadel.h"
47 #include "server.h"
48 #include "citserver.h"
49 #include "support.h"
50 #include "config.h"
51 #include "threads.h"
52 #include "ctdl_module.h"
53 #include "clientsocket.h"
54 #include "msgbase.h"
55 #include "parsedate.h"
56 #include "database.h"
57 #include "citadel_dirs.h"
58 #include "md5.h"
59 #include "context.h"
60
61 typedef struct rssnetcfg rssnetcfg;
62
63 struct rssnetcfg {
64         rssnetcfg *next;
65         char url[256];
66         char *rooms;
67         time_t last_error_when;
68         int ItemType;
69 };
70
71 #define RSS_UNSET 0
72 #define RSS_RSS 1
73 #define RSS_ATOM 2
74
75 typedef struct _rss_item {
76         char *chardata;
77         int chardata_len;
78         char *roomlist;
79         int done_parsing;
80         char *guid;
81         char *title;
82         char *link;
83         char *description;
84         time_t pubdate;
85         char channel_title[256];
86         int item_tag_nesting;
87         char *author_or_creator;
88         char *author_url;
89 }rss_item;
90
91
92 typedef struct _rsscollection {
93         rss_item *Item;
94         rssnetcfg *Cfg;
95         
96
97 } rsscollection;
98
99 struct rssnetcfg *rnclist = NULL;
100
101
102 #if 0
103 #ifdef HAVE_ICONV
104 #include <iconv.h>
105
106
107 /* 
108  * dug this out of the trashcan of the midgard project, lets see if it works for us.
109  * original code by Alexander Bokovoy <bokovoy@avilink.ne> distributed under GPL V2 or later
110  */
111
112 /* Returns: 
113  >= 0 - successfull, 0 means conversion doesn't use multibyte sequences 
114    -1 - error during iconv_open call 
115    -2 - error during iconv_close call 
116    ---------------------------------- 
117    This function expects that multibyte encoding in 'charset' wouldn't have 
118    characters with more than 3 bytes. It is not intended to convert UTF-8 because 
119    we'll never receive UTF-8 in our handler (it is handled by Exat itself). 
120 */ 
121 static int 
122 fill_encoding_info (const char *charset, XML_Encoding * info) 
123
124   iconv_t cd = (iconv_t)(-1); 
125   int flag; 
126         CtdlLogPrintf(0, "RSS: fill encoding info ...\n");
127  
128 #if G_BYTE_ORDER == G_LITTLE_ENDIAN 
129   cd = iconv_open ("UCS-2LE", charset); 
130 #else 
131   cd = iconv_open ("UCS-2BE", charset); 
132 #endif 
133  
134   if (cd == (iconv_t) (-1)) 
135     { 
136       return -1; 
137     } 
138  
139   { 
140     unsigned short out; 
141     unsigned char buf[4]; 
142     unsigned int i0, i1, i2; 
143     int result; 
144     flag = 0; 
145     for (i0 = 0; i0 < 0x100; i0++) 
146       { 
147         buf[0] = i0; 
148         info->map[i0] = 0; 
149         //result = try (cd, buf, 1, &out); 
150         if (result < 0) 
151           { 
152           } 
153         else if (result > 0) 
154           { 
155             info->map[i0] = out; 
156           } 
157         else 
158           { 
159             for (i1 = 0; i1 < 0x100; i1++) 
160               { 
161                 buf[1] = i1; 
162                 ///result = try (cd, buf, 2, &out); 
163                 if (result < 0) 
164                   { 
165                   } 
166                 else if (result > 0) 
167                   { 
168                     flag++; 
169                     info->map[i0] = -2; 
170                   } 
171                 else 
172                   { 
173                     for (i2 = 0; i2 < 0x100; i2++) 
174                       { 
175                         buf[2] = i2; 
176                         ////result = try (cd, buf, 3, &out); 
177                         if (result < 0) 
178                           { 
179                           } 
180                         else if (result > 0) 
181                           { 
182                             flag++; 
183                             info->map[i0] = -3; 
184                           } 
185                       } 
186                   } 
187               } 
188           } 
189       } 
190   } 
191  
192   if (iconv_close (cd) < 0) 
193     { 
194       return -2; 
195     } 
196   return flag; 
197
198
199 static int 
200 iconv_convertor (void *data, const char *s) 
201
202   XML_Encoding *info = data; 
203   int res; 
204         CtdlLogPrintf(0, "RSS: Converting ...\n");
205
206   if (s == NULL) 
207     return -1; 
208 /*
209   GByteArray *result; 
210   result = g_byte_array_new (); 
211   if (process_block (info->data, (char *) s, strlen (s), result) == 0) 
212     { 
213       res = *(result->data); 
214       g_byte_array_free (result, TRUE); 
215       return res; 
216     } 
217   g_byte_array_free (result, TRUE); 
218 */
219   return -1; 
220
221
222 static void 
223 my_release (void *data) 
224
225   iconv_t cd = (iconv_t) data; 
226   if (iconv_close (cd) != 0) 
227     { 
228 /// TODO: uh no.      exit (1); 
229     } 
230
231 int 
232 handle_unknown_xml_encoding (void *encodingHandleData, 
233                              const XML_Char * name, 
234                              XML_Encoding * info) 
235
236   int result; 
237   CtdlLogPrintf(0, "RSS: unknown encoding ...\n");
238   result = fill_encoding_info (name, info); 
239   if (result >= 0) 
240     { 
241       /*  
242         Special case: client asked for reverse conversion, we'll provide him with 
243         iconv descriptor which handles it. Client should release it by himself. 
244       */ 
245       if(encodingHandleData != NULL) 
246             *((iconv_t *)encodingHandleData) = iconv_open(name, "UTF-8"); 
247       /*  
248          Optimization: we do not need conversion function if encoding is one-to-one,  
249          info->map table will be enough  
250        */ 
251       if (result == 0) 
252         { 
253           info->data = NULL; 
254           info->convert = NULL; 
255           info->release = NULL; 
256           return 1; 
257         } 
258       /*  
259          We do need conversion function because this encoding uses multibyte sequences 
260        */ 
261       info->data = (void *) iconv_open ("UTF-8", name); 
262       if ((int)info->data == -1) 
263         return -1; 
264       info->convert = iconv_convertor; 
265       info->release = my_release; 
266       return 1; 
267     } 
268   if(encodingHandleData != NULL)  
269     *(iconv_t *)encodingHandleData = NULL; 
270   return 0; 
271
272
273 #endif
274 #endif
275
276 /*
277  * Commit a fetched and parsed RSS item to disk
278  */
279 void rss_save_item(rsscollection *rssc) {
280
281         struct MD5Context md5context;
282         u_char rawdigest[MD5_DIGEST_LEN];
283         int i;
284         char utmsgid[SIZ];
285         struct cdbdata *cdbut;
286         struct UseTable ut;
287         struct CtdlMessage *msg;
288         struct recptypes *recp = NULL;
289         int msglen = 0;
290         rss_item *ri = rssc->Item;
291
292         recp = (struct recptypes *) malloc(sizeof(struct recptypes));
293         if (recp == NULL) return;
294         memset(recp, 0, sizeof(struct recptypes));
295         memset(&ut, 0, sizeof(struct UseTable));
296         recp->recp_room = strdup(ri->roomlist);
297         recp->num_room = num_tokens(ri->roomlist, '|');
298         recp->recptypes_magic = RECPTYPES_MAGIC;
299    
300         /* Construct a GUID to use in the S_USETABLE table.
301          * If one is not present in the item itself, make one up.
302          */
303         if (ri->guid != NULL) {
304                 snprintf(utmsgid, sizeof utmsgid, "rss/%s", ri->guid);
305         }
306         else {
307                 MD5Init(&md5context);
308                 if (ri->title != NULL) {
309                         MD5Update(&md5context, (unsigned char*)ri->title, strlen(ri->title));
310                 }
311                 if (ri->link != NULL) {
312                         MD5Update(&md5context, (unsigned char*)ri->link, strlen(ri->link));
313                 }
314                 MD5Final(rawdigest, &md5context);
315                 for (i=0; i<MD5_DIGEST_LEN; i++) {
316                         sprintf(&utmsgid[i*2], "%02X", (unsigned char) (rawdigest[i] & 0xff));
317                         utmsgid[i*2] = tolower(utmsgid[i*2]);
318                         utmsgid[(i*2)+1] = tolower(utmsgid[(i*2)+1]);
319                 }
320                 strcat(utmsgid, "_rss2ctdl");
321         }
322
323         /* Find out if we've already seen this item */
324
325         cdbut = cdb_fetch(CDB_USETABLE, utmsgid, strlen(utmsgid));
326         if (cdbut != NULL) {
327                 /* Item has already been seen */
328                 CtdlLogPrintf(CTDL_DEBUG, "%s has already been seen\n", utmsgid);
329                 cdb_free(cdbut);
330
331                 /* rewrite the record anyway, to update the timestamp */
332                 strcpy(ut.ut_msgid, utmsgid);
333                 ut.ut_timestamp = time(NULL);
334                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
335         }
336         else {
337                 /* Item has not been seen, so save it. */
338                 CtdlLogPrintf(CTDL_DEBUG, "RSS: saving item...\n");
339                 if (ri->description == NULL) ri->description = strdup("");
340                 for (i=strlen(ri->description); i>=0; --i) {
341                         if (isspace(ri->description[i])) {
342                                 ri->description[i] = ' ';
343                         }
344                 }
345
346                 msg = malloc(sizeof(struct CtdlMessage));
347                 memset(msg, 0, sizeof(struct CtdlMessage));
348                 msg->cm_magic = CTDLMESSAGE_MAGIC;
349                 msg->cm_anon_type = MES_NORMAL;
350                 msg->cm_format_type = FMT_RFC822;
351
352                 if (ri->guid != NULL) {
353                         msg->cm_fields['E'] = strdup(ri->guid);
354                 }
355
356                 if (ri->author_or_creator != NULL) {
357                         char *From;
358                         StrBuf *Encoded, *QPEncoded;
359                         StrBuf *UserName;
360                         StrBuf *EmailAddress;
361                         StrBuf *EncBuf;
362                         
363                         UserName = NewStrBuf();
364                         EmailAddress = NewStrBuf();
365                         EncBuf = NewStrBuf();
366
367                         From = html_to_ascii(ri->author_or_creator,
368                                              strlen(ri->author_or_creator), 
369                                              512, 0);
370
371                         Encoded = NewStrBufPlain(From, -1);
372                         free(From);
373                         StrBufTrim(Encoded);
374                         QPEncoded = StrBufSanitizeEmailRecipientVector(Encoded, UserName, EmailAddress, EncBuf);
375                         msg->cm_fields['A'] = SmashStrBuf(&QPEncoded);
376
377                         FreeStrBuf(&Encoded);
378                         FreeStrBuf(&UserName);
379                         FreeStrBuf(&EmailAddress);
380                         FreeStrBuf(&EncBuf);
381
382                 }
383                 else {
384                         msg->cm_fields['A'] = strdup("rss");
385                 }
386
387                 msg->cm_fields['N'] = strdup(NODENAME);
388                 if (ri->title != NULL) {
389                         long len;
390                         char *Sbj;
391                         StrBuf *Encoded, *QPEncoded;
392
393                         QPEncoded = NULL;
394                         len = strlen(ri->title);
395                         Sbj = html_to_ascii(ri->title, len, 512, 0);
396                         Encoded = NewStrBufPlain(Sbj, -1);
397                         free(Sbj);
398
399                         StrBufTrim(Encoded);
400                         StrBufRFC2047encode(&QPEncoded, Encoded);
401
402                         msg->cm_fields['U'] = SmashStrBuf(&QPEncoded);
403                         FreeStrBuf(&Encoded);
404                 }
405                 msg->cm_fields['T'] = malloc(64);
406                 snprintf(msg->cm_fields['T'], 64, "%ld", ri->pubdate);
407                 if (ri->channel_title != NULL) {
408                         if (!IsEmptyStr(ri->channel_title)) {
409                                 msg->cm_fields['O'] = strdup(ri->channel_title);
410                         }
411                 }
412                 if (ri->link == NULL) 
413                         ri->link = strdup("");
414                 msglen += 1024 + strlen(ri->link) + strlen(ri->description) ;
415                 msg->cm_fields['M'] = malloc(msglen);
416                 snprintf(msg->cm_fields['M'], msglen,
417                         "Content-type: text/html; charset=\"UTF-8\"\r\n\r\n"
418                         "<html><body>\n"
419                         "%s<br><br>\n"
420                         "<a href=\"%s\">%s</a>\n"
421                         "</body></html>\n"
422                         ,
423                         ri->description,
424                         ri->link, ri->link
425                 );
426
427                 CtdlSubmitMsg(msg, recp, NULL, 0);
428                 CtdlFreeMessage(msg);
429
430                 /* write the uidl to the use table so we don't store this item again */
431                 strcpy(ut.ut_msgid, utmsgid);
432                 ut.ut_timestamp = time(NULL);
433                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
434         }
435         free_recipients(recp);
436 }
437
438
439
440 /*
441  * Convert an RDF/RSS datestamp into a time_t
442  */
443 time_t rdf_parsedate(char *p)
444 {
445         struct tm tm;
446         time_t t = 0;
447
448         if (!p) return 0L;
449         if (strlen(p) < 10) return 0L;
450
451         memset(&tm, 0, sizeof tm);
452
453         /*
454          * If the timestamp appears to be in W3C datetime format, try to
455          * parse it.  See also: http://www.w3.org/TR/NOTE-datetime
456          *
457          * This code, along with parsedate.c, is a potential candidate for
458          * moving into libcitadel.
459          */
460         if ( (p[4] == '-') && (p[7] == '-') ) {
461                 tm.tm_year = atoi(&p[0]) - 1900;
462                 tm.tm_mon = atoi(&p[5]) - 1;
463                 tm.tm_mday = atoi(&p[8]);
464                 if ( (p[10] == 'T') && (p[13] == ':') ) {
465                         tm.tm_hour = atoi(&p[11]);
466                         tm.tm_min = atoi(&p[14]);
467                 }
468                 return mktime(&tm);
469         }
470
471         /* hmm... try RFC822 date stamp format */
472
473         t = parsedate(p);
474         if (t > 0) return(t);
475
476         /* yeesh.  ok, just return the current date and time. */
477         return(time(NULL));
478 }
479
480 #define RSS_UNSET 0
481 #define RSS_RSS 1
482 #define RSS_ATOM 2
483
484 void flush_rss_ite(rss_item *ri)
485 {
486         /* Initialize the feed item data structure */
487         if (ri->guid != NULL) free(ri->guid);
488         ri->guid = NULL;
489         if (ri->title != NULL) free(ri->title);
490         ri->title = NULL;
491         if (ri->link != NULL) free(ri->link);
492         ri->link = NULL;
493         if (ri->author_or_creator != NULL) free(ri->author_or_creator);
494         ri->author_or_creator = NULL;
495         if (ri->author_url != NULL) free(ri->author_url);
496         ri->author_url = NULL;
497         if (ri->description != NULL) free(ri->description);
498         ri->description = NULL;
499         /* Throw away any existing character data */
500         if (ri->chardata_len > 0) {
501                 free(ri->chardata);
502                 ri->chardata = 0;
503                 ri->chardata_len = 0;
504         }
505 }
506
507 void rss_xml_start(void *data, const char *supplied_el, const char **attr) {
508         rsscollection *rssc = (rsscollection*) data;
509         rss_item *ri = rssc->Item;
510         char el[256];
511         char *sep = NULL;
512
513         /* Axe the namespace, we don't care about it */
514 ///     CtdlLogPrintf(0, "RSS: supplied el %d: %s...\n", rssc->Cfg->ItemType, supplied_el);
515         safestrncpy(el, supplied_el, sizeof el);
516         while (sep = strchr(el, ':'), sep) {
517                 strcpy(el, ++sep);
518         }
519
520         if ((rssc->Cfg->ItemType == RSS_UNSET) && !strcasecmp(el, "rss")) 
521         {
522                 CtdlLogPrintf(9, "RSS: This is an RSS feed.\n");
523                 rssc->Cfg->ItemType = RSS_RSS;
524         }
525         if ((rssc->Cfg->ItemType == RSS_UNSET) && !strcasecmp(el, "rdf")) 
526         {
527                 CtdlLogPrintf(9, "RSS: This is an RDF feed.\n");
528                 rssc->Cfg->ItemType = RSS_RSS;
529         }
530         else if ((rssc->Cfg->ItemType == RSS_UNSET) && !strcasecmp(el, "feed")) 
531         {
532                 CtdlLogPrintf(9, "RSS: This is an ATOM feed.\n");
533                 rssc->Cfg->ItemType = RSS_ATOM;
534         }
535         else if ((rssc->Cfg->ItemType == RSS_RSS) &&
536             !strcasecmp(el, "item")) 
537         {
538                 ri->item_tag_nesting ++ ;
539                 flush_rss_ite(ri);
540         }
541         else if ( (rssc->Cfg->ItemType == RSS_ATOM) &&
542                  !strcasecmp(el, "entry")) 
543         { /* Atom feed... */
544                 ++ri->item_tag_nesting;
545                 flush_rss_ite(ri);
546         }
547         else if ((rssc->Cfg->ItemType == RSS_ATOM) &&
548                  !strcasecmp(el, "link"))
549         {
550                 int found ;
551                 int i;
552
553                 for (found = 0, i = 0;!found && attr[i] != NULL; i+=2)
554                 {
555                         if (!strcmp(attr[i], "href"))
556                         {
557                                 found = 1;
558                                 if (ri->link != NULL)
559                                         free(ri->link);
560                                 ri->link = strdup(attr[i+1]);
561                                 striplt(ri->link);
562                         }
563                 }
564
565         }
566
567 }
568
569 void rss_xml_end(void *data, const char *supplied_el) {
570         rsscollection *rssc = (rsscollection*) data;
571         rss_item *ri = rssc->Item;
572         char el[256];
573         char *sep = NULL;
574
575         /* Axe the namespace, we don't care about it */
576         safestrncpy(el, supplied_el, sizeof el);
577         while (sep = strchr(el, ':'), sep) {
578                 strcpy(el, ++sep);
579         }
580 //      CtdlLogPrintf(0, "RSS: END %s...\n", el);
581
582         if ( (!strcasecmp(el, "title")) && (ri->item_tag_nesting == 0) && (ri->chardata != NULL) ) {
583                 safestrncpy(ri->channel_title, ri->chardata, sizeof ri->channel_title);
584                 striplt(ri->channel_title);
585         }
586
587         if ( (rssc->Cfg->ItemType == RSS_RSS) && 
588              (!strcasecmp(el, "guid")) && (ri->chardata != NULL) ) {
589                 if (ri->guid != NULL) free(ri->guid);
590                 striplt(ri->chardata);
591                 ri->guid = strdup(ri->chardata);
592         }
593         else if ( (rssc->Cfg->ItemType == RSS_ATOM) && 
594                   (!strcasecmp(el, "id")) && (ri->chardata != NULL) ) {
595                 if (ri->guid != NULL) free(ri->guid);
596                 striplt(ri->chardata);
597                 ri->guid = strdup(ri->chardata);
598         }
599
600         else if ( (rssc->Cfg->ItemType == RSS_RSS) && (!strcasecmp(el, "link")) && (ri->chardata != NULL) ) {
601                 if (ri->link != NULL) free(ri->link);
602                 striplt(ri->chardata);
603                 ri->link = strdup(ri->chardata);
604         }
605
606         else if ( (!strcasecmp(el, "title")) && (ri->chardata != NULL) ) {
607                 if (ri->title != NULL) free(ri->title);
608                 striplt(ri->chardata);
609                 ri->title = strdup(ri->chardata);
610         }
611
612         else if ((rssc->Cfg->ItemType == RSS_ATOM) && 
613                  (!strcasecmp(el, "content")) && 
614                  (ri->chardata != NULL) ) {
615                 if (ri->description != NULL) free(ri->description);
616                 ri->description = strdup(ri->chardata);
617         }
618         else if ( (rssc->Cfg->ItemType == RSS_RSS) && 
619                   (!strcasecmp(el, "description")) &&
620                   (ri->chardata != NULL) ) {
621                 if (ri->description != NULL) free(ri->description);
622                 ri->description = strdup(ri->chardata);
623         }
624                   
625         else if ((rssc->Cfg->ItemType == RSS_ATOM) && 
626                  ((!strcasecmp(el, "published")) ||
627                   (!strcasecmp(el, "updated"))) &&
628                  (ri->chardata != NULL) ) {
629                 striplt(ri->chardata);
630                 ri->pubdate = rdf_parsedate(ri->chardata);
631         }
632
633
634         else if ((rssc->Cfg->ItemType == RSS_RSS) && 
635                  ((!strcasecmp(el, "pubdate")) || 
636                   (!strcasecmp(el, "date"))) && 
637                  (ri->chardata != NULL) ) {
638                 striplt(ri->chardata);
639                 ri->pubdate = rdf_parsedate(ri->chardata);
640         }
641
642         else if ((rssc->Cfg->ItemType == RSS_RSS) && 
643                  ((!strcasecmp(el, "author")) || 
644                   (!strcasecmp(el, "creator"))) && 
645                  (ri->chardata != NULL) ) {
646                 if (ri->author_or_creator != NULL) free(ri->author_or_creator);
647                 striplt(ri->chardata);
648                 ri->author_or_creator = strdup(ri->chardata);
649         }
650
651         else if ((rssc->Cfg->ItemType == RSS_ATOM) && 
652                  (!strcasecmp(el, "name")) && 
653                  (ri->chardata != NULL) ) {
654                 if (ri->author_or_creator != NULL) free(ri->author_or_creator);
655                 striplt(ri->chardata);
656                 ri->author_or_creator = strdup(ri->chardata);
657         }
658         else if ((rssc->Cfg->ItemType == RSS_ATOM) && 
659                  (!strcasecmp(el, "uri")) && 
660                  (ri->chardata != NULL) ) {
661                 if (ri->author_url != NULL) free(ri->author_url);
662                 striplt(ri->chardata);
663                 ri->author_url = strdup(ri->chardata);
664         }
665
666         else if ((rssc->Cfg->ItemType == RSS_RSS) && 
667                  !strcasecmp(el, "item")) {
668                 --ri->item_tag_nesting;
669                 rss_save_item(rssc);
670         }
671         else if ((rssc->Cfg->ItemType == RSS_ATOM) && 
672                  !strcasecmp(el, "entry")) {
673                 --ri->item_tag_nesting;
674                 rss_save_item(rssc);
675         }
676
677         else if ( (!strcasecmp(el, "rss")) || 
678                   (!strcasecmp(el, "rdf")) ) {
679 //              CtdlLogPrintf(CTDL_DEBUG, "End of feed detected.  Closing parser.\n");
680                 ri->done_parsing = 1;
681         }
682
683         if (ri->chardata_len > 0) {
684                 free(ri->chardata);
685                 ri->chardata = 0;
686                 ri->chardata_len = 0;
687         }
688
689 }
690
691
692 /*
693  * This callback stores up the data which appears in between tags.
694  */
695 void rss_xml_chardata(void *data, const XML_Char *s, int len) {
696         rsscollection *rssc = (rsscollection*) data;
697         rss_item *ri = rssc->Item;
698         int old_len;
699         int new_len;
700         char *new_buffer;
701
702         old_len = ri->chardata_len;
703         new_len = old_len + len;
704         new_buffer = realloc(ri->chardata, new_len + 1);
705         if (new_buffer != NULL) {
706                 memcpy(&new_buffer[old_len], s, len);
707                 new_buffer[new_len] = 0;
708                 ri->chardata = new_buffer;
709                 ri->chardata_len = new_len;
710         }
711 }
712
713
714
715 /*
716  * Callback function for passing libcurl's output to expat for parsing
717  */
718 size_t rss_libcurl_callback(void *ptr, size_t size, size_t nmemb, void *stream)
719 {
720         XML_Parse((XML_Parser)stream, ptr, (size * nmemb), 0);
721         return (size*nmemb);
722 }
723
724
725
726 /*
727  * Begin a feed parse
728  */
729 void rss_do_fetching(rssnetcfg *Cfg) {
730         rsscollection rssc;
731         rss_item ri;
732         XML_Parser xp;
733
734         CURL *curl;
735         CURLcode res;
736         char errmsg[1024] = "";
737
738         rssc.Item = &ri;
739         rssc.Cfg = Cfg;
740
741         CtdlLogPrintf(CTDL_DEBUG, "Fetching RSS feed <%s>\n", Cfg->url);
742
743         curl = curl_easy_init();
744         if (!curl) {
745                 CtdlLogPrintf(CTDL_ALERT, "Unable to initialize libcurl.\n");
746                 return;
747         }
748
749         xp = XML_ParserCreateNS("UTF-8", ':');
750         if (!xp) {
751                 CtdlLogPrintf(CTDL_ALERT, "Cannot create XML parser!\n");
752                 curl_easy_cleanup(curl);
753                 return;
754         }
755
756         curl_easy_setopt(curl, CURLOPT_URL, Cfg->url);
757         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
758         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
759         curl_easy_setopt(curl, CURLOPT_WRITEDATA, xp);
760         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, rss_libcurl_callback);
761         curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errmsg);
762         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
763 #ifdef CURLOPT_HTTP_CONTENT_DECODING
764         curl_easy_setopt(curl, CURLOPT_HTTP_CONTENT_DECODING, 1);
765         curl_easy_setopt(curl, CURLOPT_ENCODING, "");
766 #endif
767         curl_easy_setopt(curl, CURLOPT_USERAGENT, CITADEL);
768         curl_easy_setopt(curl, CURLOPT_TIMEOUT, 180);           /* die after 180 seconds */
769         if (!IsEmptyStr(config.c_ip_addr)) {
770                 curl_easy_setopt(curl, CURLOPT_INTERFACE, config.c_ip_addr);
771         }
772
773         memset(&ri, 0, sizeof(rss_item));
774         ri.roomlist = Cfg->rooms;
775 #ifdef HAVE_ICONV
776 #if 0
777         XML_SetUnknownEncodingHandler(xp,
778                                       handle_unknown_xml_encoding,
779                                       NULL);
780 #endif
781 #endif
782         XML_SetElementHandler(xp, rss_xml_start, rss_xml_end);
783         XML_SetCharacterDataHandler(xp, rss_xml_chardata);
784         XML_SetUserData(xp, &rssc);
785         if (CtdlThreadCheckStop())
786         {
787                 XML_ParserFree(xp);
788                 curl_easy_cleanup(curl);
789                 return;
790         }
791         
792         if (CtdlThreadCheckStop())
793                 goto shutdown ;
794
795         res = curl_easy_perform(curl);
796         if (res) {
797                 CtdlLogPrintf(CTDL_ALERT, "libcurl error %d: %s\n", res, errmsg);
798         }
799
800         if (CtdlThreadCheckStop())
801                 goto shutdown ;
802
803         if (ri.done_parsing == 0)
804                 XML_Parse(xp, "", 0, 1);
805
806
807         CtdlLogPrintf(CTDL_ALERT, "RSS: XML Status [%s] \n", 
808                       XML_ErrorString(
809                               XML_GetErrorCode(xp)));
810
811 shutdown:
812         curl_easy_cleanup(curl);
813         XML_ParserFree(xp);
814
815         flush_rss_ite(&ri);
816 }
817
818
819 /*
820  * Scan a room's netconfig to determine whether it is requesting any RSS feeds
821  */
822 void rssclient_scan_room(struct ctdlroom *qrbuf, void *data)
823 {
824         char filename[PATH_MAX];
825         char buf[1024];
826         char instr[32];
827         FILE *fp;
828         char feedurl[256];
829         rssnetcfg *rncptr = NULL;
830         rssnetcfg *use_this_rncptr = NULL;
831         int len = 0;
832         char *ptr = NULL;
833
834         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_netcfg_dir);
835
836         if (CtdlThreadCheckStop())
837                 return;
838                 
839         /* Only do net processing for rooms that have netconfigs */
840         fp = fopen(filename, "r");
841         if (fp == NULL) {
842                 return;
843         }
844
845         while (fgets(buf, sizeof buf, fp) != NULL && !CtdlThreadCheckStop()) {
846                 buf[strlen(buf)-1] = 0;
847
848                 extract_token(instr, buf, 0, '|', sizeof instr);
849                 if (!strcasecmp(instr, "rssclient")) {
850
851                         use_this_rncptr = NULL;
852
853                         extract_token(feedurl, buf, 1, '|', sizeof feedurl);
854
855                         /* If any other rooms have requested the same feed, then we will just add this
856                          * room to the target list for that client request.
857                          */
858                         for (rncptr=rnclist; rncptr!=NULL; rncptr=rncptr->next) {
859                                 if (!strcmp(rncptr->url, feedurl)) {
860                                         use_this_rncptr = rncptr;
861                                 }
862                         }
863
864                         /* Otherwise create a new client request */
865                         if (use_this_rncptr == NULL) {
866                                 rncptr = (rssnetcfg *) malloc(sizeof(rssnetcfg));
867                                 rncptr->ItemType = RSS_UNSET;
868                                 if (rncptr != NULL) {
869                                         rncptr->next = rnclist;
870                                         safestrncpy(rncptr->url, feedurl, sizeof rncptr->url);
871                                         rncptr->rooms = NULL;
872                                         rnclist = rncptr;
873                                         use_this_rncptr = rncptr;
874                                 }
875                         }
876
877                         /* Add the room name to the request */
878                         if (use_this_rncptr != NULL) {
879                                 if (use_this_rncptr->rooms == NULL) {
880                                         rncptr->rooms = strdup(qrbuf->QRname);
881                                 }
882                                 else {
883                                         len = strlen(use_this_rncptr->rooms) + strlen(qrbuf->QRname) + 5;
884                                         ptr = realloc(use_this_rncptr->rooms, len);
885                                         if (ptr != NULL) {
886                                                 strcat(ptr, "|");
887                                                 strcat(ptr, qrbuf->QRname);
888                                                 use_this_rncptr->rooms = ptr;
889                                         }
890                                 }
891                         }
892                 }
893
894         }
895
896         fclose(fp);
897
898 }
899
900 /*
901  * Scan for rooms that have RSS client requests configured
902  */
903 void *rssclient_scan(void *args) {
904         static time_t last_run = 0L;
905         static int doing_rssclient = 0;
906         rssnetcfg *rptr = NULL;
907         CitContext rssclientCC;
908
909         /* Give this thread its own private CitContext */
910         CtdlFillSystemContext(&rssclientCC, "rssclient");
911         citthread_setspecific(MyConKey, (void *)&rssclientCC );
912
913         /*
914          * This is a simple concurrency check to make sure only one rssclient run
915          * is done at a time.  We could do this with a mutex, but since we
916          * don't really require extremely fine granularity here, we'll do it
917          * with a static variable instead.
918          */
919         if (doing_rssclient) return NULL;
920         doing_rssclient = 1;
921
922         CtdlLogPrintf(CTDL_DEBUG, "rssclient started\n");
923         CtdlForEachRoom(rssclient_scan_room, NULL);
924
925         while (rnclist != NULL && !CtdlThreadCheckStop()) {
926                 rss_do_fetching(rnclist);
927                 rptr = rnclist;
928                 rnclist = rnclist->next;
929                 if (rptr->rooms != NULL) free(rptr->rooms);
930                 free(rptr);
931         }
932
933         CtdlLogPrintf(CTDL_DEBUG, "rssclient ended\n");
934         last_run = time(NULL);
935         doing_rssclient = 0;
936         if (!CtdlThreadCheckStop())
937                 CtdlThreadSchedule ("RSS Client", CTDLTHREAD_BIGSTACK, rssclient_scan, NULL, last_run + config.c_net_freq);
938         else
939                 CtdlLogPrintf(CTDL_DEBUG, "rssclient: Task STOPPED.\n");
940         CtdlClearSystemContext();
941         return NULL;
942 }
943
944
945 CTDL_MODULE_INIT(rssclient)
946 {
947         if (threading)
948         {
949                 CtdlLogPrintf(CTDL_INFO, "%s\n", curl_version());
950                 CtdlThreadSchedule ("RSS Client", CTDLTHREAD_BIGSTACK, rssclient_scan, NULL, 0);
951         }
952         /* return our Subversion id for the Log */
953         return "$Id$";
954 }