3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-24 03:33:07 +01:00

replace rottentomatoes module with new fancier imdb module

This commit is contained in:
reality 2013-10-12 22:31:57 +00:00
parent 2f747d618c
commit 7c621aeae2
6 changed files with 66 additions and 64 deletions

3
modules/imdb/config.json Normal file
View File

@ -0,0 +1,3 @@
{
"outputPrefix": "\u00033IMDB\u000f"
}

55
modules/imdb/imdb.js Normal file
View File

@ -0,0 +1,55 @@
/**
* Module Name: IMDB
* Description: Various IMDB functionality.
*/
var _ = require('underscore')._,
request = require('request');
var imdb = function(dbot) {
var ApiRoot = 'http://mymovieapi.com/';
this.internalAPI = {
'formatLink': function(m) {
var rating = m.rating;
var rColour = (rating <= 5) ? '\u00033 ' : '\u00034 ';
rating = rColour + String(rating) + '\u000f';
var mString = dbot.t('imdb_film', {
'title': m.title,
'year': m.year,
'rating': rating
});
if(_.has(m, 'directors')) mString += ' [Director: ' + m.directors[0] + ']';
if(_.has(m, 'genres')) mString += ' [Genre: ' + m.genres[0] + ']';
if(_.has(m, 'plot_simple')) mString += ' [Description: ' + m.plot_simple + ']';
mString += ' - ' + m.imdb_url;
return mString;
}
};
this.commands = {
'~film': function(event) {
request.get(ApiRoot + 'movies.json', {
'qs': {
'q': event.input[1],
'page_limit': 1
},
'json': true
}, function(error, response, body) {
if(_.isObject(body) && !_.isUndefined(body[0])) {
event.reply(this.internalAPI.formatLink(body[0]));
} else {
event.reply(dbot.t('imdb_noresults'));
}
}.bind(this));
}
};
this.commands['~film'].regex = [/^~film (.+)$/, 2];
};
exports.fetch = function(dbot) {
return new imdb(dbot);
};

View File

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

View File

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

View File

@ -1,52 +0,0 @@
/**
* 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);
};

View File

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