This commit is contained in:
AJ ONeal 2017-05-31 00:40:44 +00:00
parent 98188ed093
commit 2299af2b01
1 changed files with 0 additions and 5 deletions

View File

@ -32,7 +32,6 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
var appApiGrantsPath = path.join(myConf.appApiGrantsPath, clientUrih);
return fs.readFileAsync(appApiGrantsPath, 'utf8').then(function (text) {
console.log('sanity', text);
return text.trim().split(/\n/);
}, function (err) {
if ('ENOENT' !== err.code) {
@ -42,7 +41,6 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
}).then(function (apis) {
if (apis.some(function (api) {
if (api === pkgId) {
console.log(api, pkgId, api === pkgId);
return true;
}
})) {
@ -324,7 +322,6 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
req._walnutOriginalUrl = req.url;
// "/path/api/com.example/hello".replace(/.*\/api\//, '').replace(/([^\/]*\/+)/, '/') => '/hello'
req.url = req.url.replace(/\/api\//, '').replace(/.*\/api\//, '').replace(/([^\/]*\/+)/, '/');
console.log('[prehandler] req.url', req.url);
next();
});
});
@ -338,7 +335,6 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
myApp.use('/', function postHandler(req, res, next) {
req.url = req._walnutOriginalUrl;
console.log('[posthandler] req.url', req.url);
next();
});
@ -388,7 +384,6 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
return function (req, res, next) {
cors(req, res, function () {
console.log('[sanity check]', req.url);
// Canonical client names
// example.com should use api.example.com/api for all requests
// sub.example.com/api should resolve to sub.example.com