3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-03 17:39:28 +01:00

basic rotten tomatoes module with a search thing

This commit is contained in:
reality 2013-10-12 21:46:04 +00:00
parent 7046539f29
commit 2f747d618c
3 changed files with 64 additions and 0 deletions

4
modules/rt/config.json Normal file
View File

@ -0,0 +1,4 @@
{
"apikey": "http://developer.rottentomatoes.com/",
"outputPrefix": "\u00033R\u00034T\u000f"
}

52
modules/rt/rt.js Normal file
View File

@ -0,0 +1,52 @@
/**
* Module Name: Rotten Tomatoes
* Description: Various Rotten Tomatoes functionality.
*/
var _ = require('underscore')._,
request = require('request');
var rt = function(dbot) {
var ApiRoot = 'http://api.rottentomatoes.com/api/public/v1.0/';
this.internalAPI = {
'formatLink': function(m) {
var rating = m.ratings.audience_score;
if(_.has(m.ratings, 'critics_score')) rating = m.ratings.critics_score;
var rColour = (rating <= 50) ? '\u00033 ' : '\u00034 ';
rating = rColour + String(rating) + '%\u000f';
return dbot.t('rt_film', {
'title': m.title,
'year': m.year,
'link': m.links.alternate,
'rating': rating
});
}
};
this.commands = {
'~film': function(event) {
//http://api.rottentomatoes.com/api/public/v1.0/movies.json?q={search-term}&page_limit={results-per-page}&page={page-number}
request.get(ApiRoot + 'movies.json', {
'qs': {
'q': event.input[1],
'page_limit': 1,
'apikey': this.config.apikey
},
'json': true
}, function(error, response, body) {
if(_.isObject(body) && _.has(body, 'movies')) {
event.reply(this.internalAPI.formatLink(body.movies[0]));
} else {
event.reply(dbot.t('rt_noresults'));
}
}.bind(this));
}
};
this.commands['~film'].regex = [/^~film (.+)$/, 2];
};
exports.fetch = function(dbot) {
return new rt(dbot);
};

8
modules/rt/strings.json Normal file
View File

@ -0,0 +1,8 @@
{
"rt_film": {
"en": "[{title} -{rating} - {year}] - {link}"
},
"rt_noresults": {
"en": "No films found."
}
}