2018-04-13 03:25:28 +08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var _ = require('underscore');
|
|
|
|
var CachedQueryTables = require('../services/cached-query-tables');
|
|
|
|
|
|
|
|
const userMiddleware = require('../middlewares/user');
|
|
|
|
const errorMiddleware = require('../middlewares/error');
|
|
|
|
const authorizationMiddleware = require('../middlewares/authorization');
|
|
|
|
const connectionParamsMiddleware = require('../middlewares/connection-params');
|
|
|
|
const timeoutLimitsMiddleware = require('../middlewares/timeout-limits');
|
|
|
|
const { initializeProfilerMiddleware } = require('../middlewares/profiler');
|
|
|
|
const rateLimitsMiddleware = require('../middlewares/rate-limit');
|
|
|
|
const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimitsMiddleware;
|
|
|
|
|
2018-04-24 17:26:15 +08:00
|
|
|
// Database requirements
|
|
|
|
var PSQL = require('cartodb-psql');
|
|
|
|
var fs = require('fs');
|
2018-04-24 21:55:20 +08:00
|
|
|
var copyTo = require('pg-copy-streams').to;
|
|
|
|
var copyFrom = require('pg-copy-streams').from;
|
2018-04-13 03:25:28 +08:00
|
|
|
|
|
|
|
// We need NPM body-parser so we can use the multer and
|
|
|
|
// still decode the urlencoded 'sql' parameter from
|
|
|
|
// the POST body
|
|
|
|
var bodyParser = require('body-parser'); // NPM body-parser
|
|
|
|
|
|
|
|
// We need multer to support multi-part POST content
|
|
|
|
var multer = require('multer');
|
|
|
|
|
|
|
|
// The default multer storage engines (file/memory) don't
|
|
|
|
// do what we need, which is pipe the multer read stream
|
|
|
|
// straight into the pg-copy write stream, so we use
|
|
|
|
// a custom storage engine
|
2018-04-24 17:26:15 +08:00
|
|
|
// var multerpgcopy = require('../utils/multer-pg-copy');
|
|
|
|
// var upload = multer({ storage: multerpgcopy() });
|
2018-04-13 03:25:28 +08:00
|
|
|
|
2018-04-24 17:26:15 +08:00
|
|
|
// Store the uploaded file in the tmp directory, with limits on the
|
|
|
|
// size of acceptable uploads
|
|
|
|
var uploadLimits = { fileSize: 1024*1024*1024, fields: 10, files: 1 };
|
|
|
|
var upload = multer({ storage: multer.diskStorage({}), limits: uploadLimits });
|
2018-04-13 03:25:28 +08:00
|
|
|
|
|
|
|
function CopyController(metadataBackend, userDatabaseService, tableCache, statsd_client, userLimitsService) {
|
|
|
|
this.metadataBackend = metadataBackend;
|
|
|
|
this.statsd_client = statsd_client;
|
|
|
|
this.userDatabaseService = userDatabaseService;
|
|
|
|
this.queryTables = new CachedQueryTables(tableCache);
|
|
|
|
this.userLimitsService = userLimitsService;
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyController.prototype.route = function (app) {
|
|
|
|
const { base_url } = global.settings;
|
2018-04-24 19:07:57 +08:00
|
|
|
|
2018-04-13 03:25:28 +08:00
|
|
|
const copyFromMiddlewares = endpointGroup => {
|
|
|
|
return [
|
2018-04-24 19:07:57 +08:00
|
|
|
initializeProfilerMiddleware('copyfrom'),
|
2018-04-13 03:25:28 +08:00
|
|
|
userMiddleware(),
|
|
|
|
rateLimitsMiddleware(this.userLimitsService, endpointGroup),
|
|
|
|
authorizationMiddleware(this.metadataBackend),
|
|
|
|
connectionParamsMiddleware(this.userDatabaseService),
|
|
|
|
timeoutLimitsMiddleware(this.metadataBackend),
|
2018-04-13 20:43:23 +08:00
|
|
|
bodyParser.urlencoded({ extended: true }),
|
2018-04-13 03:25:28 +08:00
|
|
|
upload.single('file'),
|
|
|
|
this.handleCopyFrom.bind(this),
|
|
|
|
errorMiddleware()
|
|
|
|
];
|
|
|
|
};
|
2018-04-24 19:07:57 +08:00
|
|
|
|
|
|
|
const copyToMiddlewares = endpointGroup => {
|
|
|
|
return [
|
|
|
|
initializeProfilerMiddleware('copyto'),
|
|
|
|
userMiddleware(),
|
|
|
|
rateLimitsMiddleware(this.userLimitsService, endpointGroup),
|
|
|
|
authorizationMiddleware(this.metadataBackend),
|
|
|
|
connectionParamsMiddleware(this.userDatabaseService),
|
|
|
|
timeoutLimitsMiddleware(this.metadataBackend),
|
|
|
|
this.handleCopyTo.bind(this),
|
|
|
|
errorMiddleware()
|
|
|
|
];
|
|
|
|
};
|
2018-04-13 03:25:28 +08:00
|
|
|
|
|
|
|
app.post(`${base_url}/copyfrom`, copyFromMiddlewares(RATE_LIMIT_ENDPOINTS_GROUPS.QUERY));
|
2018-04-24 19:07:57 +08:00
|
|
|
app.get(`${base_url}/copyto`, copyToMiddlewares(RATE_LIMIT_ENDPOINTS_GROUPS.QUERY));
|
2018-04-13 03:25:28 +08:00
|
|
|
};
|
|
|
|
|
2018-04-24 19:07:57 +08:00
|
|
|
|
|
|
|
CopyController.prototype.handleCopyTo = function (req, res, next) {
|
2018-04-24 21:55:20 +08:00
|
|
|
|
|
|
|
// curl "http://cdb.localhost.lan:8080/api/v2/copyto?sql=copy+foo+to+stdout&filename=output.dmp"
|
|
|
|
|
|
|
|
var sql = req.query.sql;
|
|
|
|
var filename = req.query.filename;
|
|
|
|
sql = (sql === "" || _.isUndefined(sql)) ? null : sql;
|
|
|
|
|
|
|
|
// Ensure SQL parameter is not missing
|
|
|
|
if (!_.isString(sql)) {
|
|
|
|
throw new Error("Parameter 'sql' is missing");
|
|
|
|
}
|
|
|
|
|
|
|
|
// console.debug("CopyController.prototype.handleCopyTo: sql = '%s'", sql);
|
|
|
|
|
|
|
|
// Only accept SQL that starts with 'COPY'
|
|
|
|
if (!sql.toUpperCase().startsWith("COPY ")) {
|
|
|
|
throw new Error("SQL must start with COPY");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Open pgsql COPY pipe and stream out to HTTP response
|
|
|
|
const { user: username, userDbParams: dbopts, authDbParams, userLimits, authenticated } = res.locals;
|
|
|
|
var pg = new PSQL(authDbParams);
|
|
|
|
pg.connect(function(err, client, cb) {
|
|
|
|
var copyToStream = copyTo(sql);
|
|
|
|
var pgstream = client.query(copyToStream);
|
|
|
|
res.on('error', next);
|
|
|
|
pgstream.on('error', next);
|
|
|
|
pgstream.on('end', cb);
|
|
|
|
if (_.isString(filename)) {
|
|
|
|
var contentDisposition = "attachment; filename*=UTF-8''" + encodeURIComponent(filename);
|
|
|
|
res.setHeader("Content-Disposition", contentDisposition);
|
|
|
|
}
|
|
|
|
res.setHeader("Content-Type", "application/octet-stream");
|
|
|
|
pgstream.pipe(res)
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
next(err);
|
|
|
|
}
|
2018-04-24 19:07:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-13 03:25:28 +08:00
|
|
|
// jshint maxcomplexity:21
|
2018-04-24 17:26:15 +08:00
|
|
|
CopyController.prototype.handleCopyFrom = function (req, res, next) {
|
|
|
|
|
2018-04-24 19:07:57 +08:00
|
|
|
// curl --form file=@copyfrom.txt --form sql="COPY foo FROM STDOUT" http://cdb.localhost.lan:8080/api/v2/copyfrom
|
2018-04-13 03:25:28 +08:00
|
|
|
|
2018-04-24 17:26:15 +08:00
|
|
|
var sql = req.body.sql;
|
|
|
|
sql = (sql === "" || _.isUndefined(sql)) ? null : sql;
|
|
|
|
|
|
|
|
// Ensure SQL parameter is not missing
|
|
|
|
if (!_.isString(sql)) {
|
|
|
|
throw new Error("Parameter 'sql' is missing");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only accept SQL that starts with 'COPY'
|
|
|
|
if (!sql.toUpperCase().startsWith("COPY ")) {
|
|
|
|
throw new Error("SQL must start with COPY");
|
|
|
|
}
|
|
|
|
|
2018-04-24 19:07:57 +08:00
|
|
|
// console.debug("CopyController.handleCopyFrom: sql = '%s'", sql);
|
2018-04-24 17:26:15 +08:00
|
|
|
|
|
|
|
// The multer middleware should have filled 'req.file' in
|
|
|
|
// with the name, size, path, etc of the file
|
|
|
|
if (typeof req.file === 'undefined') {
|
|
|
|
throw new Error("Parameter 'file' is missing");
|
|
|
|
}
|
2018-04-24 19:07:57 +08:00
|
|
|
|
|
|
|
var copyFromStream = copyFrom(sql);
|
|
|
|
|
|
|
|
var returnResult = function() {
|
|
|
|
// Return some useful information about the process,
|
|
|
|
// pg-copy-streams fills in the rowCount after import is complete
|
|
|
|
var result = "handleCopyFrom completed with row count = " + copyFromStream.rowCount;
|
|
|
|
res.send(result + "\n");
|
|
|
|
}
|
|
|
|
|
2018-04-24 17:26:15 +08:00
|
|
|
try {
|
2018-04-24 19:07:57 +08:00
|
|
|
// Open pgsql COPY pipe and stream in tmp file
|
2018-04-24 17:26:15 +08:00
|
|
|
const { user: username, userDbParams: dbopts, authDbParams, userLimits, authenticated } = res.locals;
|
|
|
|
var pg = new PSQL(authDbParams);
|
2018-04-24 19:07:57 +08:00
|
|
|
pg.connect(function(err, client, cb) {
|
2018-04-24 17:26:15 +08:00
|
|
|
var stream = client.query(copyFromStream);
|
|
|
|
var fileStream = fs.createReadStream(req.file.path);
|
|
|
|
fileStream.on('error', next);
|
|
|
|
stream.on('error', next);
|
2018-04-24 19:07:57 +08:00
|
|
|
stream.on('end', returnResult);
|
2018-04-24 17:26:15 +08:00
|
|
|
fileStream.pipe(stream)
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
next(err);
|
|
|
|
}
|
|
|
|
|
2018-04-13 03:25:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = CopyController;
|