/** * Module Name: RSS * Description: Allows to read RSS feeds */ var FeedParser = require('feedparser') , request = require('request'); var rss = function(dbot) { var self = this; this.intervals = []; this.internalAPI = { 'makeRequest': function(server,channel,name,url) { var req = request(url); var feedparser = new FeedParser(); req.on('error', function (error) { dbot.say(server,channel,"RSS: Request for RSS feed got an error: "+error+" Start self-destruct sequence."); }); req.on('response', function (res) { var stream = this; if (res.statusCode != 200){ dbot.say(server,channel,"RSS: RSS server returned status code "+res.statusCode+". Bastard."); return; } stream.pipe(feedparser); }); feedparser.on('error', function(error) { dbot.say(server,channel,"RSS: Feedparser encountered an error: "+error+";;; Inform administrator!"); }); feedparser.on('readable', function() { // This is where the action is! var stream = this , meta = this.meta // **NOTE** the "meta" is always available in the context of the feedparser instance , item; while (item = stream.read()) { if(item.pubdate - self.lastPosted > 0) dbot.say(server,channel,"["+name+"] ["+item.title+"] [Post by "+item.author+" in "+item.categories[0]+"] - "+item.link); } }); }.bind(this), 'reloadFeeds': function() { for(var i=0;i