2017-12-29 22:22:17 +08:00
|
|
|
const { templateName } = require('../backends/template_maps');
|
|
|
|
const cors = require('../middleware/cors');
|
|
|
|
const userMiddleware = require('../middleware/user');
|
2018-02-15 22:20:52 +08:00
|
|
|
const localsMiddleware = require('../middleware/context/locals');
|
2018-02-16 00:49:47 +08:00
|
|
|
const apikeyCredentialsMiddleware = require('../middleware/context/apikey-credentials');
|
2018-02-15 22:20:52 +08:00
|
|
|
|
|
|
|
const apikeyMiddleware = [
|
|
|
|
localsMiddleware,
|
2018-02-16 00:49:47 +08:00
|
|
|
apikeyCredentialsMiddleware(),
|
2018-02-15 22:20:52 +08:00
|
|
|
];
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2015-07-13 21:05:03 +08:00
|
|
|
/**
|
|
|
|
* @param {AuthApi} authApi
|
2015-09-16 22:18:26 +08:00
|
|
|
* @param {PgConnection} pgConnection
|
2015-10-01 00:00:54 +08:00
|
|
|
* @param {TemplateMaps} templateMaps
|
2015-07-13 21:05:03 +08:00
|
|
|
* @constructor
|
|
|
|
*/
|
2017-09-26 01:40:27 +08:00
|
|
|
function NamedMapsAdminController(authApi, templateMaps) {
|
2015-07-13 21:05:03 +08:00
|
|
|
this.authApi = authApi;
|
2015-10-01 00:00:54 +08:00
|
|
|
this.templateMaps = templateMaps;
|
2015-07-08 19:11:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = NamedMapsAdminController;
|
|
|
|
|
2017-10-05 18:12:21 +08:00
|
|
|
NamedMapsAdminController.prototype.register = function (app) {
|
2017-12-29 23:24:19 +08:00
|
|
|
const { base_url_templated } = app;
|
2017-12-29 23:19:00 +08:00
|
|
|
|
2017-10-05 18:12:21 +08:00
|
|
|
app.post(
|
2017-12-29 23:24:19 +08:00
|
|
|
`${base_url_templated}/`,
|
2017-10-05 18:12:21 +08:00
|
|
|
cors(),
|
|
|
|
userMiddleware,
|
2018-02-15 22:20:52 +08:00
|
|
|
apikeyMiddleware,
|
2017-12-29 20:05:01 +08:00
|
|
|
this.checkContentType('POST', 'POST TEMPLATE'),
|
|
|
|
this.authorizedByAPIKey('create', 'POST TEMPLATE'),
|
2017-12-29 23:15:48 +08:00
|
|
|
this.create()
|
2017-10-05 18:12:21 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
app.put(
|
2017-12-29 23:24:19 +08:00
|
|
|
`${base_url_templated}/:template_id`,
|
2017-10-05 18:12:21 +08:00
|
|
|
cors(),
|
|
|
|
userMiddleware,
|
2018-02-15 22:20:52 +08:00
|
|
|
apikeyMiddleware,
|
2017-12-29 20:05:01 +08:00
|
|
|
this.checkContentType('PUT', 'PUT TEMPLATE'),
|
|
|
|
this.authorizedByAPIKey('update', 'PUT TEMPLATE'),
|
2017-12-29 23:15:48 +08:00
|
|
|
this.update()
|
2017-10-05 18:12:21 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
app.get(
|
2017-12-29 23:24:19 +08:00
|
|
|
`${base_url_templated}/:template_id`,
|
2017-10-05 18:12:21 +08:00
|
|
|
cors(),
|
|
|
|
userMiddleware,
|
2018-02-15 22:20:52 +08:00
|
|
|
apikeyMiddleware,
|
2017-12-29 20:05:01 +08:00
|
|
|
this.authorizedByAPIKey('get', 'GET TEMPLATE'),
|
2017-12-29 23:15:48 +08:00
|
|
|
this.retrieve()
|
2017-10-05 18:12:21 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
app.delete(
|
2017-12-29 23:24:19 +08:00
|
|
|
`${base_url_templated}/:template_id`,
|
2017-10-05 18:12:21 +08:00
|
|
|
cors(),
|
|
|
|
userMiddleware,
|
2018-02-15 22:20:52 +08:00
|
|
|
apikeyMiddleware,
|
2017-12-29 20:05:01 +08:00
|
|
|
this.authorizedByAPIKey('delete', 'DELETE TEMPLATE'),
|
2017-12-29 23:15:48 +08:00
|
|
|
this.destroy()
|
2017-10-05 18:12:21 +08:00
|
|
|
);
|
2017-09-22 22:45:34 +08:00
|
|
|
|
2017-10-05 18:12:21 +08:00
|
|
|
app.get(
|
2017-12-29 23:24:19 +08:00
|
|
|
`${base_url_templated}/`,
|
2017-09-22 22:45:34 +08:00
|
|
|
cors(),
|
2017-10-05 18:12:21 +08:00
|
|
|
userMiddleware,
|
2018-02-15 22:20:52 +08:00
|
|
|
apikeyMiddleware,
|
2017-12-29 20:05:01 +08:00
|
|
|
this.authorizedByAPIKey('list', 'GET TEMPLATE LIST'),
|
2017-12-29 23:15:48 +08:00
|
|
|
this.list()
|
2017-09-22 22:45:34 +08:00
|
|
|
);
|
|
|
|
|
2017-10-05 18:12:21 +08:00
|
|
|
app.options(
|
2017-12-29 23:24:19 +08:00
|
|
|
`${base_url_templated}/:template_id`,
|
2017-10-05 18:12:21 +08:00
|
|
|
cors('Content-Type')
|
|
|
|
);
|
2015-07-08 19:11:57 +08:00
|
|
|
};
|
|
|
|
|
2017-12-29 22:19:52 +08:00
|
|
|
NamedMapsAdminController.prototype.authorizedByAPIKey = function (action, label) {
|
|
|
|
return function authorizedByAPIKeyMiddleware (req, res, next) {
|
|
|
|
const { user } = res.locals;
|
2018-02-15 19:50:42 +08:00
|
|
|
this.authApi.authorizedByAPIKey(user, res, (err, authenticated) => {
|
2017-12-29 22:19:52 +08:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!authenticated) {
|
|
|
|
const error = new Error(`Only authenticated user can ${action} templated maps`);
|
|
|
|
error.http_status = 403;
|
|
|
|
error.label = label;
|
|
|
|
return next(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
}.bind(this);
|
|
|
|
};
|
|
|
|
|
|
|
|
NamedMapsAdminController.prototype.checkContentType = function (action, label) {
|
|
|
|
return function checkContentTypeMiddleware (req, res, next) {
|
|
|
|
if (!req.is('application/json')) {
|
|
|
|
const error = new Error(`template ${action} data must be of type application/json`);
|
|
|
|
error.label = label;
|
|
|
|
return next(error);
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
NamedMapsAdminController.prototype.create = function () {
|
|
|
|
return function createTemplateMiddleware (req, res, next) {
|
2017-12-30 01:34:54 +08:00
|
|
|
const { user } = res.locals;
|
2017-12-29 23:30:42 +08:00
|
|
|
const template = req.body;
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2017-12-30 01:34:54 +08:00
|
|
|
this.templateMaps.addTemplate(user, template, (err, templateId) => {
|
2017-12-29 23:15:48 +08:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
2017-12-29 22:04:44 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
res.status(200);
|
2017-12-29 22:04:44 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
const method = req.query.callback ? 'jsonp' : 'json';
|
2017-12-29 23:30:42 +08:00
|
|
|
res[method]({ template_id: templateId });
|
2017-12-29 23:15:48 +08:00
|
|
|
});
|
|
|
|
}.bind(this);
|
2015-07-08 19:11:57 +08:00
|
|
|
};
|
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
NamedMapsAdminController.prototype.update = function () {
|
|
|
|
return function updateTemplateMiddleware (req, res, next) {
|
2017-12-29 23:30:42 +08:00
|
|
|
const { user } = res.locals;
|
2017-12-29 23:15:48 +08:00
|
|
|
const template = req.body;
|
2017-12-29 23:30:42 +08:00
|
|
|
const templateId = templateName(req.params.template_id);
|
2016-03-11 18:06:51 +08:00
|
|
|
|
2017-12-29 23:30:42 +08:00
|
|
|
this.templateMaps.updTemplate(user, templateId, template, (err) => {
|
2017-12-29 23:15:48 +08:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
res.status(200);
|
2017-12-29 22:04:44 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
const method = req.query.callback ? 'jsonp' : 'json';
|
2017-12-29 23:30:42 +08:00
|
|
|
res[method]({ template_id: templateId });
|
2017-12-29 23:15:48 +08:00
|
|
|
});
|
|
|
|
}.bind(this);
|
2015-07-08 19:11:57 +08:00
|
|
|
};
|
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
NamedMapsAdminController.prototype.retrieve = function () {
|
2018-01-03 20:15:11 +08:00
|
|
|
return function retrieveTemplateMiddleware (req, res, next) {
|
2017-12-29 23:15:48 +08:00
|
|
|
req.profiler.start('windshaft-cartodb.get_template');
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2017-12-30 01:34:54 +08:00
|
|
|
const { user } = res.locals;
|
2017-12-29 23:30:42 +08:00
|
|
|
const templateId = templateName(req.params.template_id);
|
2017-12-29 22:17:29 +08:00
|
|
|
|
2017-12-30 01:34:54 +08:00
|
|
|
this.templateMaps.getTemplate(user, templateId, (err, template) => {
|
2017-12-29 23:15:48 +08:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
2017-12-29 22:17:29 +08:00
|
|
|
|
2017-12-29 23:30:42 +08:00
|
|
|
if (!template) {
|
2017-12-30 01:34:54 +08:00
|
|
|
const error = new Error(`Cannot find template '${templateId}' of user '${user}'`);
|
2017-12-29 23:15:48 +08:00
|
|
|
error.http_status = 404;
|
|
|
|
return next(error);
|
|
|
|
}
|
|
|
|
// auth_id was added by ourselves,
|
|
|
|
// so we remove it before returning to the user
|
2017-12-29 23:30:42 +08:00
|
|
|
delete template.auth_id;
|
2017-12-29 22:17:29 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
res.status(200);
|
2017-12-29 22:17:29 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
const method = req.query.callback ? 'jsonp' : 'json';
|
2017-12-29 23:30:42 +08:00
|
|
|
res[method]({ template });
|
2017-12-29 23:15:48 +08:00
|
|
|
});
|
|
|
|
}.bind(this);
|
2015-07-08 19:11:57 +08:00
|
|
|
};
|
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
NamedMapsAdminController.prototype.destroy = function () {
|
|
|
|
return function destroyTemplateMiddleware (req, res, next) {
|
|
|
|
req.profiler.start('windshaft-cartodb.delete_template');
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2017-12-29 23:30:42 +08:00
|
|
|
const { user } = res.locals;
|
|
|
|
const templateId = templateName(req.params.template_id);
|
2017-12-29 22:04:44 +08:00
|
|
|
|
2017-12-29 23:30:42 +08:00
|
|
|
this.templateMaps.delTemplate(user, templateId, (err/* , tpl_val */) => {
|
2017-12-29 23:15:48 +08:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
2017-12-29 22:17:29 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
res.status(204);
|
2017-12-29 22:17:29 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
const method = req.query.callback ? 'jsonp' : 'json';
|
|
|
|
res[method]('');
|
|
|
|
});
|
|
|
|
}.bind(this);
|
2015-07-08 19:11:57 +08:00
|
|
|
};
|
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
NamedMapsAdminController.prototype.list = function () {
|
|
|
|
return function listTemplatesMiddleware (req, res, next) {
|
|
|
|
req.profiler.start('windshaft-cartodb.get_template_list');
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2017-12-29 23:30:42 +08:00
|
|
|
const { user } = res.locals;
|
2015-07-08 19:11:57 +08:00
|
|
|
|
2017-12-29 23:30:42 +08:00
|
|
|
this.templateMaps.listTemplates(user, (err, templateIds) => {
|
2017-12-29 23:15:48 +08:00
|
|
|
if (err) {
|
|
|
|
return next(err);
|
|
|
|
}
|
2017-12-29 22:04:44 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
res.status(200);
|
2017-12-29 22:04:44 +08:00
|
|
|
|
2017-12-29 23:15:48 +08:00
|
|
|
const method = req.query.callback ? 'jsonp' : 'json';
|
2017-12-29 23:30:42 +08:00
|
|
|
res[method]({ template_ids: templateIds });
|
2017-12-29 23:15:48 +08:00
|
|
|
});
|
|
|
|
}.bind(this);
|
2015-07-08 19:11:57 +08:00
|
|
|
};
|