mirror of
https://github.com/reality/dbot.git
synced 2024-12-24 11:42:36 +01:00
replace rottentomatoes module with new fancier imdb module
This commit is contained in:
parent
2f747d618c
commit
7c621aeae2
3
modules/imdb/config.json
Normal file
3
modules/imdb/config.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"outputPrefix": "\u00033IMDB\u000f"
|
||||
}
|
55
modules/imdb/imdb.js
Normal file
55
modules/imdb/imdb.js
Normal 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);
|
||||
};
|
8
modules/imdb/strings.json
Normal file
8
modules/imdb/strings.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"imdb_film": {
|
||||
"en": "[{title} -{rating} - {year}]"
|
||||
},
|
||||
"imdb_noresults": {
|
||||
"en": "No films found."
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"apikey": "http://developer.rottentomatoes.com/",
|
||||
"outputPrefix": "\u00033R\u00034T\u000f"
|
||||
}
|
@ -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);
|
||||
};
|
@ -1,8 +0,0 @@
|
||||
{
|
||||
"rt_film": {
|
||||
"en": "[{title} -{rating} - {year}] - {link}"
|
||||
},
|
||||
"rt_noresults": {
|
||||
"en": "No films found."
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user