CartoDB-SQL-API/app/controllers/job_controller.js

113 lines
3.8 KiB
JavaScript
Raw Normal View History

'use strict';
var _ = require('underscore');
2016-04-18 22:24:52 +08:00
var util = require('util');
2016-10-04 21:19:31 +08:00
var userMiddleware = require('../middlewares/user');
2016-10-04 21:40:56 +08:00
var authenticatedMiddleware = require('../middlewares/authenticated-request');
var handleException = require('../utils/error_handler');
2016-04-18 22:24:52 +08:00
var ONE_KILOBYTE_IN_BYTES = 1024;
2016-05-24 21:31:54 +08:00
var MAX_LIMIT_QUERY_SIZE_IN_KB = 8;
var MAX_LIMIT_QUERY_SIZE_IN_BYTES = MAX_LIMIT_QUERY_SIZE_IN_KB * ONE_KILOBYTE_IN_BYTES;
2016-04-18 22:24:52 +08:00
function getMaxSizeErrorMessage(sql) {
return util.format([
'Your payload is too large: %s bytes. Max size allowed is %s bytes (%skb).',
'Are you trying to import data?.',
'Please, check out import api http://docs.cartodb.com/cartodb-platform/import-api/'
].join(' '),
2016-04-18 22:24:52 +08:00
sql.length,
MAX_LIMIT_QUERY_SIZE_IN_BYTES,
Math.round(MAX_LIMIT_QUERY_SIZE_IN_BYTES / ONE_KILOBYTE_IN_BYTES)
);
}
2016-05-24 17:19:00 +08:00
function JobController(userDatabaseService, jobService, statsdClient) {
this.userDatabaseService = userDatabaseService;
2016-05-14 00:50:55 +08:00
this.jobService = jobService;
this.statsdClient = statsdClient || { increment: function () {} };
}
function bodyPayloadSizeMiddleware(req, res, next) {
var payload = JSON.stringify(req.body);
if (payload.length > MAX_LIMIT_QUERY_SIZE_IN_BYTES) {
return handleException(new Error(getMaxSizeErrorMessage(payload)), res);
} else {
return next(null);
}
}
2016-05-14 00:50:55 +08:00
module.exports = JobController;
module.exports.MAX_LIMIT_QUERY_SIZE_IN_BYTES = MAX_LIMIT_QUERY_SIZE_IN_BYTES;
module.exports.getMaxSizeErrorMessage = getMaxSizeErrorMessage;
2016-05-14 00:50:55 +08:00
JobController.prototype.route = function (app) {
2016-10-04 21:40:56 +08:00
app.post(
global.settings.base_url + '/sql/job',
bodyPayloadSizeMiddleware, userMiddleware, authenticatedMiddleware(this.userDatabaseService),
this.createJob.bind(this)
);
app.get(
global.settings.base_url + '/sql/job/:job_id',
userMiddleware, authenticatedMiddleware(this.userDatabaseService),
this.getJob.bind(this)
);
app.delete(
global.settings.base_url + '/sql/job/:job_id',
userMiddleware, authenticatedMiddleware(this.userDatabaseService),
this.cancelJob.bind(this)
);
};
JobController.prototype.cancelJob = function (req, res) {
2016-10-04 22:07:13 +08:00
this.jobService.cancel(req.params.job_id, jobResponse(req, res, this.statsdClient, 'cancel'));
};
JobController.prototype.getJob = function (req, res) {
2016-10-04 22:07:13 +08:00
this.jobService.get(req.params.job_id, jobResponse(req, res, this.statsdClient, 'retrieve'));
};
JobController.prototype.createJob = function (req, res) {
var body = (req.body) ? req.body : {};
var params = _.extend({}, req.query, body); // clone so don't modify req.params or req.body so oauth is not broken
var sql = (params.query === "" || _.isUndefined(params.query)) ? null : params.query;
2016-10-04 22:07:13 +08:00
var data = {
user: req.context.user,
query: sql,
host: req.context.userDatabase.host
};
2016-05-14 00:50:55 +08:00
2016-10-04 22:07:13 +08:00
this.jobService.create(data, jobResponse(req, res, this.statsdClient, 'create', 201));
};
2016-10-04 22:07:13 +08:00
function jobResponse(req, res, statsdClient, action, status) {
return function handler(err, job) {
status = status || 200;
2016-10-04 22:07:13 +08:00
if (err) {
statsdClient.increment('sqlapi.job.error');
return handleException(err, res);
}
2016-10-04 22:07:13 +08:00
res.header('X-Served-By-DB-Host', req.context.userDatabase.host);
2016-10-04 22:07:13 +08:00
req.profiler.done(action);
req.profiler.end();
req.profiler.sendStats();
2016-10-04 22:07:13 +08:00
res.header('X-SQLAPI-Profiler', req.profiler.toJSONString());
statsdClient.increment('sqlapi.job.success');
2016-08-31 00:43:09 +08:00
2016-10-04 22:07:13 +08:00
console.info(JSON.stringify({
type: 'sql_api_batch_job',
username: req.context.user,
action: action,
job_id: job.job_id
}));
res.status(status).send(job.serialize());
};
}