Merge branch 'master' into fix-image-format-png

This commit is contained in:
Simon Martín 2018-05-16 14:40:59 +02:00
commit 04e00bb834
16 changed files with 484 additions and 441 deletions

View File

@ -191,7 +191,7 @@ module.exports = class ApiRouter {
Object.keys(this.serverOptions.routes).forEach(apiVersion => { Object.keys(this.serverOptions.routes).forEach(apiVersion => {
const routes = this.serverOptions.routes[apiVersion]; const routes = this.serverOptions.routes[apiVersion];
const apiRouter = router(); const apiRouter = router({ mergeParams: true });
apiRouter.use(logger(this.serverOptions)); apiRouter.use(logger(this.serverOptions));
apiRouter.use(initializeStatusCode()); apiRouter.use(initializeStatusCode());

View File

@ -8,17 +8,19 @@ const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
const cacheControlHeader = require('../middlewares/cache-control-header'); const cacheControlHeader = require('../middlewares/cache-control-header');
const dbParamsFromResLocals = require('../../utils/database-params'); const dbParamsFromResLocals = require('../../utils/database-params');
function AnalysesController(pgConnection, authBackend, userLimitsBackend) { module.exports = class AnalysesController {
constructor (pgConnection, authBackend, userLimitsBackend) {
this.pgConnection = pgConnection; this.pgConnection = pgConnection;
this.authBackend = authBackend; this.authBackend = authBackend;
this.userLimitsBackend = userLimitsBackend; this.userLimitsBackend = userLimitsBackend;
} }
module.exports = AnalysesController; register (mapRouter) {
mapRouter.get('/analyses/catalog', this.middlewares());
}
AnalysesController.prototype.register = function (mapRouter) { middlewares () {
mapRouter.get( return [
`/analyses/catalog`,
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
dbConnSetup(this.pgConnection), dbConnSetup(this.pgConnection),
@ -30,7 +32,8 @@ AnalysesController.prototype.register = function (mapRouter) {
prepareResponse(), prepareResponse(),
cacheControlHeader({ ttl: 10, revalidate: true }), cacheControlHeader({ ttl: 10, revalidate: true }),
unauthorizedError() unauthorizedError()
); ];
}
}; };
function createPGClient () { function createPGClient () {

View File

@ -16,8 +16,11 @@ module.exports = class AnalysisLayergroupController {
} }
register (mapRouter) { register (mapRouter) {
mapRouter.get( mapRouter.get('/:token/analysis/node/:nodeId', this.middlewares());
`/:token/analysis/node/:nodeId`, }
middlewares () {
return [
layergroupToken(), layergroupToken(),
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
@ -25,8 +28,7 @@ module.exports = class AnalysisLayergroupController {
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.ANALYSIS), rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.ANALYSIS),
cleanUpQueryParams(), cleanUpQueryParams(),
analysisNodeStatus(this.analysisStatusBackend) analysisNodeStatus(this.analysisStatusBackend)
); ];
} }
}; };

View File

@ -22,7 +22,8 @@ const CreateLayergroupMapConfigProvider = require('../../models/mapconfig/provid
const rateLimit = require('../middlewares/rate-limit'); const rateLimit = require('../middlewares/rate-limit');
const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit; const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
/** module.exports = class AnonymousMapController {
/**
* @param {AuthBackend} authBackend * @param {AuthBackend} authBackend
* @param {PgConnection} pgConnection * @param {PgConnection} pgConnection
* @param {TemplateMaps} templateMaps * @param {TemplateMaps} templateMaps
@ -35,7 +36,7 @@ const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
* @param {StatsBackend} statsBackend * @param {StatsBackend} statsBackend
* @constructor * @constructor
*/ */
function AnonymousMapController ( constructor (
pgConnection, pgConnection,
templateMaps, templateMaps,
mapBackend, mapBackend,
@ -47,7 +48,7 @@ function AnonymousMapController (
statsBackend, statsBackend,
authBackend, authBackend,
layergroupMetadata layergroupMetadata
) { ) {
this.pgConnection = pgConnection; this.pgConnection = pgConnection;
this.templateMaps = templateMaps; this.templateMaps = templateMaps;
this.mapBackend = mapBackend; this.mapBackend = mapBackend;
@ -59,17 +60,15 @@ function AnonymousMapController (
this.statsBackend = statsBackend; this.statsBackend = statsBackend;
this.authBackend = authBackend; this.authBackend = authBackend;
this.layergroupMetadata = layergroupMetadata; this.layergroupMetadata = layergroupMetadata;
} }
module.exports = AnonymousMapController; register (mapRouter) {
AnonymousMapController.prototype.register = function (mapRouter) {
mapRouter.options('/'); mapRouter.options('/');
mapRouter.get('/', this.composeCreateMapMiddleware()); mapRouter.get('/', this.middlewares());
mapRouter.post('/', this.composeCreateMapMiddleware()); mapRouter.post('/', this.middlewares());
}; }
AnonymousMapController.prototype.composeCreateMapMiddleware = function () { middlewares () {
const isTemplateInstantiation = false; const isTemplateInstantiation = false;
const useTemplateHash = false; const useTemplateHash = false;
const includeQuery = true; const includeQuery = true;
@ -104,6 +103,7 @@ AnonymousMapController.prototype.composeCreateMapMiddleware = function () {
layergroupMetadata(this.layergroupMetadata, includeQuery), layergroupMetadata(this.layergroupMetadata, includeQuery),
mapError({ label, addContext }) mapError({ label, addContext })
]; ];
}
}; };
function checkCreateLayergroup () { function checkCreateLayergroup () {

View File

@ -31,8 +31,11 @@ module.exports = class AttributesLayergroupController {
} }
register (mapRouter) { register (mapRouter) {
mapRouter.get( mapRouter.get('/:token/:layer/attributes/:fid', this.middlewares());
`/:token/:layer/attributes/:fid`, }
middlewares () {
return [
layergroupToken(), layergroupToken(),
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
@ -50,7 +53,7 @@ module.exports = class AttributesLayergroupController {
cacheChannelHeader(), cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }), surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader() lastModifiedHeader()
); ];
} }
}; };

View File

@ -49,76 +49,34 @@ module.exports = class DataviewLayergroupController {
// Undocumented/non-supported API endpoint methods. // Undocumented/non-supported API endpoint methods.
// Use at your own peril. // Use at your own peril.
mapRouter.get( mapRouter.get('/:token/dataview/:dataviewName', this.middlewares({
`/:token/dataview/:dataviewName`, action: 'get',
layergroupToken(), rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW
credentials(), }));
authorize(this.authBackend),
dbConnSetup(this.pgConnection),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW),
cleanUpQueryParams(ALLOWED_DATAVIEW_QUERY_PARAMS),
createMapStoreMapConfigProvider(
this.mapStore,
this.userLimitsBackend,
this.pgConnection,
this.layergroupAffectedTablesCache
),
getDataview(this.dataviewBackend),
cacheControlHeader(),
cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader()
);
mapRouter.get( mapRouter.get('/:token/:layer/widget/:dataviewName', this.middlewares({
`/:token/:layer/widget/:dataviewName`, action: 'get',
layergroupToken(), rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW
credentials(), }));
authorize(this.authBackend),
dbConnSetup(this.pgConnection),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW),
cleanUpQueryParams(ALLOWED_DATAVIEW_QUERY_PARAMS),
createMapStoreMapConfigProvider(
this.mapStore,
this.userLimitsBackend,
this.pgConnection,
this.layergroupAffectedTablesCache
),
getDataview(this.dataviewBackend),
cacheControlHeader(),
cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader()
);
mapRouter.get( mapRouter.get('/:token/dataview/:dataviewName/search', this.middlewares({
`/:token/dataview/:dataviewName/search`, action: 'search',
layergroupToken(), rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW_SEARCH
credentials(), }));
authorize(this.authBackend),
dbConnSetup(this.pgConnection),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW_SEARCH),
cleanUpQueryParams(ALLOWED_DATAVIEW_QUERY_PARAMS),
createMapStoreMapConfigProvider(
this.mapStore,
this.userLimitsBackend,
this.pgConnection,
this.layergroupAffectedTablesCache
),
dataviewSearch(this.dataviewBackend),
cacheControlHeader(),
cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader()
);
mapRouter.get( mapRouter.get('/:token/:layer/widget/:dataviewName/search', this.middlewares({
`/:token/:layer/widget/:dataviewName/search`, action: 'search',
rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW_SEARCH
}));
}
middlewares ({ action, rateLimitGroup }) {
return [
layergroupToken(), layergroupToken(),
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
dbConnSetup(this.pgConnection), dbConnSetup(this.pgConnection),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.DATAVIEW_SEARCH), rateLimit(this.userLimitsBackend, rateLimitGroup),
cleanUpQueryParams(ALLOWED_DATAVIEW_QUERY_PARAMS), cleanUpQueryParams(ALLOWED_DATAVIEW_QUERY_PARAMS),
createMapStoreMapConfigProvider( createMapStoreMapConfigProvider(
this.mapStore, this.mapStore,
@ -126,12 +84,12 @@ module.exports = class DataviewLayergroupController {
this.pgConnection, this.pgConnection,
this.layergroupAffectedTablesCache this.layergroupAffectedTablesCache
), ),
dataviewSearch(this.dataviewBackend), action === 'search' ? dataviewSearch(this.dataviewBackend) : getDataview(this.dataviewBackend),
cacheControlHeader(), cacheControlHeader(),
cacheChannelHeader(), cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }), surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader() lastModifiedHeader()
); ];
} }
}; };

View File

@ -113,7 +113,7 @@ module.exports = class MapRouter {
} }
register (apiRouter, mapPaths) { register (apiRouter, mapPaths) {
const mapRouter = router(); const mapRouter = router({ mergeParams: true });
this.analysisLayergroupController.register(mapRouter); this.analysisLayergroupController.register(mapRouter);
this.attributesLayergroupController.register(mapRouter); this.attributesLayergroupController.register(mapRouter);

View File

@ -2,6 +2,7 @@ const layergroupToken = require('../middlewares/layergroup-token');
const coordinates = require('../middlewares/coordinates'); const coordinates = require('../middlewares/coordinates');
const cleanUpQueryParams = require('../middlewares/clean-up-query-params'); const cleanUpQueryParams = require('../middlewares/clean-up-query-params');
const credentials = require('../middlewares/credentials'); const credentials = require('../middlewares/credentials');
const noop = require('../middlewares/noop');
const dbConnSetup = require('../middlewares/db-conn-setup'); const dbConnSetup = require('../middlewares/db-conn-setup');
const authorize = require('../middlewares/authorize'); const authorize = require('../middlewares/authorize');
const rateLimit = require('../middlewares/rate-limit'); const rateLimit = require('../middlewares/rate-limit');
@ -33,35 +34,33 @@ module.exports = class PreviewLayergroupController {
} }
register (mapRouter) { register (mapRouter) {
mapRouter.get('/static/center/:token/:z/:lat/:lng/:width/:height.:format', this.middlewares({
validateZoom: true,
previewType: 'centered'
}));
mapRouter.get('/static/bbox/:token/:west,:south,:east,:north/:width/:height.:format', this.middlewares({
validateZoom: false,
previewType: 'bbox'
}));
}
middlewares ({ validateZoom, previewType }) {
const forcedFormat = 'png'; const forcedFormat = 'png';
mapRouter.get( let getPreviewImage;
`/static/center/:token/:z/:lat/:lng/:width/:height.:format`,
layergroupToken(),
coordinates({ z: true, x: false, y: false }),
credentials(),
authorize(this.authBackend),
dbConnSetup(this.pgConnection),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.STATIC),
cleanUpQueryParams(['layer']),
checkStaticImageFormat(),
createMapStoreMapConfigProvider(
this.mapStore,
this.userLimitsBackend,
this.pgConnection,
this.layergroupAffectedTablesCache,
forcedFormat
),
getPreviewImageByCenter(this.previewBackend),
cacheControlHeader(),
cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader()
);
mapRouter.get( if (previewType === 'centered') {
`/static/bbox/:token/:west,:south,:east,:north/:width/:height.:format`, getPreviewImage = getPreviewImageByCenter;
}
if (previewType === 'bbox') {
getPreviewImage = getPreviewImageByBoundingBox;
}
return [
layergroupToken(), layergroupToken(),
validateZoom ? coordinates({ z: true, x: false, y: false }) : noop(),
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
dbConnSetup(this.pgConnection), dbConnSetup(this.pgConnection),
@ -75,12 +74,12 @@ module.exports = class PreviewLayergroupController {
this.layergroupAffectedTablesCache, this.layergroupAffectedTablesCache,
forcedFormat forcedFormat
), ),
getPreviewImageByBoundingBox(this.previewBackend), getPreviewImage(this.previewBackend),
cacheControlHeader(), cacheControlHeader(),
cacheChannelHeader(), cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }), surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader() lastModifiedHeader()
); ];
} }
}; };

View File

@ -23,7 +23,8 @@ function numMapper(n) {
return +n; return +n;
} }
function PreviewTemplateController ( module.exports = class PreviewTemplateController {
constructor (
namedMapProviderCache, namedMapProviderCache,
previewBackend, previewBackend,
surrogateKeysCache, surrogateKeysCache,
@ -32,7 +33,7 @@ function PreviewTemplateController (
pgConnection, pgConnection,
authBackend, authBackend,
userLimitsBackend userLimitsBackend
) { ) {
this.namedMapProviderCache = namedMapProviderCache; this.namedMapProviderCache = namedMapProviderCache;
this.previewBackend = previewBackend; this.previewBackend = previewBackend;
this.surrogateKeysCache = surrogateKeysCache; this.surrogateKeysCache = surrogateKeysCache;
@ -41,13 +42,14 @@ function PreviewTemplateController (
this.pgConnection = pgConnection; this.pgConnection = pgConnection;
this.authBackend = authBackend; this.authBackend = authBackend;
this.userLimitsBackend = userLimitsBackend; this.userLimitsBackend = userLimitsBackend;
} }
module.exports = PreviewTemplateController; register (mapRouter) {
mapRouter.get('/static/named/:template_id/:width/:height.:format', this.middlewares());
}
PreviewTemplateController.prototype.register = function (mapRouter) { middlewares () {
mapRouter.get( return [
`/static/named/:template_id/:width/:height.:format`,
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
dbConnSetup(this.pgConnection), dbConnSetup(this.pgConnection),
@ -71,7 +73,8 @@ PreviewTemplateController.prototype.register = function (mapRouter) {
cacheChannelHeader(), cacheChannelHeader(),
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }), surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader() lastModifiedHeader()
); ];
}
}; };
function getTemplate ({ label }) { function getTemplate ({ label }) {

View File

@ -42,14 +42,21 @@ module.exports = class TileLayergroupController {
} }
register (mapRouter) { register (mapRouter) {
// REGEXP doesn't match with `val` // REGEXP: doesn't match with `val`
const not = (val) => `(?!${val})([^\/]+?)`; const not = (val) => `(?!${val})([^\/]+?)`;
// Sadly the path that matches 1 also matches with 2 so we need to tell to express
// that performs only the middlewares of the first path that matches
// for that we use one array to group all paths.
mapRouter.get([ mapRouter.get([
`/:token/:z/:x/:y@:scale_factor?x.:format`, `/:token/:z/:x/:y@:scale_factor?x.:format`, // 1
`/:token/:z/:x/:y.:format`, `/:token/:z/:x/:y.:format`, // 2
`/:token${not('static')}/:layer/:z/:x/:y.(:format)` `/:token${not('static')}/:layer/:z/:x/:y.(:format)`
], ], this.middlewares());
}
middlewares () {
return [
layergroupToken(), layergroupToken(),
coordinates(), coordinates(),
credentials(), credentials(),
@ -72,7 +79,7 @@ module.exports = class TileLayergroupController {
incrementErrorMetrics(global.statsClient), incrementErrorMetrics(global.statsClient),
tileError(), tileError(),
vectorError() vectorError()
); ];
} }
}; };

View File

@ -0,0 +1,5 @@
module.exports = function noop () {
return function noopMiddleware (req, res, next) {
next();
};
};

View File

@ -3,70 +3,90 @@ const credentials = require('../middlewares/credentials');
const rateLimit = require('../middlewares/rate-limit'); const rateLimit = require('../middlewares/rate-limit');
const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit; const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
/** module.exports = class AdminTemplateController {
/**
* @param {AuthBackend} authBackend * @param {AuthBackend} authBackend
* @param {PgConnection} pgConnection * @param {PgConnection} pgConnection
* @param {TemplateMaps} templateMaps * @param {TemplateMaps} templateMaps
* @constructor * @constructor
*/ */
function AdminTemplateController(authBackend, templateMaps, userLimitsBackend) { constructor (authBackend, templateMaps, userLimitsBackend) {
this.authBackend = authBackend; this.authBackend = authBackend;
this.templateMaps = templateMaps; this.templateMaps = templateMaps;
this.userLimitsBackend = userLimitsBackend; this.userLimitsBackend = userLimitsBackend;
} }
module.exports = AdminTemplateController; register (templateRouter) {
AdminTemplateController.prototype.register = function (templateRouter) {
templateRouter.options(`/:template_id`); templateRouter.options(`/:template_id`);
templateRouter.post( templateRouter.post('/', this.middlewares({
`/`, action: 'create',
label: 'POST TEMPLATE',
rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_CREATE
}));
templateRouter.put('/:template_id', this.middlewares({
action: 'update',
label: 'PUT TEMPLATE',
rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_UPDATE
}));
templateRouter.get('/:template_id', this.middlewares({
action: 'get',
label: 'GET TEMPLATE',
rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_GET
}));
templateRouter.delete('/:template_id', this.middlewares({
action: 'delete',
label: 'DELETE TEMPLATE',
rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_DELETE
}));
templateRouter.get('/', this.middlewares({
action: 'list',
label: 'GET TEMPLATE LIST',
rateLimitGroup: RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_LIST
}));
}
middlewares ({ action, label, rateLimitGroup }) {
let template;
if (action === 'create') {
template = createTemplate;
}
if (action === 'update') {
template = updateTemplate;
}
if (action === 'get') {
template = retrieveTemplate;
}
if (action === 'delete') {
template = destroyTemplate;
}
if (action === 'list') {
template = listTemplates;
}
return [
credentials(), credentials(),
authorizedByAPIKey({ authBackend: this.authBackend, action: 'create', label: 'POST TEMPLATE' }), authorizedByAPIKey({ authBackend: this.authBackend, action, label }),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_CREATE), rateLimit(this.userLimitsBackend, rateLimitGroup),
checkContentType({ action: 'POST', label: 'POST TEMPLATE' }), checkContentType({ action: 'POST', label: 'POST TEMPLATE' }),
createTemplate({ templateMaps: this.templateMaps }) template({ templateMaps: this.templateMaps })
); ];
}
templateRouter.put(
`/:template_id`,
credentials(),
authorizedByAPIKey({ authBackend: this.authBackend, action: 'update', label: 'PUT TEMPLATE' }),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_UPDATE),
checkContentType({ action: 'PUT', label: 'PUT TEMPLATE' }),
updateTemplate({ templateMaps: this.templateMaps })
);
templateRouter.get(
`/:template_id`,
credentials(),
authorizedByAPIKey({ authBackend: this.authBackend, action: 'get', label: 'GET TEMPLATE' }),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_GET),
retrieveTemplate({ templateMaps: this.templateMaps })
);
templateRouter.delete(
`/:template_id`,
credentials(),
authorizedByAPIKey({ authBackend: this.authBackend, action: 'delete', label: 'DELETE TEMPLATE' }),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_DELETE),
destroyTemplate({ templateMaps: this.templateMaps })
);
templateRouter.get(
`/`,
credentials(),
authorizedByAPIKey({ authBackend: this.authBackend, action: 'list', label: 'GET TEMPLATE LIST' }),
rateLimit(this.userLimitsBackend, RATE_LIMIT_ENDPOINTS_GROUPS.NAMED_LIST),
listTemplates({ templateMaps: this.templateMaps })
);
}; };
function checkContentType ({ action, label }) { function checkContentType ({ label }) {
return function checkContentTypeMiddleware (req, res, next) { return function checkContentTypeMiddleware (req, res, next) {
if (!req.is('application/json')) { if ((req.method === 'POST' || req.method === 'PUT') && !req.is('application/json')) {
const error = new Error(`template ${action} data must be of type application/json`); const error = new Error(`${req.method} template data must be of type application/json`);
error.label = label; error.label = label;
return next(error); return next(error);
} }

View File

@ -20,8 +20,8 @@ const CreateLayergroupMapConfigProvider = require('../../models/mapconfig/provid
const rateLimit = require('../middlewares/rate-limit'); const rateLimit = require('../middlewares/rate-limit');
const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit; const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
/** module.exports = class NamedMapController {
* @param {AuthBackend} authBackend /**
* @param {PgConnection} pgConnection * @param {PgConnection} pgConnection
* @param {TemplateMaps} templateMaps * @param {TemplateMaps} templateMaps
* @param {MapBackend} mapBackend * @param {MapBackend} mapBackend
@ -31,9 +31,11 @@ const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
* @param {LayergroupAffectedTables} layergroupAffectedTables * @param {LayergroupAffectedTables} layergroupAffectedTables
* @param {MapConfigAdapter} mapConfigAdapter * @param {MapConfigAdapter} mapConfigAdapter
* @param {StatsBackend} statsBackend * @param {StatsBackend} statsBackend
* @param {AuthBackend} authBackend
* @param layergroupMetadata
* @constructor * @constructor
*/ */
function NamedMapController ( constructor (
pgConnection, pgConnection,
templateMaps, templateMaps,
mapBackend, mapBackend,
@ -45,7 +47,7 @@ function NamedMapController (
statsBackend, statsBackend,
authBackend, authBackend,
layergroupMetadata layergroupMetadata
) { ) {
this.pgConnection = pgConnection; this.pgConnection = pgConnection;
this.templateMaps = templateMaps; this.templateMaps = templateMaps;
this.mapBackend = mapBackend; this.mapBackend = mapBackend;
@ -57,23 +59,14 @@ function NamedMapController (
this.statsBackend = statsBackend; this.statsBackend = statsBackend;
this.authBackend = authBackend; this.authBackend = authBackend;
this.layergroupMetadata = layergroupMetadata; this.layergroupMetadata = layergroupMetadata;
} }
module.exports = NamedMapController; register (templateRouter) {
templateRouter.get('/:template_id/jsonp', this.middlewares());
templateRouter.post('/:template_id', this.middlewares());
}
NamedMapController.prototype.register = function (templateRouter) { middlewares () {
templateRouter.get(
`/:template_id/jsonp`,
this.composeInstantiateTemplateMiddleware()
);
templateRouter.post(
`/:template_id`,
this.composeInstantiateTemplateMiddleware()
);
};
NamedMapController.prototype.composeInstantiateTemplateMiddleware = function () {
const isTemplateInstantiation = true; const isTemplateInstantiation = true;
const useTemplateHash = true; const useTemplateHash = true;
const includeQuery = false; const includeQuery = false;
@ -115,6 +108,7 @@ NamedMapController.prototype.composeInstantiateTemplateMiddleware = function ()
layergroupMetadata(this.layergroupMetadata, includeQuery), layergroupMetadata(this.layergroupMetadata, includeQuery),
mapError({ label, addContext }) mapError({ label, addContext })
]; ];
}
}; };
function checkInstantiteLayergroup () { function checkInstantiteLayergroup () {

View File

@ -53,7 +53,7 @@ module.exports = class TemplateRouter {
} }
register (apiRouter, templatePaths) { register (apiRouter, templatePaths) {
const templateRouter = router(); const templateRouter = router({ mergeParams: true });
this.namedMapController.register(templateRouter); this.namedMapController.register(templateRouter);
this.tileTemplateController.register(templateRouter); this.tileTemplateController.register(templateRouter);

View File

@ -12,27 +12,29 @@ const vectorError = require('../middlewares/vector-error');
const rateLimit = require('../middlewares/rate-limit'); const rateLimit = require('../middlewares/rate-limit');
const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit; const { RATE_LIMIT_ENDPOINTS_GROUPS } = rateLimit;
function TileTemplateController ( module.exports = class TileTemplateController {
constructor (
namedMapProviderCache, namedMapProviderCache,
tileBackend, tileBackend,
surrogateKeysCache, surrogateKeysCache,
pgConnection, pgConnection,
authBackend, authBackend,
userLimitsBackend userLimitsBackend
) { ) {
this.namedMapProviderCache = namedMapProviderCache; this.namedMapProviderCache = namedMapProviderCache;
this.tileBackend = tileBackend; this.tileBackend = tileBackend;
this.surrogateKeysCache = surrogateKeysCache; this.surrogateKeysCache = surrogateKeysCache;
this.pgConnection = pgConnection; this.pgConnection = pgConnection;
this.authBackend = authBackend; this.authBackend = authBackend;
this.userLimitsBackend = userLimitsBackend; this.userLimitsBackend = userLimitsBackend;
} }
module.exports = TileTemplateController; register (templateRouter) {
templateRouter.get('/:template_id/:layer/:z/:x/:y.(:format)', this.middlewares());
}
TileTemplateController.prototype.register = function (templateRouter) { middlewares () {
templateRouter.get( return [
`/:template_id/:layer/:z/:x/:y.(:format)`,
coordinates(), coordinates(),
credentials(), credentials(),
authorize(this.authBackend), authorize(this.authBackend),
@ -53,7 +55,8 @@ TileTemplateController.prototype.register = function (templateRouter) {
surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }), surrogateKeyHeader({ surrogateKeysCache: this.surrogateKeysCache }),
lastModifiedHeader(), lastModifiedHeader(),
vectorError() vectorError()
); ];
}
}; };
function getTile ({ tileBackend, label }) { function getTile ({ tileBackend, label }) {

View File

@ -1,7 +1,10 @@
require('../support/test_helper'); require('../support/test_helper');
var assert = require('../support/assert'); var assert = require('../support/assert');
const helper = require('../support/test_helper');
var TestClient = require('../support/test-client'); var TestClient = require('../support/test-client');
const LayergroupToken = require('../../lib/cartodb/models/layergroup-token'); const LayergroupToken = require('../../lib/cartodb/models/layergroup-token');
const CartodbWindshaft = require(__dirname + '/../../lib/cartodb/server');
const serverOptions = require(__dirname + '/../../lib/cartodb/server_options');
describe('regressions', function() { describe('regressions', function() {
@ -38,6 +41,49 @@ describe('regressions', function() {
}); });
}); });
// See: https://github.com/CartoDB/Windshaft-cartodb/pull/956
it('"/user/localhost/api/v1/map" should create an anonymous map', function (done) {
const server = new CartodbWindshaft(serverOptions);
const layergroup = {
version: '1.7.0',
layers: [
{
type: 'mapnik',
options: {
sql: TestClient.SQL.ONE_POINT,
cartocss: TestClient.CARTOCSS.POINTS,
cartocss_version: '2.3.0'
}
}
]
};
const keysToDelete = {};
assert.response(server,
{
url: '/user/localhost/api/v1/map',
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
data: JSON.stringify(layergroup)
},
function(res, err) {
if (err) {
return done(err);
}
const body = JSON.parse(res.body);
assert.ok(body.layergroupid);
keysToDelete['map_cfg|' + LayergroupToken.parse(body.layergroupid).token] = 0;
keysToDelete['user:localhost:mapviews:global'] = 5;
helper.deleteRedisKeys(keysToDelete, done);
}
);
});
describe('map instantiation', function () { describe('map instantiation', function () {
const apikeyToken = 'regular1'; const apikeyToken = 'regular1';
const mapConfig = { const mapConfig = {