145 lines
3.8 KiB
JavaScript
Raw Normal View History

2015-10-01 00:30:16 +02:00
'use strict';
/**
* Module dependencies
*/
// Public node modules.
const _ = require('lodash');
// Local utilities.
const regex = require('../../../../util/regex');
/**
* Router hook
*/
module.exports = function (strapi) {
const hook = {
/**
* Default options
*/
defaults: {
prefix: '',
routes: {}
},
/**
* Initialize the hook
*/
initialize: function (cb) {
let route;
let controller;
let action;
let policies = [];
// Initialize the router.
if (!strapi.router) {
strapi.router = strapi.middlewares.router({
prefix: strapi.config.prefix
});
}
// Middleware used for every routes.
// Expose the endpoint in `this`.
function globalPolicy(endpoint, route) {
return function * (next) {
this.request.route = {
endpoint: endpoint,
controller: route.controller,
firstWord: _.startsWith(route.endpoint, '/') ? route.endpoint.split('/')[1] : route.endpoint.split('/')[0],
value: route
};
yield next;
};
2015-10-01 00:30:16 +02:00
}
// Parse each route from the user config, load policies if any
// and match the controller and action to the desired endpoint.
_.forEach(strapi.config.routes, function (value, endpoint) {
try {
route = regex.detectRoute(endpoint);
controller = strapi.controllers[value.controller.toLowerCase()];
action = controller[value.action];
policies = [];
// Add the `globalPolicy`.
policies.push(globalPolicy(endpoint, route));
if (_.isArray(value.policies) && !_.isEmpty(value.policies)) {
_.forEach(value.policies, function (policy) {
if (strapi.policies[policy]) {
policies.push(strapi.policies[policy]);
} else {
strapi.log.error('Ignored attempt to bind route `' + endpoint + '` with unknown policy `' + policy + '`.');
process.exit(1);
}
});
}
strapi.router[route.verb.toLowerCase()](route.endpoint, strapi.middlewares.compose(policies), action);
} catch (err) {
strapi.log.warn('Ignored attempt to bind route `' + endpoint + '` to unknown controller/action.');
}
});
if (strapi.config.globals.graphql === true || _.isPlainObject(strapi.config.globals.graphql)) {
const GraphQLPath = _.isBoolean(strapi.config.globals.graphql) ? '/graphql' : strapi.config.globals.graphql.path;
2015-10-19 22:10:29 +02:00
// Define GraphQL route with modified Waterline models to GraphQL schema
strapi.router.get(GraphQLPath, strapi.middlewares.graphql({
schema: strapi.schemas,
pretty: true
}));
}
2015-10-01 00:30:16 +02:00
// Let the router use our routes and allowed methods.
strapi.app.use(strapi.router.routes());
strapi.app.use(strapi.router.allowedMethods());
// Handle router errors.
strapi.app.use(function * (next) {
try {
yield next;
const status = this.status || 404;
if (status === 404) {
this.throw(404);
}
} catch (err) {
err.status = err.status || 500;
err.message = err.expose ? err.message : 'Houston, we have a problem.';
this.status = err.status;
this.body = {
code: err.status,
message: err.message
};
this.app.emit('error', err, this);
}
});
cb();
},
/**
* Reload the hook
*/
reload: function () {
hook.initialize(function (err) {
if (err) {
strapi.log.error('Failed to reinitialize the router.');
strapi.stop();
} else {
strapi.emit('hook:router:reloaded');
}
});
}
};
return hook;
};