Windshaft-cartodb/lib/cartodb/controllers/layergroup.js

670 lines
21 KiB
JavaScript
Raw Normal View History

var cors = require('../middleware/cors');
var userMiddleware = require('../middleware/user');
var allowQueryParams = require('../middleware/allow-query-params');
2017-11-07 18:07:38 +08:00
var vectorError = require('../middleware/vector-error');
var DataviewBackend = require('../backends/dataview');
var AnalysisStatusBackend = require('../backends/analysis-status');
2016-05-23 19:29:34 +08:00
var MapStoreMapConfigProvider = require('../models/mapconfig/provider/map-store-provider');
2016-02-22 18:40:25 +08:00
var QueryTables = require('cartodb-query-tables');
/**
* @param {AuthApi} authApi
* @param {PgConnection} pgConnection
* @param {MapStore} mapStore
* @param {TileBackend} tileBackend
* @param {PreviewBackend} previewBackend
* @param {AttributesBackend} attributesBackend
* @param {SurrogateKeysCache} surrogateKeysCache
* @param {UserLimitsApi} userLimitsApi
* @param {LayergroupAffectedTables} layergroupAffectedTables
* @param {AnalysisBackend} analysisBackend
* @constructor
*/
function LayergroupController(prepareContext, pgConnection, mapStore, tileBackend, previewBackend, attributesBackend,
surrogateKeysCache, userLimitsApi, layergroupAffectedTables, analysisBackend) {
2016-02-22 18:40:25 +08:00
this.pgConnection = pgConnection;
this.mapStore = mapStore;
this.tileBackend = tileBackend;
this.previewBackend = previewBackend;
this.attributesBackend = attributesBackend;
this.surrogateKeysCache = surrogateKeysCache;
2015-07-11 01:10:55 +08:00
this.userLimitsApi = userLimitsApi;
this.layergroupAffectedTables = layergroupAffectedTables;
this.dataviewBackend = new DataviewBackend(analysisBackend);
this.analysisStatusBackend = new AnalysisStatusBackend();
this.prepareContext = prepareContext;
}
module.exports = LayergroupController;
2017-10-05 18:12:21 +08:00
LayergroupController.prototype.register = function(app) {
app.get(
app.base_url_mapconfig + '/:token/:z/:x/:y@:scale_factor?x.:format',
cors(),
2017-10-05 18:12:21 +08:00
userMiddleware,
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 23:19:53 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.tile(this.tileBackend),
this.incrementSuccessMetrics(global.statsClient),
this.incrementErrorMetrics(global.statsClient),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse(),
2018-03-06 23:44:37 +08:00
this.tileError(),
2017-11-07 18:07:38 +08:00
vectorError()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/:z/:x/:y.:format',
cors(),
userMiddleware,
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 23:19:53 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.tile(this.tileBackend),
this.incrementSuccessMetrics(global.statsClient),
this.incrementErrorMetrics(global.statsClient),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse(),
2018-03-06 23:44:37 +08:00
this.tileError(),
2017-11-07 18:07:38 +08:00
vectorError()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/:layer/:z/:x/:y.(:format)',
cors(),
userMiddleware,
validateLayerRouteMiddleware,
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 23:19:53 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.layer(this.tileBackend),
this.incrementSuccessMetrics(global.statsClient),
this.incrementErrorMetrics(global.statsClient),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse(),
2018-03-06 23:44:37 +08:00
this.tileError(),
2017-11-07 18:07:38 +08:00
vectorError()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/:layer/attributes/:fid',
cors(),
userMiddleware,
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 01:28:52 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.attributes(this.attributesBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
const forcedFormat = 'png';
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/static/center/:token/:z/:lat/:lng/:width/:height.:format',
cors(),
userMiddleware,
allowQueryParams(['layer']),
2017-09-22 23:56:47 +08:00
this.prepareContext,
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi, forcedFormat),
this.center(this.previewBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/static/bbox/:token/:west,:south,:east,:north/:width/:height.:format',
cors(),
userMiddleware,
allowQueryParams(['layer']),
2017-09-22 23:56:47 +08:00
this.prepareContext,
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi, forcedFormat),
this.bbox(this.previewBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
2015-10-07 01:47:44 +08:00
// Undocumented/non-supported API endpoint methods.
// Use at your own peril.
var allowedDataviewQueryParams = [
'filters', // json
'own_filter', // 0, 1
2017-12-12 18:54:09 +08:00
'no_filters', // 0, 1
'bbox', // w,s,e,n
'start', // number
'end', // number
'column_type', // string
'bins', // number
'aggregation', //string
2017-07-15 00:30:36 +08:00
'offset', // number
'q', // widgets search
'categories', // number
];
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/dataview/:dataviewName',
cors(),
userMiddleware,
allowQueryParams(allowedDataviewQueryParams),
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 00:44:04 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.getDataview(this.dataviewBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/:layer/widget/:dataviewName',
cors(),
userMiddleware,
allowQueryParams(allowedDataviewQueryParams),
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 00:44:04 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.getDataview(this.dataviewBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/dataview/:dataviewName/search',
cors(),
userMiddleware,
allowQueryParams(allowedDataviewQueryParams),
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 01:05:42 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.dataviewSearch(this.dataviewBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/:layer/widget/:dataviewName/search',
cors(),
userMiddleware,
allowQueryParams(allowedDataviewQueryParams),
2017-09-22 23:56:47 +08:00
this.prepareContext,
2018-03-06 01:05:42 +08:00
this.getMapStoreMapConfigProvider(this.mapStore, this.userLimitsApi),
this.dataviewSearch(this.dataviewBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
2018-03-07 03:01:43 +08:00
this.getAffectedTables(this.layergroupAffectedTables, this.pgConnection),
this.setCacheChannelHeader(),
this.setSurrogateKeyHeader(this.surrogateKeysCache),
this.sendResponse()
);
2016-04-12 00:49:56 +08:00
2017-10-05 18:12:21 +08:00
app.get(
app.base_url_mapconfig + '/:token/analysis/node/:nodeId',
cors(),
userMiddleware,
2017-09-22 23:56:47 +08:00
this.prepareContext,
this.analysisNodeStatus(this.analysisStatusBackend),
this.setCacheControlHeader(),
this.setLastModifiedHeader(),
this.sendResponse()
);
2016-04-12 00:49:56 +08:00
};
function validateLayerRouteMiddleware(req, res, next) {
if (req.params.token === 'static') {
return next('route');
}
next();
}
LayergroupController.prototype.analysisNodeStatus = function (analysisStatusBackend) {
return function analysisNodeStatusMiddleware(req, res, next) {
analysisStatusBackend.getNodeStatus(res.locals, (err, nodeStatus, stats) => {
req.profiler.add(stats || {});
if (err) {
err.label = 'GET NODE STATUS';
return next(err);
}
res.set({
'Cache-Control': 'public,max-age=5',
'Last-Modified': new Date().toUTCString()
});
res.body = nodeStatus;
next();
});
2018-03-07 03:05:55 +08:00
};
};
function getRequestParams(locals) {
const params = Object.assign({}, locals);
delete params.mapConfigProvider;
delete params.allowedQueryParams;
return params;
}
LayergroupController.prototype.getMapStoreMapConfigProvider = function (mapStore, userLimitsApi, forcedFormat = null) {
2018-03-06 00:44:04 +08:00
return function getMapStoreMapConfigProviderMiddleware (req, res, next) {
const { user } = res.locals;
const params = getRequestParams(res.locals);
if (forcedFormat) {
params.format = forcedFormat;
params.layer = params.layer || 'all';
}
2018-03-07 03:01:43 +08:00
const mapConfigProvider = new MapStoreMapConfigProvider(mapStore, user, userLimitsApi, params);
2018-03-06 00:44:04 +08:00
2018-03-07 03:01:43 +08:00
mapConfigProvider.getMapConfig((err, mapconfig) => {
if (err) {
return next(err);
}
res.locals.mapConfigProvider = mapConfigProvider;
res.locals.mapconfig = mapconfig;
next();
});
2018-03-06 00:44:04 +08:00
};
};
LayergroupController.prototype.getDataview = function (dataviewBackend) {
2018-03-06 00:44:04 +08:00
return function getDataviewMiddleware (req, res, next) {
const { user, mapConfigProvider } = res.locals;
dataviewBackend.getDataview(mapConfigProvider, user, res.locals, (err, dataview, stats) => {
req.profiler.add(stats || {});
if (err) {
err.label = 'GET DATAVIEW';
2018-03-06 00:44:04 +08:00
return next(err);
}
2018-03-06 00:44:04 +08:00
res.body = dataview;
next();
2018-03-06 00:44:04 +08:00
});
2018-03-07 03:05:55 +08:00
};
};
2018-03-06 01:05:42 +08:00
LayergroupController.prototype.dataviewSearch = function (dataviewBackend) {
return function dataviewSearchMiddlewarify (req, res, next) {
const { user, dataviewName, mapConfigProvider } = res.locals;
2018-03-06 01:05:42 +08:00
dataviewBackend.search(mapConfigProvider, user, dataviewName, res.locals, (err, searchResult, stats) => {
req.profiler.add(stats || {});
if (err) {
err.label = 'GET DATAVIEW SEARCH';
2018-03-06 01:05:42 +08:00
return next(err);
}
res.body = searchResult;
next();
2018-03-06 01:05:42 +08:00
});
2018-03-07 03:05:55 +08:00
};
};
2018-03-06 01:28:52 +08:00
LayergroupController.prototype.attributes = function (attributesBackend) {
return function attributesMiddleware (req, res, next) {
req.profiler.start('windshaft.maplayer_attribute');
2018-03-06 01:28:52 +08:00
const { mapConfigProvider } = res.locals;
2018-03-06 01:28:52 +08:00
attributesBackend.getFeatureAttributes(mapConfigProvider, res.locals, false, (err, tile, stats) => {
req.profiler.add(stats || {});
if (err) {
err.label = 'GET ATTRIBUTES';
2018-03-06 01:28:52 +08:00
return next(err);
}
res.body = tile;
next();
2018-03-06 01:28:52 +08:00
});
2018-03-07 03:05:55 +08:00
};
};
2018-03-06 23:19:53 +08:00
function getStatusCode(tile, format){
return tile.length === 0 && format === 'mvt'? 204 : 200;
2018-03-06 23:19:53 +08:00
}
2018-03-06 23:19:53 +08:00
const supportedFormats = {
grid_json: true,
json_torque: true,
torque_json: true,
png: true,
png32: true,
mvt: true
};
function parseFormat (format = '') {
2018-03-06 23:19:53 +08:00
const prettyFormat = format.replace('.', '_');
let formatStat = 'invalid';
2018-03-06 23:19:53 +08:00
if (supportedFormats[prettyFormat]) {
formatStat = prettyFormat;
}
return formatStat;
}
2018-03-06 23:19:53 +08:00
LayergroupController.prototype.tile = function (tileBackend) {
return function tileMiddleware (req, res, next) {
req.profiler.start('windshaft.map_tile');
2018-03-06 23:19:53 +08:00
const { mapConfigProvider } = res.locals;
const params = getRequestParams(res.locals);
tileBackend.getTile(mapConfigProvider, params, (err, tile, headers, stats) => {
req.profiler.add(stats);
if (err) {
return next(err);
2018-03-06 23:19:53 +08:00
}
if (headers) {
res.set(headers);
}
const formatStat = parseFormat(req.params.format);
res.statusCode = getStatusCode(tile, formatStat);
res.body = tile;
next();
2018-03-06 23:19:53 +08:00
});
2018-03-07 03:05:55 +08:00
};
2018-03-06 23:19:53 +08:00
};
LayergroupController.prototype.layer = function (tileBackend) {
return function layerMiddleware (req, res, next) {
req.profiler.start('windshaft.maplayer_tile');
const { mapConfigProvider } = res.locals;
const params = getRequestParams(res.locals);
tileBackend.getTile(mapConfigProvider, params, (err, tile, headers, stats) => {
req.profiler.add(stats);
if (err) {
return next(err);
2018-03-06 23:19:53 +08:00
}
if (headers) {
res.set(headers);
}
const formatStat = parseFormat(req.params.format);
res.statusCode = getStatusCode(tile, formatStat);
res.body = tile;
next();
2018-03-06 23:19:53 +08:00
});
2018-03-07 03:05:55 +08:00
};
};
LayergroupController.prototype.incrementSuccessMetrics = function (statsClient) {
return function incrementSuccessMetricsMiddleware (req, res, next) {
const formatStat = parseFormat(req.params.format);
statsClient.increment('windshaft.tiles.success');
statsClient.increment(`windshaft.tiles.${formatStat}.success`);
next();
};
};
LayergroupController.prototype.incrementErrorMetrics = function (statsClient) {
return function incrementErrorMetricsMiddleware (err, req, res, next) {
const formatStat = parseFormat(req.params.format);
statsClient.increment('windshaft.tiles.error');
statsClient.increment(`windshaft.tiles.${formatStat}.error`);
next(err);
};
};
2018-03-06 23:44:37 +08:00
LayergroupController.prototype.tileError = function () {
return function tileErrorMiddleware (err, req, res, next) {
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/68
let errMsg = err.message ? ( '' + err.message ) : ( '' + err );
// Rewrite mapnik parsing errors to start with layer number
const matches = errMsg.match("(.*) in style 'layer([0-9]+)'");
if (matches) {
errMsg = 'style' + matches[2] + ': ' + matches[1];
}
err.message = errMsg;
err.label = 'TILE RENDER';
next(err);
};
};
LayergroupController.prototype.center = function (previewBackend) {
return function centerMiddleware (req, res, next) {
const width = +req.params.width;
const height = +req.params.height;
const zoom = +req.params.z;
const center = {
lng: +req.params.lng,
lat: +req.params.lat
};
const format = req.params.format === 'jpg' ? 'jpeg' : 'png';
const { mapConfigProvider } = res.locals;
2018-03-06 02:33:46 +08:00
previewBackend.getImage(mapConfigProvider, format, width, height, zoom, center,(err, image, headers, stats) => {
req.profiler.done('render-' + format);
req.profiler.add(stats || {});
if (err) {
err.label = 'STATIC_MAP';
return next(err);
}
if (headers) {
res.set(headers);
}
res.set('Content-Type', headers['Content-Type'] || 'image/' + format);
res.body = image;
next();
});
2018-03-07 03:05:55 +08:00
};
};
LayergroupController.prototype.bbox = function (previewBackend) {
return function bboxMiddleware (req, res, next) {
const width = +req.params.width;
const height = +req.params.height;
const bounds = {
west: +req.params.west,
north: +req.params.north,
east: +req.params.east,
south: +req.params.south
};
const format = req.params.format === 'jpg' ? 'jpeg' : 'png';
const { mapConfigProvider } = res.locals;
previewBackend.getImage(mapConfigProvider, format, width, height, bounds, (err, image, headers, stats) => {
req.profiler.done('render-' + format);
req.profiler.add(stats || {});
if (err) {
err.label = 'STATIC_MAP';
return next(err);
}
if (headers) {
res.set(headers);
}
res.set('Content-Type', headers['Content-Type'] || 'image/' + format);
res.body = image;
next();
});
2018-03-07 03:05:55 +08:00
};
};
LayergroupController.prototype.setLastModifiedHeader = function () {
return function setLastModifiedHeaderMiddleware (req, res, next) {
let { cache_buster: cacheBuster } = res.locals;
cacheBuster = parseInt(cacheBuster);
const lastUpdated = res.locals.cache_buster ? new Date(cacheBuster) : new Date();
res.set('Last-Modified', lastUpdated.toUTCString());
next();
};
};
LayergroupController.prototype.setCacheControlHeader = function () {
return function setCacheControlHeaderMiddleware (req, res, next) {
if (!res.get('Cache-Control')) {
res.set('Cache-Control', 'public,max-age=31536000');
2018-03-06 23:55:27 +08:00
}
next();
};
};
2018-03-06 23:55:27 +08:00
2018-03-07 03:01:43 +08:00
LayergroupController.prototype.getAffectedTables = function (layergroupAffectedTables, pgConnection) {
return function getAffectedTablesMiddleware (req, res, next) {
const { user, dbname, token, mapconfig } = res.locals;
2018-03-07 03:01:43 +08:00
if (layergroupAffectedTables.hasAffectedTables(dbname, token)) {
res.locals.affectedTables = layergroupAffectedTables.get(dbname, token);
return next();
}
2018-03-07 03:01:43 +08:00
pgConnection.getConnection(user, (err, connection) => {
if (err) {
global.logger.warn('ERROR generating cache channel: ' + err);
2018-03-07 03:01:43 +08:00
return next();
}
2018-03-07 03:01:43 +08:00
const sql = [];
mapconfig.getLayers().forEach(function(layer) {
sql.push(layer.options.sql);
if (layer.options.affected_tables) {
layer.options.affected_tables.map(function(table) {
sql.push('SELECT * FROM ' + table + ' LIMIT 0');
});
}
});
2018-03-07 03:01:43 +08:00
QueryTables.getAffectedTablesFromQuery(connection, sql.join(';'), (err, affectedTables) => {
req.profiler.done('getAffectedTablesFromQuery');
if (err) {
global.logger.warn('ERROR generating cache channel: ' + err);
return next();
}
2018-03-07 03:01:43 +08:00
// feed affected tables cache so it can be reused from, for instance, map controller
layergroupAffectedTables.set(dbname, token, affectedTables);
2018-03-07 03:01:43 +08:00
res.locals.affectedTables = affectedTables;
2018-03-07 03:01:43 +08:00
next();
});
2018-03-07 01:43:23 +08:00
});
2018-03-07 03:01:43 +08:00
};
};
2018-03-07 01:43:23 +08:00
2018-03-07 03:01:43 +08:00
LayergroupController.prototype.setCacheChannelHeader = function () {
return function setCacheChannelHeaderMiddleware (req, res, next) {
const { affectedTables } = res.locals;
2018-03-07 03:01:43 +08:00
if (affectedTables) {
res.set('X-Cache-Channel', affectedTables.getCacheChannel());
2018-03-07 01:43:23 +08:00
}
2018-03-07 03:01:43 +08:00
next();
};
};
2018-03-07 00:08:39 +08:00
2018-03-07 03:01:43 +08:00
LayergroupController.prototype.setSurrogateKeyHeader = function (surrogateKeysCache) {
return function setSurrogateKeyHeaderMiddleware (req, res, next) {
const { affectedTables } = res.locals;
2018-03-07 00:08:39 +08:00
2018-03-07 03:01:43 +08:00
if (affectedTables) {
surrogateKeysCache.tag(res, affectedTables);
}
2018-03-07 01:43:23 +08:00
2018-03-07 03:01:43 +08:00
next();
};
};
LayergroupController.prototype.sendResponse = function () {
return function sendResponseMiddleware (req, res) {
req.profiler.done('res');
res.status(res.statusCode || 200);
if (!Buffer.isBuffer(res.body) && typeof res.body === 'object') {
if (req.query && req.query.callback) {
res.jsonp(res.body);
} else {
res.json(res.body);
}
} else {
res.send(res.body);
}
};
};