dbot/modules/dent/dent.js

78 lines
2.3 KiB
JavaScript
Raw Normal View History

2013-01-10 18:44:01 +01:00
var request = require('request');
2013-01-14 14:10:16 +01:00
_ = require('underscore')._;
2013-01-10 18:44:01 +01:00
var dent = function(dbot) {
2013-03-11 20:30:00 +01:00
this.StatusRegex = {
identica: /\bhttps?:\/\/identi\.ca\/notice\/(\d+)\b/ig,
twitter: /\bhttps?:\/\/twitter\.com\/\w+\/status\/(\d+)\b/ig
};
this.StatusAPI = {
identica: "http://identi.ca/api/statuses/show.json",
twitter: "https://api.twitter.com/1/statuses/show.json"
};
this.api = {
2013-01-14 14:10:16 +01:00
'post': function(content) {
var username = this.config.username,
password = this.config.password,
2013-01-14 14:10:16 +01:00
info,
2013-01-30 23:13:08 +01:00
auth = "Basic " +
2013-01-10 18:44:01 +01:00
new Buffer(username + ":" + password).toString("base64");
2013-01-14 14:10:16 +01:00
2013-01-10 18:44:01 +01:00
request.post({
2013-10-30 18:13:36 +01:00
'url': this.config.api + '/statuses/update.json?status=' +
2013-01-30 23:13:08 +01:00
escape(content),
2013-01-10 18:44:01 +01:00
'headers': {
'Authorization': auth
}
},
function(error, response, body) {
2013-01-14 14:10:16 +01:00
console.log(body);
}.bind(this));
}
};
this.lookup = function(id, service, callback) {
2013-03-11 20:30:00 +01:00
request({
url: this.StatusAPI[service],
qs: {"id": id},
json: true
}, function(error, response, body) {
if (!error && response.statusCode == 200) {
if (_.has(body, 'text')) {
callback(service + " [" + body.user.screen_name + '] ' + body.text);
2013-03-11 20:30:00 +01:00
}
}
});
};
this.commands = {
2013-01-14 14:10:16 +01:00
'~dent': function(event) {
this.api.post(event.input[1]);
2013-01-14 14:10:16 +01:00
event.reply('Dent posted (probably).');
2013-01-10 18:44:01 +01:00
}
};
this.commands['~dent'].regex = [/^~dent (.+)$/, 2];
this.onLoad = function() {
if(this.config.dentQuotes === true && _.has(dbot.modules, 'quotes')) {
dbot.api.event.addHook('~qadd', function(key, text) {
if(text.indexOf('~~') == -1) {
this.api.post(key + ': ' + text);
}
2013-01-21 20:07:25 +01:00
}.bind(this));
}
for(s in this.StatusRegex) {
dbot.api.link.addHandler(s, this.StatusRegex[s], function(matches, name, callback) {
this.lookup(matches[1], name, callback);
}.bind(this));
2013-03-11 20:30:00 +01:00
}
}.bind(this);
2013-01-10 18:44:01 +01:00
};
exports.fetch = function(dbot) {
return new dent(dbot);
2013-01-10 18:44:01 +01:00
};