diff --git a/modules/api/api.js b/modules/api/api.js new file mode 100644 index 0000000..1c10b98 --- /dev/null +++ b/modules/api/api.js @@ -0,0 +1,56 @@ +/** + * Name: API + * Description: Expose DBot API functionality with a REST API + */ +var _ = require('underscore')._; + +var api = function(dbot) { + this.onLoad = function() { + dbot.modules.web.app.get('/api/:module/:method', function(req, res) { + var module = req.params.module, + method = req.params.method, + reqArgs = req.query, + body = { 'err': null, 'data': null }; + + if(!_.has(dbot.api, module)) { + body.err = 'No such API module'; + } else if(!_.has(dbot.api[module], method)) { + body.err = 'No such API function in ' + module; + } else if(dbot.api[module][method].external !== true) { + body.err = 'API function ' + module + '.' + method + + ' not enabled for external access'; + } + + if(!body.err) { + var func = dbot.api[module][method], + paramNames = func.extMap, + args = []; + + _.each(reqArgs, function(arg, name) { + var callbackIndex = paramNames.indexOf(name); + if(callbackIndex != -1) { + args[callbackIndex] = decodeURIComponent(arg); + } + }); + + var callbackIndex = paramNames.indexOf('callback'); + if(callbackIndex != -1) { + args[callbackIndex] = function() { + body.data = Array.prototype.slice.call(arguments, 0); + res.json(body); + }; + func.apply(null, args); + } else { + body.data = func.apply(null, args); + res.json(body); + } + } else { + res.json(body); + } + }.bind(this)); + }.bind(this); +}; + +exports.fetch = function(dbot) { + return new api(dbot); +}; diff --git a/modules/imgur/imgur.js b/modules/imgur/imgur.js index 27209c1..90f091b 100644 --- a/modules/imgur/imgur.js +++ b/modules/imgur/imgur.js @@ -67,6 +67,8 @@ var imgur = function(dbot) { }); } }; + this.api['getRandomImage'].external = true; + this.api['getRandomImage'].extMap = [ 'callback' ]; this.commands = { '~ri': function(event) { diff --git a/modules/kick/kick.js b/modules/kick/kick.js index a5210a1..7b3d160 100644 --- a/modules/kick/kick.js +++ b/modules/kick/kick.js @@ -4,11 +4,11 @@ var kick = function(dbot) { this.api = { 'ban': function(server, user, channel) { - dbot.say(event.server, this.config.chanserv, '!ban ' + user) + dbot.say(event.server, this.config.chanserv, 'ban ' + user); }, 'quiet': function(server, user, channel) { - dbot.say(event.server, this.config.chanserv, '!quiet ' + user) + dbot.say(event.server, this.config.chanserv, 'quiet ' + user); }, 'kick': function(server, user, channel, msg) { diff --git a/modules/quotes/quotes.js b/modules/quotes/quotes.js index b996614..d4a9cb3 100644 --- a/modules/quotes/quotes.js +++ b/modules/quotes/quotes.js @@ -110,6 +110,9 @@ var quotes = function(dbot) { }.bind(this)); } }; + + this.api['getQuoteCategory'].external = true; + this.api['getQuoteCategory'].extMap = [ 'name' ]; this.listener = function(event) { if(event.action == 'PRIVMSG') { diff --git a/modules/web/web.js b/modules/web/web.js index d860f32..4d0c702 100644 --- a/modules/web/web.js +++ b/modules/web/web.js @@ -3,17 +3,17 @@ var express = require('express'), fs = require('fs'); var webInterface = function(dbot) { - var pub = 'public'; - var app = express(); + this.pub = 'public'; + this.app = express(); - app.use(express.static(pub)); - app.set('view engine', 'jade'); + this.app.use(express.static(this.pub)); + this.app.set('view engine', 'jade'); - app.get('/', function(req, res) { + this.app.get('/', function(req, res) { res.render('index', { 'name': dbot.config.name }); }); - var server = app.listen(dbot.config.web.webPort); + var server = this.app.listen(dbot.config.web.webPort); this.reloadPages = function() { var pages = dbot.pages; @@ -21,7 +21,7 @@ var webInterface = function(dbot) { if(_.has(pages, p)) { var func = pages[p]; var mod = func.module; - app.get(p, (function(req, resp) { + this.app.get(p, (function(req, resp) { // Crazy shim to seperate module views. var shim = Object.create(resp); shim.render = (function(view, one, two) {