CartoDB-SQL-API/app/middlewares/query-params.js

183 lines
4.2 KiB
JavaScript
Raw Normal View History

2019-07-26 17:34:15 +08:00
'use strict';
const sanitizeFilename = require('../utils/filename_sanitizer');
const formats = require('../models/formats');
module.exports = function queryParams ({ strategy = 'query' } = {}) {
2019-07-26 22:41:16 +08:00
const getParams = getParamsFromStrategy(strategy);
return function queryParamsMiddleware (req, res, next) {
const inputParams = Object.assign({}, req.query, req.body || {});
try {
res.locals.params = getParams(inputParams);
next();
} catch (err) {
next(err);
}
};
};
function getParamsFromStrategy (strategy) {
let fn;
switch (strategy) {
case('query'):
2019-07-26 22:41:16 +08:00
fn = queryParamsStrategy;
break;
case('job'):
2019-07-26 22:41:16 +08:00
fn = jobParamsStrategy;
break;
case('copyfrom'):
2019-07-26 22:41:16 +08:00
fn = copyFromParamsStrategy;
break;
case('copyto'):
2019-07-26 22:41:16 +08:00
fn = copyToParamsStrategy;
break;
default:
2019-07-26 22:41:16 +08:00
throw new Error('Missig parameter strategy');
}
2019-07-26 22:41:16 +08:00
return fn;
}
2019-07-26 22:41:16 +08:00
function queryParamsStrategy (inputParams) {
const params = {};
2019-07-26 17:34:15 +08:00
params.sql = inputParams.q;
2019-07-26 17:34:15 +08:00
if (typeof params.sql !== 'string') {
2019-07-26 22:41:16 +08:00
throw new Error('You must indicate a sql query');
}
2019-07-26 17:34:15 +08:00
params.format = parseFormat(inputParams.format);
2019-07-26 17:34:15 +08:00
if (!formats.hasOwnProperty(params.format) ) {
2019-07-26 22:41:16 +08:00
throw new Error(`Invalid format: ${params.format}`);
}
2019-07-26 17:34:15 +08:00
2019-07-26 22:41:16 +08:00
params.orderBy = inputParams.order_by;
params.sortOrder = inputParams.sort_order;
params.skipfields = parseSkipFiles(inputParams.skipfields);
params.decimalPrecision = inputParams.dp ? inputParams.dp : '6';
params.filename = parseQueryFilename(inputParams.filename);
params.limit = parseLimit(inputParams.rows_per_page);
params.offset = parseOffset(inputParams.page, params.limit);
params.callback = inputParams.callback;
2019-07-26 17:34:15 +08:00
2019-07-26 22:41:16 +08:00
return params;
}
2019-07-26 22:41:16 +08:00
function jobParamsStrategy (inputParams) {
const params = {};
params.sql = inputParams.query;
2019-07-26 22:41:16 +08:00
return params;
}
2019-07-26 22:41:16 +08:00
function copyFromParamsStrategy (inputParams) {
const params = {};
params.sql = inputParams.q;
if (typeof params.sql !== 'string') {
2019-07-26 22:41:16 +08:00
throw new Error('SQL is missing');
}
2019-07-26 22:41:16 +08:00
if (!params.sql.toUpperCase().startsWith('COPY ')) {
throw new Error('SQL must start with COPY');
}
2019-07-26 22:41:16 +08:00
return params;
}
2019-07-26 22:41:16 +08:00
function copyToParamsStrategy (inputParams) {
const params = {};
params.sql = inputParams.q;
if (typeof params.sql !== 'string') {
2019-07-26 22:41:16 +08:00
throw new Error('SQL is missing');
}
if (!params.sql .toUpperCase().startsWith('COPY ')) {
2019-07-26 22:41:16 +08:00
throw new Error('SQL must start with COPY');
}
params.filename = inputParams.filename ? inputParams.filename : 'carto-sql-copyto.dmp';
2019-07-26 22:41:16 +08:00
return params;
}
2019-07-26 17:34:15 +08:00
function parseQueryFilename (inputFilename) {
2019-07-26 17:34:15 +08:00
return (inputFilename === '' || inputFilename === undefined) ? 'cartodb-query' : sanitizeFilename(inputFilename);
}
function parseOffset (inputPage, inputLimit) {
let offset;
offset = parseInt(inputPage, 10);
if (Number.isFinite(offset)) {
offset = offset * inputLimit;
} else {
offset = null;
}
return offset;
}
function parseLimit (inputLimit) {
let limit;
limit = parseInt(inputLimit, 10);
if (!Number.isFinite(limit)) {
limit = null;
}
return limit;
}
function parseFormat (inputFormat) {
let format;
if (Array.isArray(inputFormat)) {
format = inputFormat[inputFormat.length - 1];
}
if (inputFormat === '' || inputFormat === undefined) {
format = 'json';
} else if (typeof inputFormat === 'string'){
format = inputFormat.toLowerCase();
}
return format;
}
// Accept both comma-separated string or array of comma-separated strings
function parseSkipFiles (inputSkippedFiles) {
let skipfields;
if (!inputSkippedFiles) {
skipfields = [];
return skipfields;
}
if (typeof inputSkippedFiles === 'string' ) {
skipfields = inputSkippedFiles.split(',');
return skipfields;
}
if (Array.isArray(inputSkippedFiles) ) {
skipfields = [];
inputSkippedFiles.forEach(e => {
skipfields = skipfields.concat(e.split(','));
});
}
return skipfields;
}