/** * Module Name: RSS * Description: Allows to read RSS feeds */ var FeedParser = require('feedparser') , request = require('request'); var rss = function(dbot) { this.pollInterval = 120000; var self = this; this.internalAPI = { 'makeRequest': function(id,feed) { var fid = id; var req = request(feed.url); var feedparser = new FeedParser(); //dbot.say(feed.server,feed.channel,"Sending request for feed "+fid+" name "+feed.name+" lP:"+feed.lastPosted); req.on('error', function (error) { dbot.say(feed.server,feed.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(feed.server,feed.channel,"RSS: RSS server returned status code "+res.statusCode+". Bastard."); return; } stream.pipe(feedparser); }); feedparser.on('error', function(error) { dbot.say(feed.server,feed.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.getTime() - feed.lastPosted > 0) { var rss = item; feed.lastPosted = item.pubdate.getTime(); dbot.db.feeds[fid].lastPosted = feed.lastPosted; var options = { uri: 'https://www.googleapis.com/urlshortener/v1/url', method: 'POST', json: { "longUrl": rss.link } }; request(options, function (error, response, body) { if (!error && response.statusCode == 200) { dbot.say(feed.server,feed.channel,"["+feed.name+"] ["+rss.title+"] [Post by "+rss.author+" in "+rss.categories[0]+"] - "+body.id); } else { dbot.say(feed.server,feed.channel,"RSS: Request to shorten URL returned: "+body.id); } }); } } }); }.bind(this), 'checkFeeds': function() { console.log("Checking feeds..."); for(var i=0;i