Move API routes to their own file

This commit is contained in:
Andrew Stewart 2014-06-04 13:39:30 -07:00
parent 789ce02ad0
commit ac0a69e63f
2 changed files with 157 additions and 150 deletions

View File

@ -29,14 +29,22 @@ var API = module.exports = function API(opts) {
this.createServer();
var authfn = this.setupAuth();
this.server.use(authfn);
this.server.set('title', 'Cylon API Server');
this.server.use(self.setupAuth());
this.server.use(bodyParser());
this.server.use(express["static"](__dirname + "/../node_modules/robeaux/"));
this.configureRoutes();
// set CORS headers for API requests
this.server.use(function(req, res, next) {
res.set("Access-Control-Allow-Origin", self.CORS || "*");
res.set("Access-Control-Allow-Headers", "Content-Type");
res.set('Content-Type', 'application/json');
return next();
});
// load route definitions
this.server.use('/', require('./api/routes'))
};
API.prototype.defaults = {
@ -95,149 +103,3 @@ API.prototype.listen = function() {
Logger.info("Listening at " + protocol + "://" + self.host + ":" + self.port);
});
};
// Parses req to extract params to be used for commands.
//
// Returns an array of params
API.prototype.parseCommandParams = function(req) {
var param_container = {},
params = [];
if (req.method === 'GET' || Object.keys(req.query).length > 0) {
param_container = req.query;
} else if (typeof req.body === 'object') {
param_container = req.body;
}
for (var p in param_container) { params.push(param_container[p]); }
return params;
};
// Sets all routes for the server
API.prototype.configureRoutes = function() {
var Cylon = require('./cylon');
var self = this;
this.server.all("/*", function(req, res, next) {
res.set("Access-Control-Allow-Origin", self.CORS || "*");
res.set("Access-Control-Allow-Headers", "Content-Type");
res.set('Content-Type', 'application/json');
return next();
});
this.server.get("/robots", function(req, res) {
var data = [];
for (var i = 0; i < Cylon.robots.length; i++) {
var robot = Cylon.robots[i];
data.push(robot.data());
}
res.json(data);
});
this.server.get("/robots/:robot", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data());
});
});
this.server.get("/robots/:robot/commands", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data().commands);
});
});
this.server.all("/robots/:robot/commands/:command", function(req, res) {
var params = self.parseCommandParams(req);
Cylon.findRobot(req.params.robot, function(err, robot) {
if (err) { return res.json(err); }
var result = robot[req.params.command].apply(robot, params);
res.json({ result: result });
});
});
this.server.get("/robots/:robot/devices", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data().devices);
});
});
this.server.get("/robots/:robot/devices/:device", function(req, res) {
var robot = req.params.robot,
device = req.params.device;
Cylon.findRobotDevice(robot, device, function(err, device) {
res.json(err ? err : device.data());
});
});
this.server.get("/robots/:robot/devices/:device/events/:event", function(req, res) {
var robot = req.params.robot,
device = req.params.device,
event = req.params.event;
Cylon.findRobotDevice(robot, device, function(err, device) {
if (err) { res.json(err); }
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Connection': 'keep-alive',
'Cache-Control': 'no-cache'
});
var writeData = function(data) {
res.write("data: " + JSON.stringify(data) + "\n\n")
};
device.on(event, writeData);
res.on('close', function() {
device.removeListener(event, writeData);
});
});
});
this.server.get("/robots/:robot/devices/:device/commands", function(req, res) {
var robot = req.params.robot,
device = req.params.device;
Cylon.findRobotDevice(robot, device, function(err, device) {
res.json(err ? err : device.data().commands);
});
});
this.server.all("/robots/:robot/devices/:device/commands/:command", function(req, res) {
var robot = req.params.robot,
device = req.params.device,
command = req.params.command;
var params = self.parseCommandParams(req);
Cylon.findRobotDevice(robot, device, function(err, device) {
if (err) { return res.json(err); }
var result = device[command].apply(device, params);
res.json({ result: result });
});
});
this.server.get("/robots/:robot/connections", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data().connections);
});
});
this.server.get("/robots/:robot/connections/:connection", function(req, res) {
var robot = req.params.robot,
connection = req.params.connection;
Cylon.findRobotConnection(robot, connection, function(err, connection) {
res.json(err ? err : connection.data());
});
});
};

145
lib/api/routes.js Normal file
View File

@ -0,0 +1,145 @@
/*
* Cylon API - Route Definitions
* cylonjs.com
*
* Copyright (c) 2013-2014 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
var Cylon = require('../cylon');
var router = module.exports = require('express').Router();
// Parses req to extract params to be used for commands.
//
// Returns an array of params
var parseCommandParams = function(req) {
var param_container = {},
params = [];
if (req.method === 'GET' || Object.keys(req.query).length > 0) {
param_container = req.query;
} else if (typeof req.body === 'object') {
param_container = req.body;
}
for (var p in param_container) {
params.push(param_container[p]);
}
return params;
};
router.get("/robots", function(req, res) {
var data = [];
for (var i = 0; i < Cylon.robots.length; i++) {
var robot = Cylon.robots[i];
data.push(robot.data());
}
res.json(data);
});
router.get("/robots/:robot", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data());
});
});
router.get("/robots/:robot/commands", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data().commands);
});
});
router.all("/robots/:robot/commands/:command", function(req, res) {
var params = parseCommandParams(req);
Cylon.findRobot(req.params.robot, function(err, robot) {
if (err) { return res.json(err); }
var result = robot[req.params.command].apply(robot, params);
res.json({ result: result });
});
});
router.get("/robots/:robot/devices", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data().devices);
});
});
router.get("/robots/:robot/devices/:device", function(req, res) {
var robot = req.params.robot,
device = req.params.device;
Cylon.findRobotDevice(robot, device, function(err, device) {
res.json(err ? err : device.data());
});
});
router.get("/robots/:robot/devices/:device/events/:event", function(req, res) {
var robot = req.params.robot,
device = req.params.device,
event = req.params.event;
Cylon.findRobotDevice(robot, device, function(err, device) {
if (err) { res.json(err); }
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Connection': 'keep-alive',
'Cache-Control': 'no-cache'
});
var writeData = function(data) {
res.write("data: " + JSON.stringify(data) + "\n\n")
};
device.on(event, writeData);
res.on('close', function() {
device.removeListener(event, writeData);
});
});
});
router.get("/robots/:robot/devices/:device/commands", function(req, res) {
var robot = req.params.robot,
device = req.params.device;
Cylon.findRobotDevice(robot, device, function(err, device) {
res.json(err ? err : device.data().commands);
});
});
router.all("/robots/:robot/devices/:device/commands/:command", function(req, res) {
var robot = req.params.robot,
device = req.params.device,
command = req.params.command;
var params = parseCommandParams(req);
Cylon.findRobotDevice(robot, device, function(err, device) {
if (err) { return res.json(err); }
var result = device[command].apply(device, params);
res.json({ result: result });
});
});
router.get("/robots/:robot/connections", function(req, res) {
Cylon.findRobot(req.params.robot, function(err, robot) {
res.json(err ? err : robot.data().connections);
});
});
router.get("/robots/:robot/connections/:connection", function(req, res) {
var robot = req.params.robot,
connection = req.params.connection;
Cylon.findRobotConnection(robot, connection, function(err, connection) {
res.json(err ? err : connection.data());
});
});