2018-10-23 23:45:42 +08:00
|
|
|
'use strict';
|
|
|
|
|
2018-04-06 01:42:20 +08:00
|
|
|
const { Router: router } = require('express');
|
|
|
|
|
2018-04-03 01:02:31 +08:00
|
|
|
const RedisPool = require('redis-mpool');
|
|
|
|
const cartodbRedis = require('cartodb-redis');
|
|
|
|
|
|
|
|
const windshaft = require('windshaft');
|
|
|
|
|
2019-10-07 15:43:40 +08:00
|
|
|
const PgConnection = require('../backends/pg-connection');
|
2018-04-03 01:02:31 +08:00
|
|
|
const AnalysisBackend = require('../backends/analysis');
|
|
|
|
const AnalysisStatusBackend = require('../backends/analysis-status');
|
|
|
|
const DataviewBackend = require('../backends/dataview');
|
|
|
|
const TemplateMaps = require('../backends/template_maps.js');
|
2019-10-07 15:45:46 +08:00
|
|
|
const PgQueryRunner = require('../backends/pg-query-runner');
|
2018-04-03 01:02:31 +08:00
|
|
|
const StatsBackend = require('../backends/stats');
|
2018-04-10 00:08:56 +08:00
|
|
|
const AuthBackend = require('../backends/auth');
|
2018-04-03 01:02:31 +08:00
|
|
|
|
2018-04-10 16:16:07 +08:00
|
|
|
const UserLimitsBackend = require('../backends/user-limits');
|
2018-04-10 01:47:24 +08:00
|
|
|
const OverviewsMetadataBackend = require('../backends/overviews-metadata');
|
2018-04-10 00:56:01 +08:00
|
|
|
const FilterStatsApi = require('../backends/filter-stats');
|
2018-04-10 15:40:09 +08:00
|
|
|
const TablesExtentBackend = require('../backends/tables-extent');
|
2018-04-03 01:02:31 +08:00
|
|
|
|
2019-02-27 02:19:44 +08:00
|
|
|
const ClusterBackend = require('../backends/cluster');
|
|
|
|
|
2018-04-03 01:02:31 +08:00
|
|
|
const LayergroupAffectedTablesCache = require('../cache/layergroup_affected_tables');
|
|
|
|
const SurrogateKeysCache = require('../cache/surrogate_keys_cache');
|
|
|
|
const VarnishHttpCacheBackend = require('../cache/backend/varnish_http');
|
|
|
|
const FastlyCacheBackend = require('../cache/backend/fastly');
|
|
|
|
const NamedMapProviderCache = require('../cache/named_map_provider_cache');
|
|
|
|
const NamedMapsCacheEntry = require('../cache/model/named_maps_entry');
|
2019-09-14 02:01:03 +08:00
|
|
|
const NamedMapProviderReporter = require('../stats/reporter/named-map-provider');
|
2018-04-03 01:02:31 +08:00
|
|
|
|
|
|
|
const SqlWrapMapConfigAdapter = require('../models/mapconfig/adapter/sql-wrap-mapconfig-adapter');
|
|
|
|
const MapConfigNamedLayersAdapter = require('../models/mapconfig/adapter/mapconfig-named-layers-adapter');
|
|
|
|
const MapConfigBufferSizeAdapter = require('../models/mapconfig/adapter/mapconfig-buffer-size-adapter');
|
|
|
|
const AnalysisMapConfigAdapter = require('../models/mapconfig/adapter/analysis-mapconfig-adapter');
|
|
|
|
const MapConfigOverviewsAdapter = require('../models/mapconfig/adapter/mapconfig-overviews-adapter');
|
|
|
|
const TurboCartoAdapter = require('../models/mapconfig/adapter/turbo-carto-adapter');
|
|
|
|
const DataviewsWidgetsAdapter = require('../models/mapconfig/adapter/dataviews-widgets-adapter');
|
|
|
|
const AggregationMapConfigAdapter = require('../models/mapconfig/adapter/aggregation-mapconfig-adapter');
|
|
|
|
const MapConfigAdapter = require('../models/mapconfig/adapter');
|
2018-05-31 18:41:34 +08:00
|
|
|
const VectorMapConfigAdapter = require('../models/mapconfig/adapter/vector-mapconfig-adapter');
|
2018-04-03 01:02:31 +08:00
|
|
|
|
|
|
|
const ResourceLocator = require('../models/resource-locator');
|
|
|
|
const LayergroupMetadata = require('../utils/layergroup-metadata');
|
|
|
|
const RendererStatsReporter = require('../stats/reporter/renderer');
|
|
|
|
|
2018-05-09 21:00:18 +08:00
|
|
|
const initializeStatusCode = require('./middlewares/initialize-status-code');
|
2018-04-07 00:20:33 +08:00
|
|
|
const logger = require('./middlewares/logger');
|
2018-04-06 01:42:20 +08:00
|
|
|
const bodyParser = require('body-parser');
|
2018-04-07 00:20:33 +08:00
|
|
|
const servedByHostHeader = require('./middlewares/served-by-host-header');
|
|
|
|
const stats = require('./middlewares/stats');
|
|
|
|
const lzmaMiddleware = require('./middlewares/lzma');
|
|
|
|
const cors = require('./middlewares/cors');
|
|
|
|
const user = require('./middlewares/user');
|
|
|
|
const sendResponse = require('./middlewares/send-response');
|
|
|
|
const syntaxError = require('./middlewares/syntax-error');
|
|
|
|
const errorMiddleware = require('./middlewares/error-middleware');
|
2018-04-06 01:42:20 +08:00
|
|
|
|
2018-04-09 22:18:30 +08:00
|
|
|
const MapRouter = require('./map/map-router');
|
|
|
|
const TemplateRouter = require('./template/template-router');
|
2018-04-03 01:02:31 +08:00
|
|
|
|
2018-04-06 01:42:20 +08:00
|
|
|
module.exports = class ApiRouter {
|
2018-04-03 01:02:31 +08:00
|
|
|
constructor ({ serverOptions, environmentOptions }) {
|
2018-04-04 21:52:54 +08:00
|
|
|
this.serverOptions = serverOptions;
|
|
|
|
|
2018-05-08 00:24:41 +08:00
|
|
|
const redisOptions = Object.assign({
|
2018-04-03 01:02:31 +08:00
|
|
|
name: 'windshaft-server',
|
|
|
|
unwatchOnRelease: false,
|
|
|
|
noReadyCheck: true
|
2018-05-08 00:24:41 +08:00
|
|
|
}, environmentOptions.redis);
|
2018-04-03 01:02:31 +08:00
|
|
|
|
|
|
|
const redisPool = new RedisPool(redisOptions);
|
|
|
|
|
2018-04-04 21:52:54 +08:00
|
|
|
redisPool.on('status', function (status) {
|
2018-04-03 01:02:31 +08:00
|
|
|
var keyPrefix = 'windshaft.redis-pool.' + status.name + '.db' + status.db + '.';
|
|
|
|
global.statsClient.gauge(keyPrefix + 'count', status.count);
|
|
|
|
global.statsClient.gauge(keyPrefix + 'unused', status.unused);
|
|
|
|
global.statsClient.gauge(keyPrefix + 'waiting', status.waiting);
|
|
|
|
});
|
|
|
|
|
|
|
|
const metadataBackend = cartodbRedis({ pool: redisPool });
|
|
|
|
const pgConnection = new PgConnection(metadataBackend);
|
|
|
|
|
|
|
|
const mapStore = new windshaft.storage.MapStore({
|
|
|
|
pool: redisPool,
|
|
|
|
expire_time: serverOptions.grainstore.default_layergroup_ttl
|
|
|
|
});
|
|
|
|
|
|
|
|
const rendererFactory = createRendererFactory({ redisPool, serverOptions, environmentOptions });
|
|
|
|
|
2018-05-08 00:24:41 +08:00
|
|
|
const rendererCacheOpts = Object.assign({
|
2018-04-03 01:02:31 +08:00
|
|
|
ttl: 60000, // 60 seconds TTL by default
|
|
|
|
statsInterval: 60000 // reports stats every milliseconds defined here
|
2018-05-08 00:24:41 +08:00
|
|
|
}, serverOptions.renderCache || {});
|
|
|
|
|
2018-04-03 01:02:31 +08:00
|
|
|
const rendererCache = new windshaft.cache.RendererCache(rendererFactory, rendererCacheOpts);
|
|
|
|
const rendererStatsReporter = new RendererStatsReporter(rendererCache, rendererCacheOpts.statsInterval);
|
|
|
|
rendererStatsReporter.start();
|
|
|
|
|
|
|
|
const tileBackend = new windshaft.backend.Tile(rendererCache);
|
|
|
|
const attributesBackend = new windshaft.backend.Attributes();
|
2019-07-30 01:20:38 +08:00
|
|
|
const concurrency = serverOptions.renderer.mapnik.poolSize +
|
|
|
|
serverOptions.renderer.mapnik.poolMaxWaitingClients;
|
2019-07-30 01:14:27 +08:00
|
|
|
const previewBackend = new windshaft.backend.Preview(rendererCache, { concurrency });
|
2018-04-03 01:02:31 +08:00
|
|
|
const mapValidatorBackend = new windshaft.backend.MapValidator(tileBackend, attributesBackend);
|
|
|
|
const mapBackend = new windshaft.backend.Map(rendererCache, mapStore, mapValidatorBackend);
|
|
|
|
|
|
|
|
const surrogateKeysCacheBackends = createSurrogateKeysCacheBackends(serverOptions);
|
|
|
|
const surrogateKeysCache = new SurrogateKeysCache(surrogateKeysCacheBackends);
|
|
|
|
const templateMaps = createTemplateMaps({ redisPool, surrogateKeysCache });
|
|
|
|
|
|
|
|
const analysisStatusBackend = new AnalysisStatusBackend();
|
|
|
|
const analysisBackend = new AnalysisBackend(metadataBackend, serverOptions.analysis);
|
|
|
|
const dataviewBackend = new DataviewBackend(analysisBackend);
|
|
|
|
const statsBackend = new StatsBackend();
|
2019-02-27 02:19:44 +08:00
|
|
|
const clusterBackend = new ClusterBackend();
|
2018-04-03 01:02:31 +08:00
|
|
|
|
2018-04-10 16:16:07 +08:00
|
|
|
const userLimitsBackend = new UserLimitsBackend(metadataBackend, {
|
2018-04-03 01:02:31 +08:00
|
|
|
limits: {
|
|
|
|
cacheOnTimeout: serverOptions.renderer.mapnik.limits.cacheOnTimeout || false,
|
|
|
|
render: serverOptions.renderer.mapnik.limits.render || 0,
|
|
|
|
rateLimitsEnabled: global.environment.enabledFeatures.rateLimitsEnabled
|
|
|
|
}
|
|
|
|
});
|
2018-04-10 00:08:56 +08:00
|
|
|
const authBackend = new AuthBackend(pgConnection, metadataBackend, mapStore, templateMaps);
|
2018-04-03 01:02:31 +08:00
|
|
|
|
|
|
|
const layergroupAffectedTablesCache = new LayergroupAffectedTablesCache();
|
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'test') {
|
|
|
|
this.layergroupAffectedTablesCache = layergroupAffectedTablesCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
const pgQueryRunner = new PgQueryRunner(pgConnection);
|
2018-04-10 01:47:24 +08:00
|
|
|
const overviewsMetadataBackend = new OverviewsMetadataBackend(pgQueryRunner);
|
2018-04-03 01:02:31 +08:00
|
|
|
|
2018-04-10 00:56:01 +08:00
|
|
|
const filterStatsBackend = new FilterStatsApi(pgQueryRunner);
|
2018-04-10 15:40:09 +08:00
|
|
|
const tablesExtentBackend = new TablesExtentBackend(pgQueryRunner);
|
2018-04-03 01:02:31 +08:00
|
|
|
|
|
|
|
const mapConfigAdapter = new MapConfigAdapter(
|
|
|
|
new MapConfigNamedLayersAdapter(templateMaps, pgConnection),
|
|
|
|
new MapConfigBufferSizeAdapter(),
|
|
|
|
new SqlWrapMapConfigAdapter(),
|
|
|
|
new DataviewsWidgetsAdapter(),
|
|
|
|
new AnalysisMapConfigAdapter(analysisBackend),
|
2018-05-31 18:41:34 +08:00
|
|
|
new VectorMapConfigAdapter(pgConnection),
|
2018-04-03 01:02:31 +08:00
|
|
|
new AggregationMapConfigAdapter(pgConnection),
|
2018-04-10 01:47:24 +08:00
|
|
|
new MapConfigOverviewsAdapter(overviewsMetadataBackend, filterStatsBackend),
|
2018-04-03 01:02:31 +08:00
|
|
|
new TurboCartoAdapter()
|
|
|
|
);
|
|
|
|
|
|
|
|
const resourceLocator = new ResourceLocator(global.environment);
|
|
|
|
const layergroupMetadata = new LayergroupMetadata(resourceLocator);
|
|
|
|
|
|
|
|
const namedMapProviderCache = new NamedMapProviderCache(
|
|
|
|
templateMaps,
|
|
|
|
pgConnection,
|
|
|
|
metadataBackend,
|
2018-04-10 16:16:07 +08:00
|
|
|
userLimitsBackend,
|
2018-04-03 01:02:31 +08:00
|
|
|
mapConfigAdapter,
|
|
|
|
layergroupAffectedTablesCache
|
|
|
|
);
|
|
|
|
|
2019-09-14 02:01:03 +08:00
|
|
|
const namedMapProviderReporter = new NamedMapProviderReporter({
|
|
|
|
namedMapProviderCache,
|
|
|
|
intervalInMilliseconds: rendererCacheOpts.statsInterval
|
|
|
|
});
|
|
|
|
|
|
|
|
namedMapProviderReporter.start();
|
|
|
|
|
2018-04-04 21:52:54 +08:00
|
|
|
const collaborators = {
|
2018-04-03 01:02:31 +08:00
|
|
|
analysisStatusBackend,
|
|
|
|
attributesBackend,
|
|
|
|
dataviewBackend,
|
|
|
|
previewBackend,
|
|
|
|
tileBackend,
|
|
|
|
pgConnection,
|
|
|
|
mapStore,
|
2018-04-10 16:16:07 +08:00
|
|
|
userLimitsBackend,
|
2018-04-03 01:02:31 +08:00
|
|
|
layergroupAffectedTablesCache,
|
2018-04-10 00:08:56 +08:00
|
|
|
authBackend,
|
2018-04-03 01:02:31 +08:00
|
|
|
surrogateKeysCache,
|
|
|
|
templateMaps,
|
|
|
|
mapBackend,
|
|
|
|
metadataBackend,
|
|
|
|
mapConfigAdapter,
|
|
|
|
statsBackend,
|
2018-04-04 21:52:54 +08:00
|
|
|
layergroupMetadata,
|
2018-04-03 01:02:31 +08:00
|
|
|
namedMapProviderCache,
|
2019-02-27 02:19:44 +08:00
|
|
|
tablesExtentBackend,
|
|
|
|
clusterBackend
|
2018-04-04 21:52:54 +08:00
|
|
|
};
|
2018-04-03 01:02:31 +08:00
|
|
|
|
2018-05-09 20:59:21 +08:00
|
|
|
this.mapRouter = new MapRouter({ collaborators });
|
|
|
|
this.templateRouter = new TemplateRouter({ collaborators });
|
2018-04-03 01:02:31 +08:00
|
|
|
}
|
|
|
|
|
2019-10-04 18:22:23 +08:00
|
|
|
route (app, routes) {
|
2018-04-04 01:08:56 +08:00
|
|
|
// FIXME: we need a better way to reset cache while running tests
|
2018-04-03 01:02:31 +08:00
|
|
|
if (process.env.NODE_ENV === 'test') {
|
2018-04-04 21:52:54 +08:00
|
|
|
app.layergroupAffectedTablesCache = this.layergroupAffectedTablesCache;
|
2018-04-03 01:02:31 +08:00
|
|
|
}
|
|
|
|
|
2019-10-04 18:07:58 +08:00
|
|
|
routes.forEach(route => {
|
2018-05-14 17:50:48 +08:00
|
|
|
const apiRouter = router({ mergeParams: true });
|
2019-10-04 18:22:23 +08:00
|
|
|
const { paths, middlewares = [] } = route;
|
2019-10-02 16:42:29 +08:00
|
|
|
|
2019-10-04 18:22:23 +08:00
|
|
|
middlewares.forEach(middleware => apiRouter.use(middleware()));
|
2018-04-06 01:42:20 +08:00
|
|
|
|
2018-05-09 20:59:21 +08:00
|
|
|
apiRouter.use(logger(this.serverOptions));
|
2018-05-09 21:00:18 +08:00
|
|
|
apiRouter.use(initializeStatusCode());
|
2018-05-09 20:59:21 +08:00
|
|
|
apiRouter.use(bodyParser.json());
|
|
|
|
apiRouter.use(servedByHostHeader());
|
|
|
|
apiRouter.use(stats({
|
|
|
|
enabled: this.serverOptions.useProfiler,
|
|
|
|
statsClient: global.statsClient
|
|
|
|
}));
|
|
|
|
apiRouter.use(lzmaMiddleware());
|
|
|
|
apiRouter.use(cors());
|
|
|
|
apiRouter.use(user());
|
2018-04-06 01:42:20 +08:00
|
|
|
|
2019-10-04 18:22:23 +08:00
|
|
|
this.templateRouter.route(apiRouter, route.template);
|
|
|
|
this.mapRouter.route(apiRouter, route.map);
|
2018-04-06 01:42:20 +08:00
|
|
|
|
2018-05-09 20:59:21 +08:00
|
|
|
apiRouter.use(sendResponse());
|
|
|
|
apiRouter.use(syntaxError());
|
|
|
|
apiRouter.use(errorMiddleware());
|
2018-04-06 01:42:20 +08:00
|
|
|
|
2019-10-04 18:22:23 +08:00
|
|
|
paths.forEach(path => app.use(path, apiRouter));
|
2018-05-09 20:59:21 +08:00
|
|
|
});
|
2018-04-03 01:02:31 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function createTemplateMaps ({ redisPool, surrogateKeysCache }) {
|
|
|
|
const templateMaps = new TemplateMaps(redisPool, {
|
|
|
|
max_user_templates: global.environment.maxUserTemplates
|
|
|
|
});
|
|
|
|
|
|
|
|
function invalidateNamedMap (owner, templateName) {
|
|
|
|
var startTime = Date.now();
|
|
|
|
surrogateKeysCache.invalidate(new NamedMapsCacheEntry(owner, templateName), function(err) {
|
|
|
|
var logMessage = JSON.stringify({
|
|
|
|
username: owner,
|
|
|
|
type: 'named_map_invalidation',
|
|
|
|
elapsed: Date.now() - startTime,
|
|
|
|
error: !!err ? JSON.stringify(err.message) : undefined
|
|
|
|
});
|
|
|
|
if (err) {
|
|
|
|
global.logger.warn(logMessage);
|
|
|
|
} else {
|
|
|
|
global.logger.info(logMessage);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
['update', 'delete'].forEach(function(eventType) {
|
|
|
|
templateMaps.on(eventType, invalidateNamedMap);
|
|
|
|
});
|
|
|
|
|
|
|
|
return templateMaps;
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSurrogateKeysCacheBackends(serverOptions) {
|
|
|
|
var cacheBackends = [];
|
|
|
|
|
|
|
|
if (serverOptions.varnish_purge_enabled) {
|
|
|
|
cacheBackends.push(
|
|
|
|
new VarnishHttpCacheBackend(serverOptions.varnish_host, serverOptions.varnish_http_port)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serverOptions.fastly &&
|
|
|
|
!!serverOptions.fastly.enabled && !!serverOptions.fastly.apiKey && !!serverOptions.fastly.serviceId) {
|
|
|
|
cacheBackends.push(
|
|
|
|
new FastlyCacheBackend(serverOptions.fastly.apiKey, serverOptions.fastly.serviceId)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cacheBackends;
|
|
|
|
}
|
|
|
|
|
2019-10-07 15:40:50 +08:00
|
|
|
const timeoutErrorTilePath = __dirname + '/../../assets/render-timeout-fallback.png';
|
2018-04-03 01:02:31 +08:00
|
|
|
const timeoutErrorTile = require('fs').readFileSync(timeoutErrorTilePath, {encoding: null});
|
|
|
|
|
|
|
|
function createRendererFactory ({ redisPool, serverOptions, environmentOptions }) {
|
|
|
|
var onTileErrorStrategy;
|
|
|
|
if (environmentOptions.enabledFeatures.onTileErrorStrategy !== false) {
|
|
|
|
onTileErrorStrategy = function onTileErrorStrategy$TimeoutTile(err, tile, headers, stats, format, callback) {
|
|
|
|
|
|
|
|
function isRenderTimeoutError (err) {
|
|
|
|
return err.message === 'Render timed out';
|
|
|
|
}
|
|
|
|
|
|
|
|
function isDatasourceTimeoutError (err) {
|
|
|
|
return err.message && err.message.match(/canceling statement due to statement timeout/i);
|
|
|
|
}
|
|
|
|
|
|
|
|
function isTimeoutError (err) {
|
|
|
|
return isRenderTimeoutError(err) || isDatasourceTimeoutError(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
function isRasterFormat (format) {
|
|
|
|
return format === 'png' || format === 'jpg';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isTimeoutError(err) && isRasterFormat(format)) {
|
|
|
|
return callback(null, timeoutErrorTile, {
|
|
|
|
'Content-Type': 'image/png',
|
|
|
|
}, {});
|
|
|
|
} else {
|
|
|
|
return callback(err, tile, headers, stats);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const rendererFactory = new windshaft.renderer.Factory({
|
|
|
|
onTileErrorStrategy: onTileErrorStrategy,
|
|
|
|
mapnik: {
|
|
|
|
redisPool: redisPool,
|
|
|
|
grainstore: serverOptions.grainstore,
|
|
|
|
mapnik: serverOptions.renderer.mapnik
|
|
|
|
},
|
|
|
|
http: serverOptions.renderer.http,
|
2018-05-25 19:37:34 +08:00
|
|
|
mvt: serverOptions.renderer.mvt,
|
|
|
|
torque: serverOptions.renderer.torque
|
2018-04-03 01:02:31 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
return rendererFactory;
|
|
|
|
}
|