2015-01-30 22:30:13 +08:00
|
|
|
var _ = require('underscore');
|
|
|
|
var Step = require('step');
|
|
|
|
var Windshaft = require('windshaft');
|
|
|
|
var Cache = require('./cache_validator');
|
|
|
|
var os = require('os');
|
|
|
|
var HealthCheck = require('./monitoring/health_check');
|
2011-10-13 19:17:00 +08:00
|
|
|
|
2014-05-07 22:19:22 +08:00
|
|
|
if ( ! process.env['PGAPPNAME'] )
|
|
|
|
process.env['PGAPPNAME']='cartodb_tiler';
|
|
|
|
|
2011-10-13 19:17:00 +08:00
|
|
|
var CartodbWindshaft = function(serverOptions) {
|
2014-02-19 22:27:20 +08:00
|
|
|
// Perform keyword substitution in statsd
|
|
|
|
// See https://github.com/CartoDB/Windshaft-cartodb/issues/153
|
|
|
|
if ( global.environment.statsd ) {
|
|
|
|
if ( global.environment.statsd.prefix ) {
|
2014-02-22 00:25:10 +08:00
|
|
|
var host_token = os.hostname().split('.').reverse().join('.');
|
|
|
|
global.environment.statsd.prefix = global.environment.statsd.prefix.replace(/:host/, host_token);
|
2014-02-19 22:27:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-24 17:42:36 +08:00
|
|
|
var redisPool = serverOptions.redis.pool
|
|
|
|
|| require('redis-mpool')(_.extend(global.environment.redis, {name: 'windshaft:cartodb'}));
|
|
|
|
|
|
|
|
var cartoData = require('cartodb-redis')({pool: redisPool});
|
|
|
|
|
2015-01-30 23:51:09 +08:00
|
|
|
var templateMaps = serverOptions.templateMaps;
|
|
|
|
|
2015-01-24 00:46:16 +08:00
|
|
|
if(serverOptions.cache_enabled) {
|
|
|
|
console.log("cache invalidation enabled, varnish on ", serverOptions.varnish_host, ' ', serverOptions.varnish_port);
|
|
|
|
Cache.init(serverOptions.varnish_host, serverOptions.varnish_port, serverOptions.varnish_secret);
|
|
|
|
serverOptions.afterStateChange = function(req, data, callback) {
|
|
|
|
Cache.invalidate_db(req.params.dbname, req.params.table);
|
|
|
|
callback(null, data);
|
2015-01-24 00:46:58 +08:00
|
|
|
}
|
2015-01-24 00:46:16 +08:00
|
|
|
}
|
|
|
|
|
2012-08-14 22:15:41 +08:00
|
|
|
serverOptions.beforeStateChange = function(req, callback) {
|
|
|
|
var err = null;
|
2014-02-08 01:00:13 +08:00
|
|
|
if ( ! req.params.hasOwnProperty('_authorizedByApiKey') ) {
|
2012-08-14 22:15:41 +08:00
|
|
|
err = new Error("map state cannot be changed by unauthenticated request!");
|
|
|
|
}
|
|
|
|
callback(err, req);
|
2014-09-24 17:42:53 +08:00
|
|
|
};
|
2012-08-14 22:15:41 +08:00
|
|
|
|
2014-03-04 17:46:15 +08:00
|
|
|
// This is for Templated maps
|
|
|
|
//
|
|
|
|
// "named" is the official, "template" is for backward compatibility up to 1.6.x
|
|
|
|
//
|
|
|
|
var template_baseurl = global.environment.base_url_templated || '(?:/maps/named|/tiles/template)';
|
|
|
|
|
2015-01-23 23:37:38 +08:00
|
|
|
var SurrogateKeysCache = require('./cache/surrogate_keys_cache'),
|
|
|
|
NamedMapsCacheEntry = require('./cache/model/named_maps_entry'),
|
|
|
|
VarnishHttpCacheBackend = require('./cache/backend/varnish_http'),
|
|
|
|
varnishHttpCacheBackend = new VarnishHttpCacheBackend(serverOptions.varnish_host, serverOptions.varnish_http_port),
|
|
|
|
surrogateKeysCache = new SurrogateKeysCache(varnishHttpCacheBackend);
|
|
|
|
|
2015-01-24 00:46:16 +08:00
|
|
|
if (serverOptions.varnish_purge_enabled) {
|
2015-01-23 23:37:38 +08:00
|
|
|
function invalidateNamedMap(owner, templateName) {
|
|
|
|
surrogateKeysCache.invalidate(new NamedMapsCacheEntry(owner, templateName), function(err) {
|
|
|
|
if (err) {
|
|
|
|
console.warn('Cache: surrogate key invalidation failed');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
['update', 'delete'].forEach(function(eventType) {
|
|
|
|
templateMaps.on(eventType, invalidateNamedMap);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-10-13 22:20:29 +08:00
|
|
|
// boot
|
|
|
|
var ws = new Windshaft.Server(serverOptions);
|
2011-11-30 04:19:10 +08:00
|
|
|
|
2012-10-08 23:26:12 +08:00
|
|
|
// Override getVersion to include cartodb-specific versions
|
|
|
|
var wsversion = ws.getVersion;
|
|
|
|
ws.getVersion = function() {
|
|
|
|
var version = wsversion();
|
|
|
|
version.windshaft_cartodb = require('../../package.json').version;
|
|
|
|
return version;
|
2014-09-24 17:42:53 +08:00
|
|
|
};
|
2012-10-08 23:26:12 +08:00
|
|
|
|
2014-02-19 17:08:25 +08:00
|
|
|
var ws_sendResponse = ws.sendResponse;
|
2014-03-04 21:26:41 +08:00
|
|
|
// GET routes for which we don't want to request any caching.
|
|
|
|
// POST/PUT/DELETE requests are never cached anyway.
|
|
|
|
var noCacheGETRoutes = [
|
|
|
|
'/',
|
|
|
|
// See https://github.com/CartoDB/Windshaft-cartodb/issues/176
|
2014-03-04 17:46:15 +08:00
|
|
|
serverOptions.base_url_mapconfig,
|
|
|
|
template_baseurl + '/:template_id/jsonp'
|
|
|
|
];
|
2014-02-19 17:08:25 +08:00
|
|
|
ws.sendResponse = function(res, args) {
|
|
|
|
var that = this;
|
|
|
|
var thatArgs = arguments;
|
|
|
|
var statusCode;
|
2014-03-21 20:58:20 +08:00
|
|
|
if ( res._windshaftStatusCode ) {
|
|
|
|
// Added by our override of sendError
|
|
|
|
statusCode = res._windshaftStatusCode;
|
|
|
|
} else {
|
|
|
|
if ( args.length > 2 ) statusCode = args[2];
|
|
|
|
else {
|
|
|
|
statusCode = args[1] || 200;
|
|
|
|
}
|
2014-02-19 17:08:25 +08:00
|
|
|
}
|
|
|
|
var req = res.req;
|
|
|
|
Step (
|
|
|
|
function addCacheChannel() {
|
|
|
|
if ( ! req ) {
|
|
|
|
// having no associated request can happen when
|
|
|
|
// using fake response objects for testing layergroup
|
|
|
|
// creation
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-25 00:34:00 +08:00
|
|
|
if ( ! req.params ) {
|
|
|
|
// service requests (/version, /)
|
|
|
|
// have no need for an X-Cache-Channel
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-19 17:08:25 +08:00
|
|
|
if ( statusCode != 200 ) {
|
|
|
|
// We do not want to cache
|
|
|
|
// unsuccessful responses
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-04 21:26:41 +08:00
|
|
|
if ( _.contains(noCacheGETRoutes, req.route.path) ) {
|
2014-03-04 17:46:15 +08:00
|
|
|
//console.log("Skipping cache channel in route:\n" + req.route.path);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
//console.log("Adding cache channel to route\n" + req.route.path + " not matching any in:\n" + mapCreateRoutes.join("\n"));
|
2014-02-19 17:08:25 +08:00
|
|
|
serverOptions.addCacheChannel(that, req, this);
|
|
|
|
},
|
|
|
|
function sendResponse(err, added) {
|
2014-03-04 17:46:15 +08:00
|
|
|
if ( err ) console.log(err + err.stack);
|
2014-02-19 17:08:25 +08:00
|
|
|
ws_sendResponse.apply(that, thatArgs);
|
2014-03-05 01:04:58 +08:00
|
|
|
return null;
|
|
|
|
},
|
|
|
|
function finish(err) {
|
|
|
|
if ( err ) console.log(err + err.stack);
|
2014-02-19 17:08:25 +08:00
|
|
|
}
|
|
|
|
);
|
2014-01-13 18:20:02 +08:00
|
|
|
};
|
|
|
|
|
2014-03-21 20:58:20 +08:00
|
|
|
var ws_sendError = ws.sendError;
|
|
|
|
ws.sendError = function() {
|
|
|
|
var res = arguments[0];
|
|
|
|
var statusCode = arguments[2];
|
|
|
|
res._windshaftStatusCode = statusCode;
|
|
|
|
ws_sendError.apply(this, arguments);
|
|
|
|
};
|
|
|
|
|
2015-01-21 01:16:09 +08:00
|
|
|
/*******************************************************************************************************************
|
|
|
|
* Routing
|
|
|
|
******************************************************************************************************************/
|
|
|
|
|
|
|
|
var TemplateMapsController = require('./controllers/template_maps'),
|
|
|
|
templateMapsController = new TemplateMapsController(
|
2015-01-30 23:51:09 +08:00
|
|
|
ws, serverOptions, templateMaps, cartoData, template_baseurl, surrogateKeysCache, NamedMapsCacheEntry
|
2015-01-21 01:16:09 +08:00
|
|
|
);
|
|
|
|
templateMapsController.register(ws);
|
|
|
|
|
|
|
|
/*******************************************************************************************************************
|
|
|
|
* END Routing
|
|
|
|
******************************************************************************************************************/
|
|
|
|
|
2011-10-13 22:20:29 +08:00
|
|
|
/**
|
|
|
|
* Helper to allow access to the layer to be used in the maps infowindow popup.
|
|
|
|
*/
|
|
|
|
ws.get(serverOptions.base_url + '/infowindow', function(req, res){
|
2012-08-14 20:48:10 +08:00
|
|
|
ws.doCORS(res);
|
2011-10-13 22:20:29 +08:00
|
|
|
Step(
|
|
|
|
function(){
|
|
|
|
serverOptions.getInfowindow(req, this);
|
|
|
|
},
|
|
|
|
function(err, data){
|
|
|
|
if (err){
|
2014-02-10 18:11:35 +08:00
|
|
|
ws.sendError(res, {error: err.message}, 500, 'GET INFOWINDOW', err);
|
2014-02-19 17:08:25 +08:00
|
|
|
//ws.sendResponse(res, [{error: err.message}, 500]);
|
2011-10-13 22:20:29 +08:00
|
|
|
} else {
|
2014-02-19 17:08:25 +08:00
|
|
|
ws.sendResponse(res, [{infowindow: data}, 200]);
|
2011-10-13 22:20:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2011-10-13 19:17:00 +08:00
|
|
|
|
2011-12-01 02:59:28 +08:00
|
|
|
|
2013-12-17 00:17:55 +08:00
|
|
|
/**
|
|
|
|
* Helper to allow access to metadata to be used in embedded maps.
|
|
|
|
*/
|
|
|
|
ws.get(serverOptions.base_url + '/map_metadata', function(req, res){
|
|
|
|
ws.doCORS(res);
|
|
|
|
Step(
|
|
|
|
function(){
|
|
|
|
serverOptions.getMapMetadata(req, this);
|
|
|
|
},
|
|
|
|
function(err, data){
|
|
|
|
if (err){
|
2014-02-10 18:11:35 +08:00
|
|
|
ws.sendError(res, {error: err.message}, 500, 'GET MAP_METADATA', err);
|
2014-02-19 17:08:25 +08:00
|
|
|
//ws.sendResponse(res, [err.message, 500]);
|
2013-12-17 00:17:55 +08:00
|
|
|
} else {
|
2014-02-19 17:08:25 +08:00
|
|
|
ws.sendResponse(res, [{map_metadata: data}, 200]);
|
2013-12-17 00:17:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2012-05-03 02:32:54 +08:00
|
|
|
/**
|
|
|
|
* Helper API to allow per table tile cache (and sql cache) to be invalidated remotely.
|
2015-02-06 00:05:50 +08:00
|
|
|
* Keep endpoint for backwards compatibility
|
2012-05-03 02:32:54 +08:00
|
|
|
*/
|
|
|
|
ws.del(serverOptions.base_url + '/flush_cache', function(req, res){
|
2012-08-14 20:48:10 +08:00
|
|
|
ws.doCORS(res);
|
2015-02-06 00:05:50 +08:00
|
|
|
ws.sendResponse(res, [{status: 'ok'}, 200]);
|
2012-05-03 02:32:54 +08:00
|
|
|
});
|
2013-12-18 00:35:12 +08:00
|
|
|
|
2015-01-13 19:09:02 +08:00
|
|
|
var healthCheck = new HealthCheck(cartoData, Windshaft.tilelive);
|
2014-11-05 22:06:01 +08:00
|
|
|
ws.get('/health', function(req, res) {
|
|
|
|
var healthConfig = global.environment.health || {};
|
|
|
|
|
|
|
|
if (!!healthConfig.enabled) {
|
|
|
|
var startTime = Date.now();
|
|
|
|
healthCheck.check(healthConfig, function(err, result) {
|
|
|
|
var ok = !err;
|
|
|
|
var response = {
|
|
|
|
enabled: true,
|
|
|
|
ok: ok,
|
|
|
|
elapsed: Date.now() - startTime,
|
|
|
|
result: result
|
|
|
|
};
|
|
|
|
if (err) {
|
|
|
|
response.err = err.message;
|
|
|
|
}
|
|
|
|
res.send(response, ok ? 200 : 503);
|
|
|
|
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.send({enabled: false, ok: true}, 200);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-10-13 22:20:29 +08:00
|
|
|
return ws;
|
2014-09-24 17:42:53 +08:00
|
|
|
};
|
2011-10-13 19:17:00 +08:00
|
|
|
|
|
|
|
module.exports = CartodbWindshaft;
|