2011-09-05 07:00:41 +08:00
|
|
|
var _ = require('underscore')
|
|
|
|
, Step = require('step')
|
2012-09-25 00:57:48 +08:00
|
|
|
, cartoData = require('./carto_data')
|
2012-09-24 23:57:39 +08:00
|
|
|
, Cache = require('./cache_validator')
|
|
|
|
, mapnik = require('mapnik')
|
2013-03-13 23:45:15 +08:00
|
|
|
, crypto = require('crypto')
|
|
|
|
, request = require('request')
|
2013-03-23 01:55:59 +08:00
|
|
|
, LZMA = require('lzma/lzma_worker.js').LZMA
|
2012-09-24 23:57:39 +08:00
|
|
|
;
|
2011-09-05 07:00:41 +08:00
|
|
|
|
|
|
|
module.exports = function(){
|
2013-02-25 23:53:57 +08:00
|
|
|
|
|
|
|
var rendererConfig = _.defaults(global.environment.renderer || {}, {
|
|
|
|
cache_ttl: 60000,
|
|
|
|
metatile: 4,
|
|
|
|
bufferSize: 64
|
|
|
|
});
|
|
|
|
|
2011-09-05 07:00:41 +08:00
|
|
|
var me = {
|
|
|
|
base_url: '/tiles/:table',
|
2013-02-13 01:53:16 +08:00
|
|
|
base_url_notable: '/tiles',
|
2012-09-20 00:52:13 +08:00
|
|
|
grainstore: {
|
|
|
|
datasource: global.environment.postgres,
|
2012-09-24 23:57:39 +08:00
|
|
|
cachedir: global.environment.millstone.cache_basedir,
|
|
|
|
mapnik_version: global.environment.mapnik_version || mapnik.versions.mapnik
|
2012-09-20 00:52:13 +08:00
|
|
|
},
|
2013-02-25 23:53:57 +08:00
|
|
|
mapnik: {
|
|
|
|
metatile: rendererConfig.metatile,
|
|
|
|
bufferSize: rendererConfig.bufferSize
|
|
|
|
},
|
|
|
|
renderCache: {
|
|
|
|
ttl: rendererConfig.cache_ttl
|
|
|
|
},
|
2011-09-20 09:27:23 +08:00
|
|
|
redis: global.environment.redis,
|
2011-10-13 21:22:54 +08:00
|
|
|
enable_cors: global.environment.enable_cors,
|
2012-05-02 02:00:14 +08:00
|
|
|
varnish_host: global.environment.varnish.host,
|
|
|
|
varnish_port: global.environment.varnish.port,
|
2012-05-03 02:32:54 +08:00
|
|
|
cache_enabled: global.environment.cache_enabled,
|
2012-07-21 01:02:36 +08:00
|
|
|
log_format: global.environment.log_format
|
2012-05-03 02:32:54 +08:00
|
|
|
};
|
|
|
|
|
2012-10-09 17:45:57 +08:00
|
|
|
// Be nice and warn if configured mapnik version
|
|
|
|
// is != instaled mapnik version
|
|
|
|
if ( mapnik.versions.mapnik != me.grainstore.mapnik_version ) {
|
|
|
|
console.warn("WARNING: detected mapnik version ("
|
|
|
|
+ mapnik.versions.mapnik + ") != configured mapnik version ("
|
|
|
|
+ me.grainstore.mapnik_version + ")");
|
|
|
|
}
|
|
|
|
|
2013-03-13 23:45:15 +08:00
|
|
|
/* This whole block is about generating X-Cache-Channel { */
|
|
|
|
|
|
|
|
// TODO: review lifetime of elements of this cache
|
|
|
|
// NOTE: by-token indices should only be dropped when
|
|
|
|
// the corresponding layegroup is dropped, because
|
|
|
|
// we have no SQL after layer creation.
|
|
|
|
me.channelCache = {};
|
|
|
|
|
2013-03-14 01:41:37 +08:00
|
|
|
// Run a query through the SQL api
|
|
|
|
me.sqlQuery = function (username, api_key, sql, callback) {
|
2013-03-13 23:45:15 +08:00
|
|
|
var api = global.environment.sqlapi;
|
|
|
|
|
|
|
|
// build up api string
|
|
|
|
var sqlapi = api.protocol + '://' + username + '.' + api.host + ':' + api.port + '/api/' + api.version + '/sql'
|
|
|
|
|
2013-03-14 01:41:37 +08:00
|
|
|
var qs = { q: sql }
|
2013-03-13 23:45:15 +08:00
|
|
|
|
|
|
|
// add api_key if given
|
2013-03-14 01:41:37 +08:00
|
|
|
if (_.isString(api_key) && api_key != '') { qs.api_key = api_key; }
|
2013-03-13 23:45:15 +08:00
|
|
|
|
|
|
|
// call sql api
|
|
|
|
request.get({url:sqlapi, qs:qs, json:true}, function(err, res, body){
|
|
|
|
if (err){
|
2013-04-10 00:07:53 +08:00
|
|
|
console.log('ERROR running connecting to SQL API on ' + sqlapi + ': ' + err);
|
2013-03-14 01:41:37 +08:00
|
|
|
callback(err);
|
2013-03-13 23:45:15 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (res.statusCode != 200) {
|
|
|
|
var msg = res.body.error ? res.body.error : res.body;
|
2013-03-14 01:41:37 +08:00
|
|
|
callback(new Error('unexpected response status (' + res.statusCode + ') for sql query: ' + sql));
|
2013-03-13 23:45:15 +08:00
|
|
|
return;
|
|
|
|
}
|
2013-03-14 01:41:37 +08:00
|
|
|
callback(null, body.rows);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
me.findLastUpdated = function (username, api_key, tableNames, callback) {
|
2013-03-21 18:39:55 +08:00
|
|
|
var sql = 'SELECT EXTRACT(EPOCH FROM max(updated_at)) as max FROM CDB_TableMetadata m WHERE m.tabname::name = any (\'{'
|
|
|
|
+ tableNames.join(',') + '}\')';
|
2013-03-14 01:41:37 +08:00
|
|
|
|
|
|
|
// call sql api
|
|
|
|
me.sqlQuery(username, api_key, sql, function(err, rows){
|
|
|
|
if (err){
|
|
|
|
var msg = err.message ? err.message : err;
|
|
|
|
callback(new Error('could not find last updated timestamp: ' + msg));
|
|
|
|
return;
|
|
|
|
}
|
2013-03-21 18:39:55 +08:00
|
|
|
// when the table has not updated_at means it hasn't been changed so a default last_updated is set
|
|
|
|
var last_updated = 0;
|
|
|
|
if(rows.length !== 0) {
|
|
|
|
last_updated = rows[0].max || 0;
|
|
|
|
}
|
2013-03-14 01:41:37 +08:00
|
|
|
callback(null, last_updated);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
me.affectedTables = function (username, api_key, sql, callback) {
|
|
|
|
|
2013-04-23 23:12:10 +08:00
|
|
|
// Replace mapnik tokens
|
|
|
|
sql = sql.replace(RegExp('!bbox!', 'g'), 'ST_MakeEnvelope(0,0,0,0)')
|
|
|
|
.replace(RegExp('!pixel_width!', 'g'), '1')
|
|
|
|
.replace(RegExp('!pixel_height!', 'g'), '1')
|
|
|
|
;
|
|
|
|
|
|
|
|
// Pass to CDB_QueryTables
|
|
|
|
sql = 'SELECT CDB_QueryTables($windshaft$' + sql + '$windshaft$)';
|
2013-03-14 01:41:37 +08:00
|
|
|
|
|
|
|
// call sql api
|
|
|
|
me.sqlQuery(username, api_key, sql, function(err, rows){
|
|
|
|
if (err){
|
|
|
|
var msg = err.message ? err.message : err;
|
|
|
|
callback(new Error('could not fetch source tables: ' + msg));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var qtables = rows[0].cdb_querytables;
|
2013-03-13 23:45:15 +08:00
|
|
|
var tableNames = qtables.split(/^\{(.*)\}$/)[1];
|
2013-03-14 01:41:37 +08:00
|
|
|
tableNames = tableNames.split(',');
|
2013-03-13 23:45:15 +08:00
|
|
|
callback(null, tableNames);
|
|
|
|
});
|
2013-03-14 01:41:37 +08:00
|
|
|
};
|
2013-03-13 23:45:15 +08:00
|
|
|
|
|
|
|
me.buildCacheChannel = function (dbName, tableNames){
|
2013-03-14 01:41:37 +08:00
|
|
|
return dbName + ':' + tableNames.join(',');
|
2013-03-13 23:45:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
me.generateMD5 = function(data){
|
|
|
|
var hash = crypto.createHash('md5');
|
|
|
|
hash.update(data);
|
|
|
|
return hash.digest('hex');
|
|
|
|
}
|
|
|
|
|
|
|
|
me.generateCacheChannel = function(req, callback){
|
|
|
|
|
|
|
|
// use key to call sql api with sql request if present, else
|
|
|
|
// just return dbname and table name base key
|
|
|
|
var dbName = req.params.dbname;
|
|
|
|
|
|
|
|
var cacheKey = [ dbName ];
|
|
|
|
if ( req.params.token ) cacheKey.push(req.params.token);
|
|
|
|
else if ( req.params.sql ) cacheKey.push( me.generateMD5(req.params.sql) );
|
|
|
|
cacheKey = cacheKey.join(':');
|
|
|
|
|
|
|
|
if ( me.channelCache.hasOwnProperty(cacheKey) ) {
|
|
|
|
callback(null, me.channelCache[cacheKey]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( req.params.token ) {
|
|
|
|
if ( ! me.channelCache.hasOwnProperty(cacheKey) ) {
|
|
|
|
callback(new Error('missing channel cache for token ' + req.params.token));
|
|
|
|
} else {
|
|
|
|
callback(null, me.channelCache[cacheKey]);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! req.params.sql && ! req.params.token ) {
|
2013-03-14 01:41:37 +08:00
|
|
|
var cacheChannel = me.buildCacheChannel(dbName, [req.params.table]);
|
2013-03-13 23:45:15 +08:00
|
|
|
// not worth caching this
|
|
|
|
callback(null, cacheChannel);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! req.params.sql ) {
|
|
|
|
callback(new Error("this request doesn't need an X-Cache-Channel generated"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var dbName = req.params.dbname;
|
|
|
|
var username = req.headers.host.split('.')[0];
|
|
|
|
|
|
|
|
// strip out windshaft/mapnik inserted sql if present
|
|
|
|
var sql = req.params.sql.match(/^\((.*)\)\sas\scdbq$/);
|
|
|
|
sql = (sql != null) ? sql[1] : req.params.sql;
|
|
|
|
|
|
|
|
me.affectedTables(username, req.params.map_key, sql, function(err, tableNames) {
|
|
|
|
if ( err ) { callback(err); return; }
|
|
|
|
var cacheChannel = me.buildCacheChannel(dbName,tableNames);
|
|
|
|
me.channelCache[cacheKey] = cacheChannel; // store for caching
|
|
|
|
callback(null, cacheChannel);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2012-09-25 00:57:48 +08:00
|
|
|
// Set the cache chanel info to invalidate the cache on the frontend server
|
|
|
|
//
|
|
|
|
// @param req The request object.
|
|
|
|
// The function will have no effect unless req.res exists.
|
|
|
|
// It is expected that req.params contains 'table' and 'dbname'
|
|
|
|
//
|
|
|
|
// @param cb function(err, channel) will be called when ready.
|
|
|
|
// the channel parameter will be null if nothing was added
|
|
|
|
//
|
|
|
|
me.addCacheChannel = function(req, cb) {
|
|
|
|
// skip non-GET requests, or requests for which there's no response
|
|
|
|
if ( req.method != 'GET' || ! req.res ) { cb(null, null); return; }
|
|
|
|
var res = req.res;
|
2013-03-13 17:36:28 +08:00
|
|
|
var cache_policy = req.query.cache_policy;
|
|
|
|
if ( cache_policy == 'persist' ) {
|
|
|
|
res.header('Cache-Control', 'public,max-age=31536000'); // 1 year
|
|
|
|
} else {
|
|
|
|
var ttl = global.environment.varnish.ttl || 86400;
|
|
|
|
res.header('Last-Modified', new Date().toUTCString());
|
|
|
|
res.header('Cache-Control', 'no-cache,max-age='+ttl+',must-revalidate, public');
|
|
|
|
}
|
2013-03-13 23:45:15 +08:00
|
|
|
|
|
|
|
me.generateCacheChannel(req, function(err, channel){
|
2013-03-13 17:36:28 +08:00
|
|
|
if ( ! err ) {
|
|
|
|
res.header('X-Cache-Channel', channel);
|
|
|
|
cb(null, channel);
|
2012-10-24 15:40:05 +08:00
|
|
|
} else {
|
2013-03-13 17:36:28 +08:00
|
|
|
console.log('ERROR generating cache channel: ' + ( err.message ? err.message : err ));
|
|
|
|
// TODO: evaluate if we should bubble up the error instead
|
|
|
|
cb(null, 'ERROR');
|
2012-10-24 15:40:05 +08:00
|
|
|
}
|
2012-09-25 00:57:48 +08:00
|
|
|
});
|
2013-03-13 23:45:15 +08:00
|
|
|
};
|
|
|
|
|
2013-04-02 19:30:49 +08:00
|
|
|
me.afterLayergroupCreate = function(req, mapconfig, response, callback) {
|
2013-03-13 23:45:15 +08:00
|
|
|
var token = response.layergroupid;
|
|
|
|
|
2013-04-12 23:28:34 +08:00
|
|
|
var username = cartoData.userFromHostname(req.headers.host);
|
|
|
|
|
|
|
|
var tasksleft = 2; // redis key and affectedTables
|
|
|
|
var errors = [];
|
|
|
|
|
|
|
|
var done = function(err) {
|
|
|
|
if ( err ) {
|
|
|
|
errors.push('' + err);
|
|
|
|
}
|
|
|
|
if ( ! --tasksleft ) {
|
|
|
|
err = errors.length ? new Error(errors.join('\n')) : null;
|
|
|
|
callback(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't wait for the mapview count increment to
|
|
|
|
// take place before proceeding. Error will be logged
|
|
|
|
// asyncronously
|
|
|
|
cartoData.incMapviewCount(username, function(err) {
|
|
|
|
if ( err ) console.log("ERROR: failed to increment mapview count for user '" + username + "': " + err);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
2013-03-13 23:45:15 +08:00
|
|
|
var sql = [];
|
|
|
|
_.each(mapconfig.layers, function(lyr) {
|
|
|
|
sql.push(lyr.options.sql);
|
|
|
|
});
|
|
|
|
sql = sql.join(';');
|
|
|
|
|
|
|
|
var dbName = req.params.dbname;
|
|
|
|
var usr = req.headers.host.split('.')[0];
|
|
|
|
var key = req.params.map_key;
|
|
|
|
|
|
|
|
var cacheKey = dbName + ':' + token;
|
|
|
|
|
|
|
|
me.affectedTables(usr, key, sql, function(err, tableNames) {
|
2013-03-14 01:41:37 +08:00
|
|
|
|
2013-04-12 23:28:34 +08:00
|
|
|
if ( err ) { done(err); return; }
|
2013-03-13 23:45:15 +08:00
|
|
|
var cacheChannel = me.buildCacheChannel(dbName,tableNames);
|
|
|
|
me.channelCache[cacheKey] = cacheChannel; // store for caching
|
2013-03-14 01:41:37 +08:00
|
|
|
// find last updated
|
|
|
|
me.findLastUpdated(usr, key, tableNames, function(err, lastUpdated) {
|
2013-04-12 23:28:34 +08:00
|
|
|
if ( err ) { done(err); return; }
|
2013-04-04 19:15:50 +08:00
|
|
|
response.layergroupid = response.layergroupid + ':' + lastUpdated; // use epoch
|
|
|
|
response.last_updated = new Date(lastUpdated).toISOString(); // TODO: use ISO format
|
2013-04-12 23:28:34 +08:00
|
|
|
done(null);
|
2013-03-14 01:41:37 +08:00
|
|
|
});
|
2013-03-13 23:45:15 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/* X-Cache-Channel generation } */
|
2012-09-25 00:57:48 +08:00
|
|
|
|
2012-05-03 02:32:54 +08:00
|
|
|
/**
|
|
|
|
* Whitelist input and get database name & default geometry type from
|
|
|
|
* subdomain/user metadata held in CartoDB Redis
|
|
|
|
* @param req - standard express request obj. Should have host & table
|
|
|
|
* @param callback
|
|
|
|
*/
|
|
|
|
me.req2params = function(req, callback){
|
|
|
|
|
2013-03-23 01:55:59 +08:00
|
|
|
if ( req.query.lzma ) {
|
|
|
|
|
|
|
|
// TODO: check ?
|
|
|
|
//console.log("type of req.query.lzma is " + typeof(req.query.lzma));
|
|
|
|
//console.log("req.query.lzma is " + req.query.lzma);
|
|
|
|
|
2013-04-19 22:16:20 +08:00
|
|
|
// Decode (from base64)
|
|
|
|
var lzma = new Buffer(req.query.lzma, 'base64');
|
2013-03-23 01:55:59 +08:00
|
|
|
|
|
|
|
// Decompress
|
|
|
|
//console.log("LZMA decompression starts with " + lzma);
|
|
|
|
LZMA.decompress(
|
|
|
|
lzma,
|
|
|
|
function(result) {
|
|
|
|
//console.log("LZMA decompression completed, payload: "); console.dir(result);
|
|
|
|
try {
|
|
|
|
req.query = JSON.parse(result);
|
|
|
|
me.req2params(req, callback);
|
|
|
|
} catch (err) {
|
|
|
|
callback(new Error('Error parsing lzma as JSON: ' + err));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
function(percent) { // progress
|
|
|
|
//console.log("LZMA decompression " + percent + "%");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-03 02:32:54 +08:00
|
|
|
// Whitelist query parameters and attach format
|
2012-11-14 22:28:58 +08:00
|
|
|
var good_query = ['sql', 'geom_type', 'cache_buster', 'cache_policy', 'callback', 'interactivity', 'map_key', 'api_key', 'style', 'style_version', 'style_convert' ];
|
2012-05-03 02:32:54 +08:00
|
|
|
var bad_query = _.difference(_.keys(req.query), good_query);
|
|
|
|
|
|
|
|
_.each(bad_query, function(key){ delete req.query[key]; });
|
|
|
|
req.params = _.extend({}, req.params); // shuffle things as request is a strange array/object
|
|
|
|
|
2013-04-04 19:15:50 +08:00
|
|
|
if ( req.params.token ) {
|
|
|
|
//console.log("Request parameters include token " + req.params.token);
|
|
|
|
var tksplit = req.params.token.split(':');
|
|
|
|
req.params.token = tksplit[0];
|
|
|
|
if ( tksplit.length > 1 ) req.params.cache_buster= tksplit[1];
|
|
|
|
}
|
|
|
|
|
2012-05-03 02:32:54 +08:00
|
|
|
// bring all query values onto req.params object
|
|
|
|
_.extend(req.params, req.query);
|
|
|
|
|
|
|
|
// for cartodb, ensure interactivity is cartodb_id or user specified
|
2013-04-06 00:11:36 +08:00
|
|
|
req.params.interactivity = req.params.interactivity || 'cartodb_id';
|
2012-05-03 02:32:54 +08:00
|
|
|
|
2012-09-03 20:54:23 +08:00
|
|
|
req.params.processXML = function(req, xml, callback) {
|
2012-09-05 21:41:22 +08:00
|
|
|
var dbuser = req.dbuser ? req.dbuser : global.settings.postgres.user;
|
|
|
|
if ( ! me.rx_dbuser ) me.rx_dbuser = /(<Parameter name="user"><!\[CDATA\[)[^\]]*(]]><\/Parameter>)/;
|
|
|
|
xml = xml.replace(me.rx_dbuser, "$1" + dbuser + "$2");
|
2012-09-03 20:54:23 +08:00
|
|
|
callback(null, xml);
|
|
|
|
}
|
|
|
|
|
2012-09-25 00:57:48 +08:00
|
|
|
var that = this;
|
|
|
|
|
2012-05-03 02:32:54 +08:00
|
|
|
Step(
|
|
|
|
function getPrivacy(){
|
|
|
|
cartoData.authorize(req, this);
|
|
|
|
},
|
|
|
|
function gatekeep(err, data){
|
|
|
|
if(err) throw err;
|
2012-09-06 02:16:55 +08:00
|
|
|
if(data === "0") throw new Error("Sorry, you are unauthorized (permission denied)");
|
2012-05-03 02:32:54 +08:00
|
|
|
return data;
|
|
|
|
},
|
|
|
|
function getDatabase(err, data){
|
|
|
|
if(err) throw err;
|
|
|
|
|
|
|
|
cartoData.getDatabase(req, this);
|
|
|
|
},
|
|
|
|
function getGeometryType(err, data){
|
|
|
|
if (err) throw err;
|
|
|
|
_.extend(req.params, {dbname:data});
|
|
|
|
|
|
|
|
cartoData.getGeometryType(req, this);
|
|
|
|
},
|
|
|
|
function finishSetup(err, data){
|
2012-09-25 00:57:48 +08:00
|
|
|
if ( err ) { callback(err, req); return; }
|
|
|
|
|
2012-05-03 02:32:54 +08:00
|
|
|
if (!_.isNull(data))
|
|
|
|
_.extend(req.params, {geom_type: data});
|
|
|
|
|
2013-03-13 17:36:28 +08:00
|
|
|
that.addCacheChannel(req, function(err) {
|
2012-09-25 00:57:48 +08:00
|
|
|
callback(err, req);
|
|
|
|
});
|
2012-05-03 02:32:54 +08:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Little helper method to get the current list of infowindow variables and return to client
|
|
|
|
* @param req
|
|
|
|
* @param callback
|
|
|
|
*/
|
|
|
|
me.getInfowindow = function(req, callback){
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
Step(
|
|
|
|
function(){
|
|
|
|
that.req2params(req, this);
|
|
|
|
},
|
|
|
|
function(err, data){
|
2012-08-15 02:01:05 +08:00
|
|
|
if (err) callback(err, null);
|
|
|
|
else cartoData.getInfowindow(data, callback);
|
2012-05-03 02:32:54 +08:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Little helper method to get map metadata and return to client
|
|
|
|
* @param req
|
|
|
|
* @param callback
|
|
|
|
*/
|
|
|
|
me.getMapMetadata = function(req, callback){
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
Step(
|
|
|
|
function(){
|
|
|
|
that.req2params(req, this);
|
|
|
|
},
|
|
|
|
function(err, data){
|
2012-09-10 23:01:21 +08:00
|
|
|
if (err) callback(err, null);
|
|
|
|
else cartoData.getMapMetadata(data, callback);
|
2012-05-03 02:32:54 +08:00
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper to clear out tile cache on request
|
|
|
|
* @param req
|
|
|
|
* @param callback
|
|
|
|
*/
|
|
|
|
me.flushCache = function(req, Cache, callback){
|
|
|
|
var that = this;
|
|
|
|
|
|
|
|
Step(
|
2013-03-16 02:25:13 +08:00
|
|
|
function getParams(){
|
|
|
|
// this is mostly to compute req.params.dbname
|
2012-05-03 02:32:54 +08:00
|
|
|
that.req2params(req, this);
|
|
|
|
},
|
2013-03-16 02:25:13 +08:00
|
|
|
function flushInternalCache(err){
|
|
|
|
// TODO: implement this, see
|
|
|
|
// http://github.com/Vizzuality/Windshaft-cartodb/issues/73
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
function flushVarnishCache(err){
|
|
|
|
if (err) { callback(err); return; }
|
2012-10-05 22:55:58 +08:00
|
|
|
if(Cache) {
|
|
|
|
Cache.invalidate_db(req.params.dbname, req.params.table);
|
|
|
|
}
|
2012-05-03 02:32:54 +08:00
|
|
|
callback(null, true);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
return me;
|
2011-10-13 21:22:54 +08:00
|
|
|
}();
|