mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 06:19:24 +01:00
leafly
This commit is contained in:
parent
9733fa6185
commit
6d8224bdf1
5
modules/leafly/config.json
Normal file
5
modules/leafly/config.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"outputPrefix": "\u00033weed\u000f",
|
||||||
|
"app_key": "",
|
||||||
|
"app_id": ""
|
||||||
|
}
|
47
modules/leafly/leafly.js
Normal file
47
modules/leafly/leafly.js
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
* Module name: Leafly
|
||||||
|
* Description: Information from leafly
|
||||||
|
*/
|
||||||
|
|
||||||
|
var _ = require('underscore')._,
|
||||||
|
request = require('request');
|
||||||
|
|
||||||
|
var leafly = function(dbot) {
|
||||||
|
var ApiRoot = 'http://data.leafly.com/';
|
||||||
|
|
||||||
|
this.commands = {
|
||||||
|
'~strain': function(event) {
|
||||||
|
request.post(ApiRoot + 'strains', {
|
||||||
|
'headers': {
|
||||||
|
'app_key': this.config.app_key,
|
||||||
|
'app_id': this.config.app_id
|
||||||
|
},
|
||||||
|
'body': {
|
||||||
|
'page': 0,
|
||||||
|
'take': 1,
|
||||||
|
'sort': 'rating',
|
||||||
|
'search': event.input[1]
|
||||||
|
},
|
||||||
|
'json': true
|
||||||
|
}, function(error, response, body) {
|
||||||
|
if(_.isObject(body) && _.has(body, 'Strains') && body.Strains.length > 0) {
|
||||||
|
var strain = body.Strains[0],
|
||||||
|
flavours = _.pluck(strain.Flavors, 'Name').join(', ');
|
||||||
|
|
||||||
|
event.reply(dbot.t('strain', {
|
||||||
|
'name': strain.Name,
|
||||||
|
'flavours': flavours,
|
||||||
|
'link': strain.permalink
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
event.reply(dbot.t('no_strains'));
|
||||||
|
}
|
||||||
|
}.bind(this));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
this.commands['~strain'].regex = [/^strain (.+)$/, 2];
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.fetch = function(dbot) {
|
||||||
|
return new leafly(dbot);
|
||||||
|
};
|
8
modules/leafly/strings.json
Normal file
8
modules/leafly/strings.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"strain": {
|
||||||
|
"en": "{name} tastes of {flavours} - {link}"
|
||||||
|
},
|
||||||
|
"no_strains": {
|
||||||
|
"en": "No strains found :("
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user