Disable RSS-shorter link expander.
[citadel.git] / citadel / modules / rssclient / serv_rssclient.c
1 /*
2  * Bring external RSS feeds into rooms.
3  *
4  * Copyright (c) 2007-2010 by the citadel.org team
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <stdio.h>
24
25 #if TIME_WITH_SYS_TIME
26 # include <sys/time.h>
27 # include <time.h>
28 #else
29 # if HAVE_SYS_TIME_H
30 #  include <sys/time.h>
31 # else
32 #  include <time.h>
33 # endif
34 #endif
35
36 #include <ctype.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #include <expat.h>
42 #include <curl/curl.h>
43 #include <libcitadel.h>
44 #include "citadel.h"
45 #include "server.h"
46 #include "citserver.h"
47 #include "support.h"
48 #include "config.h"
49 #include "threads.h"
50 #include "ctdl_module.h"
51 #include "clientsocket.h"
52 #include "msgbase.h"
53 #include "parsedate.h"
54 #include "database.h"
55 #include "citadel_dirs.h"
56 #include "md5.h"
57 #include "context.h"
58
59
60 typedef struct rssnetcfg rssnetcfg;
61 struct rssnetcfg {
62         rssnetcfg *next;
63         char url[256];
64         char *rooms;
65         time_t last_error_when;
66         int ItemType;
67         time_t next_poll;
68 };
69
70 #define RSS_UNSET       (1<<0)
71 #define RSS_RSS         (1<<1)
72 #define RSS_ATOM        (1<<2)
73 #define RSS_REQUIRE_BUF (1<<3)
74
75 typedef struct _rss_item {
76         char *roomlist;
77         int done_parsing;
78         StrBuf *guid;
79         StrBuf *title;
80         StrBuf *link;
81         StrBuf *linkTitle;
82         StrBuf *reLink;
83         StrBuf *reLinkTitle;
84         StrBuf *description;
85         time_t pubdate;
86         StrBuf *channel_title;
87         int item_tag_nesting;
88         StrBuf *author_or_creator;
89         StrBuf *author_url;
90         StrBuf *author_email;
91 }rss_item;
92
93
94 typedef void (*rss_handler_func)(StrBuf *CData, 
95                                  rss_item *ri, 
96                                  rssnetcfg *Cfg, 
97                                  const char** Attr);
98
99 typedef struct __rss_xml_handler {
100         int Flags;
101         rss_handler_func Handler;
102 }rss_xml_handler;
103
104
105 typedef struct _rsscollection {
106         StrBuf *CData;
107         StrBuf *Key;
108
109         rss_item *Item;
110         rssnetcfg *Cfg;
111         
112         rss_xml_handler *Current;
113 } rsscollection;
114
115 struct rssnetcfg *rnclist = NULL;
116 HashList *StartHandlers = NULL;
117 HashList *EndHandlers = NULL;
118 HashList *KnownNameSpaces = NULL;
119 HashList *UrlShorteners = NULL;
120 void AddRSSStartHandler(rss_handler_func Handler, int Flags, const char *key, long len)
121 {
122         rss_xml_handler *h;
123         h = (rss_xml_handler*) malloc(sizeof (rss_xml_handler));
124         h->Flags = Flags;
125         h->Handler = Handler;
126         Put(StartHandlers, key, len, h, NULL);
127 }
128 void AddRSSEndHandler(rss_handler_func Handler, int Flags, const char *key, long len)
129 {
130         rss_xml_handler *h;
131         h = (rss_xml_handler*) malloc(sizeof (rss_xml_handler));
132         h->Flags = Flags;
133         h->Handler = Handler;
134         Put(EndHandlers, key, len, h, NULL);
135 }
136
137 #if 0
138 //#ifdef HAVE_ICONV
139 #include <iconv.h>
140
141
142 /* 
143  * dug this out of the trashcan of the midgard project, lets see if it works for us.
144  * original code by Alexander Bokovoy <bokovoy@avilink.ne> distributed under GPL V2 or later
145  */
146
147 /* Returns: 
148  >= 0 - successfull, 0 means conversion doesn't use multibyte sequences 
149    -1 - error during iconv_open call 
150    -2 - error during iconv_close call 
151    ---------------------------------- 
152    This function expects that multibyte encoding in 'charset' wouldn't have 
153    characters with more than 3 bytes. It is not intended to convert UTF-8 because 
154    we'll never receive UTF-8 in our handler (it is handled by Exat itself). 
155 */ 
156 static int 
157 fill_encoding_info (const char *charset, XML_Encoding * info) 
158
159   iconv_t cd = (iconv_t)(-1); 
160   int flag; 
161         syslog(LOG_EMERG, "RSS: fill encoding info ...\n");
162  
163 #if G_BYTE_ORDER == G_LITTLE_ENDIAN 
164   cd = iconv_open ("UCS-2LE", charset); 
165 #else 
166   cd = iconv_open ("UCS-2BE", charset); 
167 #endif 
168  
169   if (cd == (iconv_t) (-1)) 
170     { 
171       return -1; 
172     } 
173  
174   { 
175     unsigned short out = 0; 
176     unsigned char buf[4]; 
177     unsigned int i0, i1, i2; 
178     int result = 0; 
179     flag = 0; 
180     for (i0 = 0; i0 < 0x100; i0++) 
181       { 
182         buf[0] = i0; 
183         info->map[i0] = 0; 
184         //result = try (cd, buf, 1, &out); 
185         if (result < 0) 
186           { 
187           } 
188         else if (result > 0) 
189           { 
190             info->map[i0] = out; 
191           } 
192         else 
193           { 
194             for (i1 = 0; i1 < 0x100; i1++) 
195               { 
196                 buf[1] = i1; 
197                 ///result = try (cd, buf, 2, &out); 
198                 if (result < 0) 
199                   { 
200                   } 
201                 else if (result > 0) 
202                   { 
203                     flag++; 
204                     info->map[i0] = -2; 
205                   } 
206                 else 
207                   { 
208                     for (i2 = 0; i2 < 0x100; i2++) 
209                       { 
210                         buf[2] = i2; 
211                         ////result = try (cd, buf, 3, &out); 
212                         if (result < 0) 
213                           { 
214                           } 
215                         else if (result > 0) 
216                           { 
217                             flag++; 
218                             info->map[i0] = -3; 
219                           } 
220                       } 
221                   } 
222               } 
223           } 
224       } 
225   } 
226  
227   if (iconv_close (cd) < 0) 
228     { 
229       return -2; 
230     } 
231   return flag; 
232
233
234 static int 
235 iconv_convertor (void *data, const char *s) 
236
237   XML_Encoding *info = data; 
238   int res; 
239         syslog(LOG_EMERG, "RSS: Converting ...\n");
240
241   if (s == NULL) 
242     return -1; 
243 /*
244   GByteArray *result; 
245   result = g_byte_array_new (); 
246   if (process_block (info->data, (char *) s, strlen (s), result) == 0) 
247     { 
248       res = *(result->data); 
249       g_byte_array_free (result, TRUE); 
250       return res; 
251     } 
252   g_byte_array_free (result, TRUE); 
253 */
254   return -1; 
255
256
257 static void 
258 my_release (void *data) 
259
260   iconv_t cd = (iconv_t) data; 
261   if (iconv_close (cd) != 0) 
262     { 
263 /// TODO: uh no.      exit (1); 
264     } 
265
266 int 
267 handle_unknown_xml_encoding (void *encodingHandleData, 
268                              const XML_Char * name, 
269                              XML_Encoding * info) 
270
271   int result; 
272   syslog(LOG_EMERG, "RSS: unknown encoding ...\n");
273   result = fill_encoding_info (name, info); 
274   if (result >= 0) 
275     { 
276       /*  
277         Special case: client asked for reverse conversion, we'll provide him with 
278         iconv descriptor which handles it. Client should release it by himself. 
279       */ 
280       if(encodingHandleData != NULL) 
281             *((iconv_t *)encodingHandleData) = iconv_open(name, "UTF-8"); 
282       /*  
283          Optimization: we do not need conversion function if encoding is one-to-one,  
284          info->map table will be enough  
285        */ 
286       if (result == 0) 
287         { 
288           info->data = NULL; 
289           info->convert = NULL; 
290           info->release = NULL; 
291           return 1; 
292         } 
293       /*  
294          We do need conversion function because this encoding uses multibyte sequences 
295        */ 
296       info->data = (void *) iconv_open ("UTF-8", name); 
297       if ((int)info->data == -1) 
298         return -1; 
299       info->convert = iconv_convertor; 
300       info->release = my_release; 
301       return 1; 
302     } 
303   if(encodingHandleData != NULL)  
304     *(iconv_t *)encodingHandleData = NULL; 
305   return 0; 
306
307
308 ///#endif
309 #endif
310 size_t GetLocationString( void *ptr, size_t size, size_t nmemb, void *userdata)
311 {
312 #define LOCATION "location"
313         if (strncasecmp((char*)ptr, LOCATION, sizeof(LOCATION) - 1) == 0)
314         {
315                 StrBuf *pURL = (StrBuf*) userdata;
316                 char *pch = (char*) ptr;
317                 char *pche;
318                 
319                 pche = pch + (size * nmemb);
320                 pch += sizeof(LOCATION);
321                 
322                 while (isspace(*pch) || (*pch == ':'))
323                         pch ++;
324
325                 while (isspace(*pche) || (*pche == '\0'))
326                         pche--;
327                 
328                 FlushStrBuf(pURL);
329                 StrBufPlain(pURL, pch, pche - pch + 1); 
330         }
331         return size * nmemb;
332 }
333
334 int LookupUrl(StrBuf *ShorterUrlStr)
335 {
336         CURL *curl;
337         char errmsg[1024] = "";
338         StrBuf *Answer;
339         int rc = 0;
340
341         curl = curl_easy_init();
342         if (!curl) {
343                 syslog(LOG_ALERT, "Unable to initialize libcurl.\n");
344                 return 0;
345         }
346         Answer = NewStrBufPlain(NULL, SIZ);
347
348         curl_easy_setopt(curl, CURLOPT_URL, ChrPtr(ShorterUrlStr));
349         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
350         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
351         curl_easy_setopt(curl, CURLOPT_WRITEDATA, Answer);
352 //      curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, rss_libcurl_callback);
353         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, CurlFillStrBuf_callback);
354         curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errmsg);
355         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
356 #ifdef CURLOPT_HTTP_CONTENT_DECODING
357         curl_easy_setopt(curl, CURLOPT_HTTP_CONTENT_DECODING, 1);
358         curl_easy_setopt(curl, CURLOPT_ENCODING, "");
359 #endif
360         curl_easy_setopt(curl, CURLOPT_USERAGENT, CITADEL);
361         curl_easy_setopt(curl, CURLOPT_TIMEOUT, 180);           /* die after 180 seconds */
362         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 0);
363
364         curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION , GetLocationString);
365         curl_easy_setopt(curl, CURLOPT_WRITEHEADER, ShorterUrlStr);
366
367
368         if (
369                 (!IsEmptyStr(config.c_ip_addr))
370                 && (strcmp(config.c_ip_addr, "*"))
371                 && (strcmp(config.c_ip_addr, "::"))
372                 && (strcmp(config.c_ip_addr, "0.0.0.0"))
373         ) {
374                 curl_easy_setopt(curl, CURLOPT_INTERFACE, config.c_ip_addr);
375         }
376
377         if (server_shutting_down)
378                 goto shutdown ;
379
380         rc = curl_easy_perform(curl);
381         if (rc) {
382                 syslog(LOG_ALERT, "libcurl error %d: %s\n", rc, errmsg);
383                 rc = 0;
384         }
385         else 
386                 rc = 1;
387
388 shutdown:
389         FreeStrBuf(&Answer);
390         curl_easy_cleanup(curl);
391
392         return rc;
393
394 }
395
396
397
398 void CrawlMessageForShorterUrls(HashList *pUrls, StrBuf *Message)
399 {
400         int nHits = 0;
401         void *pv;
402         int nShorter = 0;
403         const char *pch;
404         const char *pUrl;
405         ConstStr *pCUrl;
406
407         while (GetHash(UrlShorteners, IKEY(nShorter), &pv))
408         {
409                 nShorter++;
410                 pch = ChrPtr(Message);
411                 pUrl = strstr(pch, ChrPtr((StrBuf*)pv));
412                 while ((pUrl != NULL) && (nHits < 99))
413                 {
414                         pCUrl = malloc(sizeof(ConstStr));
415
416                         pCUrl->Key = pUrl;
417                         pch = pUrl + StrLength((StrBuf*)pv);
418                         while (isalnum(*pch)||(*pch == '-')||(*pch == '/'))
419                                 pch++;
420                         pCUrl->len = pch - pCUrl->Key;
421
422                         Put(pUrls, IKEY(nHits), pCUrl, NULL);
423                         nHits ++;
424                         pUrl = strstr(pch, ChrPtr((StrBuf*)pv));
425                 }
426         }
427 }
428
429 int SortConstStrByPosition(const void *Item1, const void *Item2)
430 {
431         const ConstStr *p1, *p2;
432         p1 = (const ConstStr*) Item1;
433         p2 = (const ConstStr*) Item2;
434         if (p1->Key == p2->Key)
435                 return 0;
436         if (p1->Key > p2->Key)
437                 return 1;
438         return -1;
439 }
440
441 void ExpandShortUrls(StrBuf *Message)
442 {
443         StrBuf *Shadow;
444         HashList *pUrls;
445         ConstStr *pCUrl;
446         const char *pch;
447         const char *pche;
448
449         /* we just suspect URL shorteners to be inside of feeds from twitter
450          * or other short content messages, so don't crawl through real blogs.
451          */
452         if (StrLength(Message) > 500)
453                 return;
454
455         pUrls = NewHash(1, Flathash);
456         CrawlMessageForShorterUrls(pUrls, Message);
457
458         if (GetCount(pUrls) > 0)
459         {
460                 StrBuf *ShorterUrlStr;
461                 HashPos *Pos;
462                 const char *RetrKey;
463                 void *pv;
464                 long len;
465
466                 Shadow = NewStrBufPlain(NULL, StrLength(Message));
467                 SortByPayload (pUrls, SortConstStrByPosition);
468
469                 ShorterUrlStr = NewStrBufPlain(NULL, StrLength(Message));
470
471                 pch = ChrPtr(Message);
472                 pche = pch + StrLength(Message);
473                 Pos = GetNewHashPos(pUrls, 1);
474                 while (GetNextHashPos(pUrls, Pos, &len, &RetrKey, &pv))
475                 {
476                         pCUrl = (ConstStr*) pv;
477
478                         if (pch != pCUrl->Key)
479                                 StrBufAppendBufPlain(Shadow, pch, pCUrl->Key - pch, 0);
480                         
481                         StrBufPlain(ShorterUrlStr, CKEY(*pCUrl));
482                         if (LookupUrl(ShorterUrlStr))
483                         {
484                                 StrBufAppendBufPlain(Shadow, HKEY("<a href=\""), 0);
485                                 StrBufAppendBuf(Shadow, ShorterUrlStr, 0);
486                                 StrBufAppendBufPlain(Shadow, HKEY("\">"), 0);
487                                 StrBufAppendBuf(Shadow, ShorterUrlStr, 0);
488                                 StrBufAppendBufPlain(Shadow, HKEY("["), 0);
489                                 StrBufAppendBufPlain(Shadow, pCUrl->Key, pCUrl->len, 0);
490                                 StrBufAppendBufPlain(Shadow, HKEY("]</a>"), 0);
491                         }
492                         else
493                         {
494                                 StrBufAppendBufPlain(Shadow, HKEY("<a href=\""), 0);
495                                 StrBufAppendBufPlain(Shadow, pCUrl->Key, pCUrl->len, 0);
496                                 StrBufAppendBufPlain(Shadow, HKEY("\">"), 0);
497                                 StrBufAppendBufPlain(Shadow, pCUrl->Key, pCUrl->len, 0);
498                                 StrBufAppendBufPlain(Shadow, HKEY("</a>"), 0);
499                         }
500                         pch = pCUrl->Key + pCUrl->len + 1;
501
502                 }
503                 if (pch < pche)
504                         StrBufAppendBufPlain(Shadow, pch, pche - pch, 0);
505                 FlushStrBuf(Message);
506                 StrBufAppendBuf(Message, Shadow, 0);
507
508                 FreeStrBuf(&ShorterUrlStr);
509                 FreeStrBuf(&Shadow);
510                 DeleteHashPos(&Pos);
511         }
512
513         DeleteHash(&pUrls);
514 }
515
516
517 void AppendLink(StrBuf *Message, StrBuf *link, StrBuf *LinkTitle, const char *Title)
518 {
519         if (StrLength(link) > 0)
520         {
521                 StrBufAppendBufPlain(Message, HKEY("<a href=\""), 0);
522                 StrBufAppendBuf(Message, link, 0);
523                 StrBufAppendBufPlain(Message, HKEY("\">"), 0);
524                 if (StrLength(LinkTitle) > 0)
525                         StrBufAppendBuf(Message, LinkTitle, 0);
526                 else if ((Title != NULL) && !IsEmptyStr(Title))
527                         StrBufAppendBufPlain(Message, Title, -1, 0);
528                 else
529                         StrBufAppendBuf(Message, link, 0);
530                 StrBufAppendBufPlain(Message, HKEY("</a><br>\n"), 0);
531         }
532 }
533 /*
534  * Commit a fetched and parsed RSS item to disk
535  */
536 void rss_save_item(rss_item *ri)
537 {
538
539         struct MD5Context md5context;
540         u_char rawdigest[MD5_DIGEST_LEN];
541         int i;
542         char utmsgid[SIZ];
543         struct cdbdata *cdbut;
544         struct UseTable ut;
545         struct CtdlMessage *msg;
546         struct recptypes *recp = NULL;
547         int msglen = 0;
548         StrBuf *Message;
549
550         recp = (struct recptypes *) malloc(sizeof(struct recptypes));
551         if (recp == NULL) return;
552         memset(recp, 0, sizeof(struct recptypes));
553         memset(&ut, 0, sizeof(struct UseTable));
554         recp->recp_room = strdup(ri->roomlist);
555         recp->num_room = num_tokens(ri->roomlist, '|');
556         recp->recptypes_magic = RECPTYPES_MAGIC;
557    
558         /* Construct a GUID to use in the S_USETABLE table.
559          * If one is not present in the item itself, make one up.
560          */
561         if (ri->guid != NULL) {
562                 StrBufSpaceToBlank(ri->guid);
563                 StrBufTrim(ri->guid);
564                 snprintf(utmsgid, sizeof utmsgid, "rss/%s", ChrPtr(ri->guid));
565         }
566         else {
567                 MD5Init(&md5context);
568                 if (ri->title != NULL) {
569                         MD5Update(&md5context, (const unsigned char*)ChrPtr(ri->title), StrLength(ri->title));
570                 }
571                 if (ri->link != NULL) {
572                         MD5Update(&md5context, (const unsigned char*)ChrPtr(ri->link), StrLength(ri->link));
573                 }
574                 MD5Final(rawdigest, &md5context);
575                 for (i=0; i<MD5_DIGEST_LEN; i++) {
576                         sprintf(&utmsgid[i*2], "%02X", (unsigned char) (rawdigest[i] & 0xff));
577                         utmsgid[i*2] = tolower(utmsgid[i*2]);
578                         utmsgid[(i*2)+1] = tolower(utmsgid[(i*2)+1]);
579                 }
580                 strcat(utmsgid, "_rss2ctdl");
581         }
582
583         /* Find out if we've already seen this item */
584
585         cdbut = cdb_fetch(CDB_USETABLE, utmsgid, strlen(utmsgid));
586 #ifndef DEBUG_RSS
587         if (cdbut != NULL) {
588                 /* Item has already been seen */
589                 syslog(LOG_DEBUG, "%s has already been seen\n", utmsgid);
590                 cdb_free(cdbut);
591
592                 /* rewrite the record anyway, to update the timestamp */
593                 strcpy(ut.ut_msgid, utmsgid);
594                 ut.ut_timestamp = time(NULL);
595                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
596         }
597         else
598 #endif
599 {
600                 /* Item has not been seen, so save it. */
601                 syslog(LOG_DEBUG, "RSS: saving item...\n");
602                 if (ri->description == NULL) ri->description = NewStrBufPlain(HKEY(""));
603                 StrBufSpaceToBlank(ri->description);
604                 msg = malloc(sizeof(struct CtdlMessage));
605                 memset(msg, 0, sizeof(struct CtdlMessage));
606                 msg->cm_magic = CTDLMESSAGE_MAGIC;
607                 msg->cm_anon_type = MES_NORMAL;
608                 msg->cm_format_type = FMT_RFC822;
609
610                 if (ri->guid != NULL) {
611                         msg->cm_fields['E'] = strdup(ChrPtr(ri->guid));
612                 }
613
614                 if (ri->author_or_creator != NULL) {
615                         char *From;
616                         StrBuf *Encoded = NULL;
617                         int FromAt;
618                         
619                         From = html_to_ascii(ChrPtr(ri->author_or_creator),
620                                              StrLength(ri->author_or_creator), 
621                                              512, 0);
622                         StrBufPlain(ri->author_or_creator, From, -1);
623                         StrBufTrim(ri->author_or_creator);
624                         free(From);
625
626                         FromAt = strchr(ChrPtr(ri->author_or_creator), '@') != NULL;
627                         if (!FromAt && StrLength (ri->author_email) > 0)
628                         {
629                                 StrBufRFC2047encode(&Encoded, ri->author_or_creator);
630                                 msg->cm_fields['A'] = SmashStrBuf(&Encoded);
631                                 msg->cm_fields['P'] = SmashStrBuf(&ri->author_email);
632                         }
633                         else
634                         {
635                                 if (FromAt)
636                                 {
637                                         msg->cm_fields['A'] = SmashStrBuf(&ri->author_or_creator);
638                                         msg->cm_fields['P'] = strdup(msg->cm_fields['A']);
639                                 }
640                                 else 
641                                 {
642                                         StrBufRFC2047encode(&Encoded, ri->author_or_creator);
643                                         msg->cm_fields['A'] = SmashStrBuf(&Encoded);
644                                         msg->cm_fields['P'] = strdup("rss@localhost");
645                                 }
646                         }
647                 }
648                 else {
649                         msg->cm_fields['A'] = strdup("rss");
650                 }
651
652                 msg->cm_fields['N'] = strdup(NODENAME);
653                 if (ri->title != NULL) {
654                         long len;
655                         char *Sbj;
656                         StrBuf *Encoded, *QPEncoded;
657
658                         QPEncoded = NULL;
659                         StrBufSpaceToBlank(ri->title);
660                         len = StrLength(ri->title);
661                         Sbj = html_to_ascii(ChrPtr(ri->title), len, 512, 0);
662                         len = strlen(Sbj);
663                         if (Sbj[len - 1] == '\n')
664                         {
665                                 len --;
666                                 Sbj[len] = '\0';
667                         }
668                         Encoded = NewStrBufPlain(Sbj, len);
669                         free(Sbj);
670
671                         StrBufTrim(Encoded);
672                         StrBufRFC2047encode(&QPEncoded, Encoded);
673
674                         msg->cm_fields['U'] = SmashStrBuf(&QPEncoded);
675                         FreeStrBuf(&Encoded);
676                 }
677
678                 if (ri->pubdate <= 0) {
679                         ri->pubdate = time(NULL);
680                 }
681                 msg->cm_fields['T'] = malloc(64);
682                 snprintf(msg->cm_fields['T'], 64, "%ld", ri->pubdate);
683
684                 if (ri->channel_title != NULL) {
685                         if (StrLength(ri->channel_title) > 0) {
686                                 msg->cm_fields['O'] = strdup(ChrPtr(ri->channel_title));
687                         }
688                 }
689                 if (ri->link == NULL) 
690                         ri->link = NewStrBufPlain(HKEY(""));
691 #ifdef EXPERIMENTAL_SHORTER_URLS
692 /* its rather hard to implement this libevent compatible, so we don't ship it. */
693                 ExpandShortUrls(ri->description);
694 #endif
695                 msglen += 1024 + StrLength(ri->link) + StrLength(ri->description) ;
696
697                 Message = NewStrBufPlain(NULL, StrLength(ri->description));
698
699                 StrBufPlain(Message, HKEY(
700                          "Content-type: text/html; charset=\"UTF-8\"\r\n\r\n"
701                          "<html><body>\n"));
702
703                 StrBufAppendBuf(Message, ri->description, 0);
704                 StrBufAppendBufPlain(Message, HKEY("<br><br>\n"), 0);
705
706                 AppendLink(Message, ri->link, ri->linkTitle, NULL);
707                 AppendLink(Message, ri->reLink, ri->reLinkTitle, "Reply to this");
708                 StrBufAppendBufPlain(Message, HKEY("</body></html>\n"), 0);
709
710                 msg->cm_fields['M'] = SmashStrBuf(&Message);
711
712                 CtdlSubmitMsg(msg, recp, NULL, 0);
713                 CtdlFreeMessage(msg);
714
715                 /* write the uidl to the use table so we don't store this item again */
716                 strcpy(ut.ut_msgid, utmsgid);
717                 ut.ut_timestamp = time(NULL);
718                 cdb_store(CDB_USETABLE, utmsgid, strlen(utmsgid), &ut, sizeof(struct UseTable) );
719         }
720         free_recipients(recp);
721 }
722
723
724
725 /*
726  * Convert an RDF/RSS datestamp into a time_t
727  */
728 time_t rdf_parsedate(const char *p)
729 {
730         struct tm tm;
731         time_t t = 0;
732
733         if (!p) return 0L;
734         if (strlen(p) < 10) return 0L;
735
736         memset(&tm, 0, sizeof tm);
737
738         /*
739          * If the timestamp appears to be in W3C datetime format, try to
740          * parse it.  See also: http://www.w3.org/TR/NOTE-datetime
741          *
742          * This code, along with parsedate.c, is a potential candidate for
743          * moving into libcitadel.
744          */
745         if ( (p[4] == '-') && (p[7] == '-') ) {
746                 tm.tm_year = atoi(&p[0]) - 1900;
747                 tm.tm_mon = atoi(&p[5]) - 1;
748                 tm.tm_mday = atoi(&p[8]);
749                 if ( (p[10] == 'T') && (p[13] == ':') ) {
750                         tm.tm_hour = atoi(&p[11]);
751                         tm.tm_min = atoi(&p[14]);
752                 }
753                 return mktime(&tm);
754         }
755
756         /* hmm... try RFC822 date stamp format */
757
758         t = parsedate(p);
759         if (t > 0) return(t);
760
761         /* yeesh.  ok, just return the current date and time. */
762         return(time(NULL));
763 }
764
765 void flush_rss_item(rss_item *ri)
766 {
767         /* Initialize the feed item data structure */
768         FreeStrBuf(&ri->guid);
769         FreeStrBuf(&ri->title);
770         FreeStrBuf(&ri->link);
771         FreeStrBuf(&ri->linkTitle);
772         FreeStrBuf(&ri->reLink);
773         FreeStrBuf(&ri->reLinkTitle);
774         FreeStrBuf(&ri->description);
775         FreeStrBuf(&ri->channel_title);
776         FreeStrBuf(&ri->author_or_creator);
777         FreeStrBuf(&ri->author_url);
778         FreeStrBuf(&ri->author_email);
779 }
780
781 void rss_xml_start(void *data, const char *supplied_el, const char **attr)
782 {
783         rss_xml_handler *h;
784         rsscollection   *rssc = (rsscollection*) data;
785         rssnetcfg       *Cfg = rssc->Cfg;
786         rss_item        *ri = rssc->Item;
787         void            *pv;
788         const char      *pel;
789         char            *sep = NULL;
790
791         /* Axe the namespace, we don't care about it */
792 ///     syslog(LOG_EMERG, "RSS: supplied el %d: %s...\n", rssc->Cfg->ItemType, supplied_el);
793         pel = supplied_el;
794         while (sep = strchr(pel, ':'), sep) {
795                 pel = sep + 1;
796         }
797
798         if (pel != supplied_el)
799         {
800                 void *v;
801                 
802                 if (!GetHash(KnownNameSpaces, 
803                              supplied_el, 
804                              pel - supplied_el - 1,
805                              &v))
806                 {
807 #ifdef DEBUG_RSS
808                         syslog(LOG_EMERG, "RSS: START ignoring because of wrong namespace [%s] = [%s]\n", 
809                                       supplied_el);
810 #endif
811                         return;
812                 }
813         }
814
815         StrBufPlain(rssc->Key, pel, -1);
816         StrBufLowerCase(rssc->Key);
817         if (GetHash(StartHandlers, SKEY(rssc->Key), &pv))
818         {
819                 rssc->Current = h = (rss_xml_handler*) pv;
820
821                 if (((h->Flags & RSS_UNSET) != 0) && 
822                     (Cfg->ItemType == RSS_UNSET))
823                 {
824                         h->Handler(rssc->CData, ri, Cfg, attr);
825                 }
826                 else if (((h->Flags & RSS_RSS) != 0) &&
827                     (Cfg->ItemType == RSS_RSS))
828                 {
829                         h->Handler(rssc->CData, ri, Cfg, attr);
830                 }
831                 else if (((h->Flags & RSS_ATOM) != 0) &&
832                          (Cfg->ItemType == RSS_ATOM))
833                 {
834                         h->Handler(rssc->CData, ri, Cfg, attr);                 
835                 }
836 #ifdef DEBUG_RSS
837                 else 
838                         syslog(LOG_EMERG, "RSS: START unhandled: [%s] [%s]...\n", pel, supplied_el);
839 #endif
840         }
841 #ifdef DEBUG_RSS
842         else 
843                 syslog(LOG_EMERG, "RSS: START unhandled: [%s] [%s]...\n", pel,  supplied_el);
844 #endif
845 }
846
847 void rss_xml_end(void *data, const char *supplied_el)
848 {
849         rss_xml_handler *h;
850         rsscollection   *rssc = (rsscollection*) data;
851         rssnetcfg       *Cfg = rssc->Cfg;
852         rss_item        *ri = rssc->Item;
853         const char      *pel;
854         char            *sep = NULL;
855         void            *pv;
856
857         /* Axe the namespace, we don't care about it */
858         pel = supplied_el;
859         while (sep = strchr(pel, ':'), sep) {
860                 pel = sep + 1;
861         }
862 //      syslog(LOG_EMERG, "RSS: END %s...\n", el);
863         if (pel != supplied_el)
864         {
865                 void *v;
866                 
867                 if (!GetHash(KnownNameSpaces, 
868                              supplied_el, 
869                              pel - supplied_el - 1,
870                              &v))
871                 {
872 #ifdef DEBUG_RSS
873                         syslog(LOG_EMERG, "RSS: END ignoring because of wrong namespace [%s] = [%s]\n", 
874                                       supplied_el, ChrPtr(rssc->CData));
875 #endif
876                         FlushStrBuf(rssc->CData);
877                         return;
878                 }
879         }
880
881         StrBufPlain(rssc->Key, pel, -1);
882         StrBufLowerCase(rssc->Key);
883         if (GetHash(EndHandlers, SKEY(rssc->Key), &pv))
884         {
885                 h = (rss_xml_handler*) pv;
886
887                 if (((h->Flags & RSS_UNSET) != 0) && 
888                     (Cfg->ItemType == RSS_UNSET))
889                 {
890                         h->Handler(rssc->CData, ri, Cfg, NULL);
891                 }
892                 else if (((h->Flags & RSS_RSS) != 0) &&
893                     (Cfg->ItemType == RSS_RSS))
894                 {
895                         h->Handler(rssc->CData, ri, Cfg, NULL);
896                 }
897                 else if (((h->Flags & RSS_ATOM) != 0) &&
898                          (Cfg->ItemType == RSS_ATOM))
899                 {
900                         h->Handler(rssc->CData, ri, Cfg, NULL);
901                 }
902 #ifdef DEBUG_RSS
903                 else 
904                         syslog(LOG_EMERG, "RSS: END   unhandled: [%s]  [%s] = [%s]...\n", pel, supplied_el, ChrPtr(rssc->CData));
905 #endif
906         }
907 #ifdef DEBUG_RSS
908         else 
909                 syslog(LOG_EMERG, "RSS: END   unhandled: [%s]  [%s] = [%s]...\n", pel, supplied_el, ChrPtr(rssc->CData));
910 #endif
911         FlushStrBuf(rssc->CData);
912         rssc->Current = NULL;
913 }
914
915
916
917
918
919 void RSS_item_rss_start (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
920 {
921         syslog(LOG_DEBUG, "RSS: This is an RSS feed.\n");
922         Cfg->ItemType = RSS_RSS;
923 }
924
925 void RSS_item_rdf_start(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
926 {
927         syslog(LOG_DEBUG, "RSS: This is an RDF feed.\n");
928         Cfg->ItemType = RSS_RSS;
929 }
930
931 void ATOM_item_feed_start(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
932 {
933         syslog(LOG_DEBUG, "RSS: This is an ATOM feed.\n");
934         Cfg->ItemType = RSS_ATOM;
935 }
936
937
938 void RSS_item_item_start(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
939 {
940         ri->item_tag_nesting ++;
941         flush_rss_item(ri);
942 }
943
944 void ATOM_item_entry_start(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
945 {
946 /* Atom feed... */
947         ri->item_tag_nesting ++;
948         flush_rss_item(ri);
949 }
950
951 void ATOM_item_link_start (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
952 {
953         int i;
954         const char *pHref = NULL;
955         const char *pType = NULL;
956         const char *pRel = NULL;
957         const char *pTitle = NULL;
958
959         for (i = 0; Attr[i] != NULL; i+=2)
960         {
961                 if (!strcmp(Attr[i], "href"))
962                 {
963                         pHref = Attr[i+1];
964                 }
965                 else if (!strcmp(Attr[i], "rel"))
966                 {
967                         pRel = Attr[i+1];
968                 }
969                 else if (!strcmp(Attr[i], "type"))
970                 {
971                         pType = Attr[i+1];
972                 }
973                 else if (!strcmp(Attr[i], "title"))
974                 {
975                         pTitle = Attr[i+1];
976                 }
977         }
978         if (pHref == NULL)
979                 return; /* WHUT? Pointing... where? */
980         if ((pType != NULL) && !strcasecmp(pType, "application/atom+xml"))
981                 return; /* these just point to other rss resources, we're not interested in them. */
982         if (pRel != NULL)
983         {
984                 if (!strcasecmp (pRel, "replies"))
985                 {
986                         NewStrBufDupAppendFlush(&ri->reLink, NULL, pHref, -1);
987                         StrBufTrim(ri->link);
988                         NewStrBufDupAppendFlush(&ri->reLinkTitle, NULL, pTitle, -1);
989                 }
990                 else if (!strcasecmp(pRel, "alternate")) /* Alternative representation of this Item... */
991                 {
992                         NewStrBufDupAppendFlush(&ri->link, NULL, pHref, -1);
993                         StrBufTrim(ri->link);
994                         NewStrBufDupAppendFlush(&ri->linkTitle, NULL, pTitle, -1);
995
996                 }
997 #if 0 /* these are also defined, but dunno what to do with them.. */
998                 else if (!strcasecmp(pRel, "related"))
999                 {
1000                 }
1001                 else if (!strcasecmp(pRel, "self"))
1002                 {
1003                 }
1004                 else if (!strcasecmp(pRel, "enclosure"))
1005                 {/* this reference can get big, and is probably the full article... */
1006                 }
1007                 else if (!strcasecmp(pRel, "via"))
1008                 {/* this article was provided via... */
1009                 }
1010 #endif
1011         }
1012         else if (StrLength(ri->link) == 0)
1013         {
1014                 NewStrBufDupAppendFlush(&ri->link, NULL, pHref, -1);
1015                 StrBufTrim(ri->link);
1016                 NewStrBufDupAppendFlush(&ri->linkTitle, NULL, pTitle, -1);
1017         }
1018 }
1019
1020
1021
1022
1023 void ATOMRSS_item_title_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1024 {
1025         if ((ri->item_tag_nesting == 0) && (StrLength(CData) > 0)) {
1026                 NewStrBufDupAppendFlush(&ri->channel_title, CData, NULL, 0);
1027                 StrBufTrim(ri->channel_title);
1028         }
1029 }
1030
1031 void RSS_item_guid_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1032 {
1033         if (StrLength(CData) > 0) {
1034                 NewStrBufDupAppendFlush(&ri->guid, CData, NULL, 0);
1035         }
1036 }
1037
1038 void ATOM_item_id_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1039 {
1040         if (StrLength(CData) > 0) {
1041                 NewStrBufDupAppendFlush(&ri->guid, CData, NULL, 0);
1042         }
1043 }
1044
1045
1046 void RSS_item_link_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1047 {
1048         if (StrLength(CData) > 0) {
1049                 NewStrBufDupAppendFlush(&ri->link, CData, NULL, 0);
1050                 StrBufTrim(ri->link);
1051         }
1052 }
1053 void RSS_item_relink_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1054 {
1055         if (StrLength(CData) > 0) {
1056                 NewStrBufDupAppendFlush(&ri->reLink, CData, NULL, 0);
1057                 StrBufTrim(ri->reLink);
1058         }
1059 }
1060
1061 void RSSATOM_item_title_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1062 {
1063         if (StrLength(CData) > 0) {
1064                 NewStrBufDupAppendFlush(&ri->title, CData, NULL, 0);
1065                 StrBufTrim(ri->title);
1066         }
1067 }
1068
1069 void ATOM_item_content_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1070 {
1071         long olen = StrLength (ri->description);
1072         long clen = StrLength (CData);
1073         if (clen > 0) 
1074         {
1075                 if (olen == 0) {
1076                         NewStrBufDupAppendFlush(&ri->description, CData, NULL, 0);
1077                         StrBufTrim(ri->description);
1078                 }
1079                 else if (olen < clen) {
1080                         FlushStrBuf(ri->description);
1081                         NewStrBufDupAppendFlush(&ri->description, CData, NULL, 0);
1082                         StrBufTrim(ri->description);
1083                 }
1084         }
1085 }
1086 void ATOM_item_summary_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1087 {
1088         /* this can contain an abstract of the article. but we don't want to verwrite a full document if we already have it. */
1089         if ((StrLength(CData) > 0) && (StrLength(ri->description) == 0))
1090         {
1091                 NewStrBufDupAppendFlush(&ri->description, CData, NULL, 0);
1092                 StrBufTrim(ri->description);
1093         }
1094 }
1095
1096 void RSS_item_description_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1097 {
1098         long olen = StrLength (ri->description);
1099         long clen = StrLength (CData);
1100         if (clen > 0) 
1101         {
1102                 if (olen == 0) {
1103                         NewStrBufDupAppendFlush(&ri->description, CData, NULL, 0);
1104                         StrBufTrim(ri->description);
1105                 }
1106                 else if (olen < clen) {
1107                         FlushStrBuf(ri->description);
1108                         NewStrBufDupAppendFlush(&ri->description, CData, NULL, 0);
1109                         StrBufTrim(ri->description);
1110                 }
1111         }
1112 }
1113
1114 void ATOM_item_published_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1115 {                 
1116         if (StrLength(CData) > 0) {
1117                 StrBufTrim(CData);
1118                 ri->pubdate = rdf_parsedate(ChrPtr(CData));
1119         }
1120 }
1121
1122 void ATOM_item_updated_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1123 {
1124         if (StrLength(CData) > 0) {
1125                 StrBufTrim(CData);
1126                 ri->pubdate = rdf_parsedate(ChrPtr(CData));
1127         }
1128 }
1129
1130 void RSS_item_pubdate_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1131 {
1132         if (StrLength(CData) > 0) {
1133                 StrBufTrim(CData);
1134                 ri->pubdate = rdf_parsedate(ChrPtr(CData));
1135         }
1136 }
1137
1138
1139 void RSS_item_date_end (StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1140 {
1141         if (StrLength(CData) > 0) {
1142                 StrBufTrim(CData);
1143                 ri->pubdate = rdf_parsedate(ChrPtr(CData));
1144         }
1145 }
1146
1147
1148
1149 void RSS_item_author_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1150 {
1151         if (StrLength(CData) > 0) {
1152                 NewStrBufDupAppendFlush(&ri->author_or_creator, CData, NULL, 0);
1153                 StrBufTrim(ri->author_or_creator);
1154         }
1155 }
1156
1157
1158 void ATOM_item_name_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1159 {
1160         if (StrLength(CData) > 0) {
1161                 NewStrBufDupAppendFlush(&ri->author_or_creator, CData, NULL, 0);
1162                 StrBufTrim(ri->author_or_creator);
1163         }
1164 }
1165
1166 void ATOM_item_email_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1167 {
1168         if (StrLength(CData) > 0) {
1169                 NewStrBufDupAppendFlush(&ri->author_email, CData, NULL, 0);
1170                 StrBufTrim(ri->author_email);
1171         }
1172 }
1173
1174 void RSS_item_creator_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1175 {
1176         if ((StrLength(CData) > 0) && 
1177             (StrLength(ri->author_or_creator) == 0))
1178         {
1179                 NewStrBufDupAppendFlush(&ri->author_or_creator, CData, NULL, 0);
1180                 StrBufTrim(ri->author_or_creator);
1181         }
1182 }
1183
1184
1185 void ATOM_item_uri_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1186 {
1187         if (StrLength(CData) > 0) {
1188                 NewStrBufDupAppendFlush(&ri->author_url, CData, NULL, 0);
1189                 StrBufTrim(ri->author_url);
1190         }
1191 }
1192
1193 void RSS_item_item_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1194 {
1195         --ri->item_tag_nesting;
1196         rss_save_item(ri);
1197 }
1198
1199
1200 void ATOM_item_entry_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1201 {
1202         --ri->item_tag_nesting;
1203         rss_save_item(ri);
1204 }
1205
1206 void RSS_item_rss_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1207 {
1208 //              syslog(LOG_DEBUG, "End of feed detected.  Closing parser.\n");
1209         ri->done_parsing = 1;
1210         
1211 }
1212 void RSS_item_rdf_end(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1213 {
1214 //              syslog(LOG_DEBUG, "End of feed detected.  Closing parser.\n");
1215         ri->done_parsing = 1;
1216 }
1217
1218
1219 void RSSATOM_item_ignore(StrBuf *CData, rss_item *ri, rssnetcfg *Cfg, const char** Attr)
1220 {
1221 }
1222
1223
1224
1225 /*
1226  * This callback stores up the data which appears in between tags.
1227  */
1228 void rss_xml_cdata_start(void *data) 
1229 {
1230         rsscollection *rssc = (rsscollection*) data;
1231
1232         FlushStrBuf(rssc->CData);
1233 }
1234
1235 void rss_xml_cdata_end(void *data) 
1236 {
1237 }
1238 void rss_xml_chardata(void *data, const XML_Char *s, int len) 
1239 {
1240         rsscollection *rssc = (rsscollection*) data;
1241
1242         StrBufAppendBufPlain (rssc->CData, s, len, 0);
1243 }
1244
1245 /*
1246  * Callback function for passing libcurl's output to expat for parsing
1247  */
1248 size_t rss_libcurl_callback(void *ptr, size_t size, size_t nmemb, void *stream)
1249 {
1250         XML_Parse((XML_Parser)stream, ptr, (size * nmemb), 0);
1251         return (size*nmemb);
1252 }
1253
1254
1255
1256 /*
1257  * Begin a feed parse
1258  */
1259 void rss_do_fetching(rssnetcfg *Cfg) {
1260         rsscollection rssc;
1261         rss_item ri;
1262         XML_Parser xp = NULL;
1263         StrBuf *Answer;
1264
1265         CURL *curl;
1266         CURLcode res;
1267         char errmsg[1024] = "";
1268         char *ptr;
1269         const char *at;
1270         long len;
1271
1272         time_t now;
1273
1274         now = time(NULL);
1275
1276         if ((Cfg->next_poll != 0) && (now < Cfg->next_poll))
1277                 return;
1278         memset(&ri, 0, sizeof(rss_item));
1279         rssc.Item = &ri;
1280         rssc.Cfg = Cfg;
1281
1282         syslog(LOG_DEBUG, "Fetching RSS feed <%s>\n", Cfg->url);
1283
1284         curl = curl_easy_init();
1285         if (!curl) {
1286                 syslog(LOG_ALERT, "Unable to initialize libcurl.\n");
1287                 return;
1288         }
1289         Answer = NewStrBufPlain(NULL, SIZ);
1290
1291         curl_easy_setopt(curl, CURLOPT_URL, Cfg->url);
1292         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
1293         curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
1294         curl_easy_setopt(curl, CURLOPT_WRITEDATA, Answer);
1295 //      curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, rss_libcurl_callback);
1296         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, CurlFillStrBuf_callback);
1297         curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errmsg);
1298         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
1299 #ifdef CURLOPT_HTTP_CONTENT_DECODING
1300         curl_easy_setopt(curl, CURLOPT_HTTP_CONTENT_DECODING, 1);
1301         curl_easy_setopt(curl, CURLOPT_ENCODING, "");
1302 #endif
1303         curl_easy_setopt(curl, CURLOPT_USERAGENT, CITADEL);
1304         curl_easy_setopt(curl, CURLOPT_TIMEOUT, 180);           /* die after 180 seconds */
1305         if (
1306                 (!IsEmptyStr(config.c_ip_addr))
1307                 && (strcmp(config.c_ip_addr, "*"))
1308                 && (strcmp(config.c_ip_addr, "::"))
1309                 && (strcmp(config.c_ip_addr, "0.0.0.0"))
1310         ) {
1311                 curl_easy_setopt(curl, CURLOPT_INTERFACE, config.c_ip_addr);
1312         }
1313
1314         if (server_shutting_down)
1315         {
1316                 curl_easy_cleanup(curl);
1317                 return;
1318         }
1319         
1320         if (server_shutting_down)
1321                 goto shutdown ;
1322
1323         res = curl_easy_perform(curl);
1324         if (res) {
1325                 syslog(LOG_ALERT, "libcurl error %d: %s\n", res, errmsg);
1326         }
1327
1328         if (server_shutting_down)
1329                 goto shutdown ;
1330
1331
1332
1333
1334         memset(&ri, 0, sizeof(rss_item));
1335         ri.roomlist = Cfg->rooms;
1336         rssc.CData = NewStrBufPlain(NULL, SIZ);
1337         rssc.Key = NewStrBuf();
1338         at = NULL;
1339         StrBufSipLine(rssc.Key, Answer, &at);
1340         ptr = NULL;
1341
1342 #define encoding "encoding=\""
1343         ptr = strstr(ChrPtr(rssc.Key), encoding);
1344         if (ptr != NULL)
1345         {
1346                 char *pche;
1347
1348                 ptr += sizeof (encoding) - 1;
1349                 pche = strchr(ptr, '"');
1350                 if (pche != NULL)
1351                         StrBufCutAt(rssc.Key, -1, pche);
1352                 else 
1353                         ptr = "UTF-8";
1354         }
1355         else
1356                 ptr = "UTF-8";
1357
1358
1359         xp = XML_ParserCreateNS(ptr, ':');
1360         if (!xp) {
1361                 syslog(LOG_ALERT, "Cannot create XML parser!\n");
1362                 goto shutdown;
1363         }
1364         FlushStrBuf(rssc.Key);
1365 //#ifdef HAVE_ICONV
1366 #if 0
1367         XML_SetUnknownEncodingHandler(xp,
1368                                       handle_unknown_xml_encoding,
1369                                       &rssc);
1370 #endif
1371 //#endif
1372         XML_SetElementHandler(xp, rss_xml_start, rss_xml_end);
1373         XML_SetCharacterDataHandler(xp, rss_xml_chardata);
1374         XML_SetUserData(xp, &rssc);
1375         XML_SetCdataSectionHandler(xp,
1376                                    rss_xml_cdata_start,
1377                                    rss_xml_cdata_end);
1378
1379
1380         len = StrLength(Answer);
1381         ptr = SmashStrBuf(&Answer);
1382         XML_Parse(xp, ptr, len, 0);
1383         free (ptr);
1384         if (ri.done_parsing == 0)
1385                 XML_Parse(xp, "", 0, 1);
1386
1387
1388         syslog(LOG_ALERT, "RSS: XML Status [%s] \n", 
1389                       XML_ErrorString(
1390                               XML_GetErrorCode(xp)));
1391
1392 shutdown:
1393         FreeStrBuf(&Answer);
1394         curl_easy_cleanup(curl);
1395         XML_ParserFree(xp);
1396
1397         flush_rss_item(&ri);
1398         FreeStrBuf(&rssc.CData);
1399         FreeStrBuf(&rssc.Key);
1400
1401         Cfg->next_poll = time(NULL) + config.c_net_freq; 
1402 }
1403
1404
1405 /*
1406  * Scan a room's netconfig to determine whether it is requesting any RSS feeds
1407  */
1408 void rssclient_scan_room(struct ctdlroom *qrbuf, void *data)
1409 {
1410         char filename[PATH_MAX];
1411         char buf[1024];
1412         char instr[32];
1413         FILE *fp;
1414         char feedurl[256];
1415         rssnetcfg *rncptr = NULL;
1416         rssnetcfg *use_this_rncptr = NULL;
1417         int len = 0;
1418         char *ptr = NULL;
1419
1420         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_netcfg_dir);
1421
1422         if (server_shutting_down)
1423                 return;
1424                 
1425         /* Only do net processing for rooms that have netconfigs */
1426         fp = fopen(filename, "r");
1427         if (fp == NULL) {
1428                 return;
1429         }
1430
1431         while (fgets(buf, sizeof buf, fp) != NULL && !server_shutting_down) {
1432                 buf[strlen(buf)-1] = 0;
1433
1434                 extract_token(instr, buf, 0, '|', sizeof instr);
1435                 if (!strcasecmp(instr, "rssclient")) {
1436
1437                         use_this_rncptr = NULL;
1438
1439                         extract_token(feedurl, buf, 1, '|', sizeof feedurl);
1440
1441                         /* If any other rooms have requested the same feed, then we will just add this
1442                          * room to the target list for that client request.
1443                          */
1444                         for (rncptr=rnclist; rncptr!=NULL; rncptr=rncptr->next) {
1445                                 if (!strcmp(rncptr->url, feedurl)) {
1446                                         use_this_rncptr = rncptr;
1447                                 }
1448                         }
1449
1450                         /* Otherwise create a new client request */
1451                         if (use_this_rncptr == NULL) {
1452                                 rncptr = (rssnetcfg *) malloc(sizeof(rssnetcfg));
1453                                 memset(rncptr, 0, sizeof(rssnetcfg));
1454                                 rncptr->ItemType = RSS_UNSET;
1455                                 if (rncptr != NULL) {
1456                                         rncptr->next = rnclist;
1457                                         safestrncpy(rncptr->url, feedurl, sizeof rncptr->url);
1458                                         rncptr->rooms = NULL;
1459                                         rnclist = rncptr;
1460                                         use_this_rncptr = rncptr;
1461                                 }
1462                         }
1463
1464                         /* Add the room name to the request */
1465                         if (use_this_rncptr != NULL) {
1466                                 if (use_this_rncptr->rooms == NULL) {
1467                                         rncptr->rooms = strdup(qrbuf->QRname);
1468                                 }
1469                                 else {
1470                                         len = strlen(use_this_rncptr->rooms) + strlen(qrbuf->QRname) + 5;
1471                                         ptr = realloc(use_this_rncptr->rooms, len);
1472                                         if (ptr != NULL) {
1473                                                 strcat(ptr, "|");
1474                                                 strcat(ptr, qrbuf->QRname);
1475                                                 use_this_rncptr->rooms = ptr;
1476                                         }
1477                                 }
1478                         }
1479                 }
1480
1481         }
1482
1483         fclose(fp);
1484
1485 }
1486
1487 /*
1488  * Scan for rooms that have RSS client requests configured
1489  */
1490 void rssclient_scan(void) {
1491         static time_t last_run = 0L;
1492         static int doing_rssclient = 0;
1493         rssnetcfg *rptr = NULL;
1494
1495         /* Run no more than once every 15 minutes. */
1496         if ((time(NULL) - last_run) < 900) {
1497                 return;
1498         }
1499
1500         /*
1501          * This is a simple concurrency check to make sure only one rssclient run
1502          * is done at a time.  We could do this with a mutex, but since we
1503          * don't really require extremely fine granularity here, we'll do it
1504          * with a static variable instead.
1505          */
1506         if (doing_rssclient) return;
1507         doing_rssclient = 1;
1508
1509         syslog(LOG_DEBUG, "rssclient started\n");
1510         CtdlForEachRoom(rssclient_scan_room, NULL);
1511
1512         while (rnclist != NULL && !server_shutting_down) {
1513                 rss_do_fetching(rnclist);
1514                 rptr = rnclist;
1515                 rnclist = rnclist->next;
1516                 if (rptr->rooms != NULL) free(rptr->rooms);
1517                 free(rptr);
1518         }
1519
1520         syslog(LOG_DEBUG, "rssclient ended\n");
1521         last_run = time(NULL);
1522         doing_rssclient = 0;
1523         return;
1524 }
1525
1526 void LoadUrlShorteners(void)
1527 {
1528         int i = 0;
1529         int fd;
1530         const char *POS = NULL;
1531         const char *Err = NULL;
1532         StrBuf *Content, *Line;
1533
1534
1535         UrlShorteners = NewHash(0, Flathash);
1536
1537         fd = open(file_citadel_urlshorteners, 0);
1538
1539         if (fd != 0)
1540         {
1541                 Content = NewStrBufPlain(NULL, SIZ);
1542                 Line = NewStrBuf();
1543                 while (POS != StrBufNOTNULL)
1544                 {
1545                         StrBufTCP_read_buffered_line_fast (Line, Content, &POS, &fd, 1, 1, &Err);
1546                         StrBufTrim(Line);
1547                         if ((*ChrPtr(Line) != '#') && (StrLength(Line) > 0))
1548                         {
1549                                 Put(UrlShorteners, IKEY(i), Line, HFreeStrBuf);
1550                                 i++;
1551                                 Line = NewStrBuf();
1552                         }
1553                         else
1554                                 FlushStrBuf(Line);
1555                         if (POS == NULL)
1556                                 POS = StrBufNOTNULL;
1557                 }
1558                 FreeStrBuf(&Line);
1559                 FreeStrBuf(&Content);
1560         }
1561         close(fd);
1562 }
1563
1564 void rss_cleanup(void)
1565 {
1566         DeleteHash(&StartHandlers);
1567         DeleteHash(&EndHandlers);
1568         DeleteHash(&UrlShorteners);
1569         DeleteHash(&KnownNameSpaces);
1570 }
1571
1572 CTDL_MODULE_INIT(rssclient)
1573 {
1574         if (threading)
1575         {
1576                 syslog(LOG_INFO, "%s\n", curl_version());
1577                 CtdlRegisterSessionHook(rssclient_scan, EVT_TIMER);
1578         }
1579         else 
1580         {
1581                 LoadUrlShorteners ();
1582
1583                 StartHandlers = NewHash(1, NULL);
1584                 EndHandlers = NewHash(1, NULL);
1585
1586                 AddRSSStartHandler(RSS_item_rss_start,     RSS_UNSET, HKEY("rss"));
1587                 AddRSSStartHandler(RSS_item_rdf_start,     RSS_UNSET, HKEY("rdf"));
1588                 AddRSSStartHandler(ATOM_item_feed_start,    RSS_UNSET, HKEY("feed"));
1589                 AddRSSStartHandler(RSS_item_item_start,    RSS_RSS, HKEY("item"));
1590                 AddRSSStartHandler(ATOM_item_entry_start,  RSS_ATOM, HKEY("entry"));
1591                 AddRSSStartHandler(ATOM_item_link_start,   RSS_ATOM, HKEY("link"));
1592
1593                 AddRSSEndHandler(ATOMRSS_item_title_end,   RSS_ATOM|RSS_RSS|RSS_REQUIRE_BUF, HKEY("title"));
1594                 AddRSSEndHandler(RSS_item_guid_end,        RSS_RSS|RSS_REQUIRE_BUF, HKEY("guid"));
1595                 AddRSSEndHandler(ATOM_item_id_end,         RSS_ATOM|RSS_REQUIRE_BUF, HKEY("id"));
1596                 AddRSSEndHandler(RSS_item_link_end,        RSS_RSS|RSS_REQUIRE_BUF, HKEY("link"));
1597 #if 0 
1598 // hm, rss to the comments of that blog, might be interesting in future, but... 
1599                 AddRSSEndHandler(RSS_item_relink_end,      RSS_RSS|RSS_REQUIRE_BUF, HKEY("commentrss"));
1600 // comment count...
1601                 AddRSSEndHandler(RSS_item_relink_end,      RSS_RSS|RSS_REQUIRE_BUF, HKEY("comments"));
1602 #endif
1603                 AddRSSEndHandler(RSSATOM_item_title_end,   RSS_ATOM|RSS_RSS|RSS_REQUIRE_BUF, HKEY("title"));
1604                 AddRSSEndHandler(ATOM_item_content_end,    RSS_ATOM|RSS_REQUIRE_BUF, HKEY("content"));
1605                 AddRSSEndHandler(RSS_item_description_end, RSS_RSS|RSS_ATOM|RSS_REQUIRE_BUF, HKEY("encoded"));
1606                 AddRSSEndHandler(ATOM_item_summary_end,    RSS_ATOM|RSS_REQUIRE_BUF, HKEY("summary"));
1607                 AddRSSEndHandler(RSS_item_description_end, RSS_RSS|RSS_REQUIRE_BUF, HKEY("description"));
1608                 AddRSSEndHandler(ATOM_item_published_end,  RSS_ATOM|RSS_REQUIRE_BUF, HKEY("published"));
1609                 AddRSSEndHandler(ATOM_item_updated_end,    RSS_ATOM|RSS_REQUIRE_BUF, HKEY("updated"));
1610                 AddRSSEndHandler(RSS_item_pubdate_end,     RSS_RSS|RSS_REQUIRE_BUF, HKEY("pubdate"));
1611                 AddRSSEndHandler(RSS_item_date_end,        RSS_RSS|RSS_REQUIRE_BUF, HKEY("date"));
1612                 AddRSSEndHandler(RSS_item_author_end,      RSS_RSS|RSS_REQUIRE_BUF, HKEY("author"));
1613                 AddRSSEndHandler(RSS_item_creator_end,     RSS_RSS|RSS_REQUIRE_BUF, HKEY("creator"));
1614 /* <author> */
1615                 AddRSSEndHandler(ATOM_item_email_end,      RSS_ATOM|RSS_REQUIRE_BUF, HKEY("email"));
1616                 AddRSSEndHandler(ATOM_item_name_end,       RSS_ATOM|RSS_REQUIRE_BUF, HKEY("name"));
1617                 AddRSSEndHandler(ATOM_item_uri_end,        RSS_ATOM|RSS_REQUIRE_BUF, HKEY("uri"));
1618 /* </author> */
1619                 AddRSSEndHandler(RSS_item_item_end,        RSS_RSS, HKEY("item"));
1620                 AddRSSEndHandler(RSS_item_rss_end,         RSS_RSS, HKEY("rss"));
1621                 AddRSSEndHandler(RSS_item_rdf_end,         RSS_RSS, HKEY("rdf"));
1622                 AddRSSEndHandler(ATOM_item_entry_end,      RSS_ATOM, HKEY("entry"));
1623
1624
1625 /* at the start of atoms: <seq> <li>link to resource</li></seq> ignore them. */
1626                 AddRSSStartHandler(RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("seq"));
1627                 AddRSSEndHandler  (RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("seq"));
1628                 AddRSSStartHandler(RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("li"));
1629                 AddRSSEndHandler  (RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("li"));
1630
1631 /* links to other feed generators... */
1632                 AddRSSStartHandler(RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("feedflare"));
1633                 AddRSSEndHandler  (RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("feedflare"));
1634                 AddRSSStartHandler(RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("browserfriendly"));
1635                 AddRSSEndHandler  (RSSATOM_item_ignore,      RSS_RSS|RSS_ATOM, HKEY("browserfriendly"));
1636
1637                 KnownNameSpaces = NewHash(1, NULL);
1638                 Put(KnownNameSpaces, HKEY("http://a9.com/-/spec/opensearch/1.1/"), NULL, reference_free_handler);
1639                 Put(KnownNameSpaces, HKEY("http://a9.com/-/spec/opensearchrss/1.0/"), NULL, reference_free_handler);
1640                 Put(KnownNameSpaces, HKEY("http://backend.userland.com/creativeCommonsRssModule"), NULL, reference_free_handler);
1641                 Put(KnownNameSpaces, HKEY("http://purl.org/atom/ns#"), NULL, reference_free_handler);
1642                 Put(KnownNameSpaces, HKEY("http://purl.org/dc/elements/1.1/"), NULL, reference_free_handler);
1643                 Put(KnownNameSpaces, HKEY("http://purl.org/rss/1.0/"), NULL, reference_free_handler);
1644                 Put(KnownNameSpaces, HKEY("http://purl.org/rss/1.0/modules/content/"), NULL, reference_free_handler);
1645                 Put(KnownNameSpaces, HKEY("http://purl.org/rss/1.0/modules/slash/"), NULL, reference_free_handler);
1646                 Put(KnownNameSpaces, HKEY("http://purl.org/rss/1.0/modules/syndication/"), NULL, reference_free_handler);
1647                 Put(KnownNameSpaces, HKEY("http://purl.org/rss/1.0/"), NULL, reference_free_handler);
1648                 Put(KnownNameSpaces, HKEY("http://purl.org/syndication/thread/1.0"), NULL, reference_free_handler);
1649                 Put(KnownNameSpaces, HKEY("http://rssnamespace.org/feedburner/ext/1.0"), NULL, reference_free_handler);
1650                 Put(KnownNameSpaces, HKEY("http://schemas.google.com/g/2005"), NULL, reference_free_handler);
1651                 Put(KnownNameSpaces, HKEY("http://webns.net/mvcb/"), NULL, reference_free_handler);
1652                 Put(KnownNameSpaces, HKEY("http://web.resource.org/cc/"), NULL, reference_free_handler);
1653                 Put(KnownNameSpaces, HKEY("http://wellformedweb.org/CommentAPI/"), NULL, reference_free_handler);
1654                 Put(KnownNameSpaces, HKEY("http://www.georss.org/georss"), NULL, reference_free_handler);
1655                 Put(KnownNameSpaces, HKEY("http://www.w3.org/1999/xhtml"), NULL, reference_free_handler);
1656                 Put(KnownNameSpaces, HKEY("http://www.w3.org/1999/02/22-rdf-syntax-ns#"), NULL, reference_free_handler);
1657                 Put(KnownNameSpaces, HKEY("http://www.w3.org/1999/02/22-rdf-syntax-ns#"), NULL, reference_free_handler);
1658                 Put(KnownNameSpaces, HKEY("http://www.w3.org/2003/01/geo/wgs84_pos#"), NULL, reference_free_handler);
1659                 Put(KnownNameSpaces, HKEY("http://www.w3.org/2005/Atom"), NULL, reference_free_handler);
1660                 Put(KnownNameSpaces, HKEY("urn:flickr:"), NULL, reference_free_handler);
1661 #if 0
1662                 /* we don't like these namespaces because of they shadow our usefull parameters. */
1663                 Put(KnownNameSpaces, HKEY("http://search.yahoo.com/mrss/"), NULL, reference_free_handler);
1664 #endif
1665                 CtdlRegisterCleanupHook(rss_cleanup);
1666         }
1667         return "rssclient";
1668 }