restructure of some code
This commit is contained in:
parent
a429e48977
commit
0492c66a8b
189
lib/apis.js
189
lib/apis.js
|
@ -222,41 +222,7 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
rejectableRequest(req, res, promise, "[walnut@daplie.com] required account (not /public)");
|
rejectableRequest(req, res, promise, "[walnut@daplie.com] required account (not /public)");
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadRestHelperApi(myConf, clientUrih, pkg, pkgId, pkgPath) {
|
function grantsRequired(grants) {
|
||||||
var pkgLinks = [];
|
|
||||||
pkgLinks.push(pkgId);
|
|
||||||
var pkgRestApi;
|
|
||||||
var pkgDeps = {};
|
|
||||||
var myApp;
|
|
||||||
var pkgPathApi;
|
|
||||||
|
|
||||||
pkgPathApi = pkgPath;
|
|
||||||
if (pkg.walnut) {
|
|
||||||
pkgPathApi = path.join(pkgPath, pkg.walnut);
|
|
||||||
}
|
|
||||||
pkgRestApi = require(pkgPathApi);
|
|
||||||
|
|
||||||
Object.keys(apiDeps).forEach(function (key) {
|
|
||||||
pkgDeps[key] = apiDeps[key];
|
|
||||||
});
|
|
||||||
Object.keys(apiFactories).forEach(function (key) {
|
|
||||||
pkgDeps[key] = apiFactories[key];
|
|
||||||
});
|
|
||||||
|
|
||||||
// TODO pull db stuff from package.json somehow and pass allowed data models as deps
|
|
||||||
//
|
|
||||||
// how can we tell which of these would be correct?
|
|
||||||
// deps.memstore = apiFactories.memstoreFactory.create(pkgId);
|
|
||||||
// deps.memstore = apiFactories.memstoreFactory.create(req.experienceId);
|
|
||||||
// deps.memstore = apiFactories.memstoreFactory.create(req.experienceId + pkgId);
|
|
||||||
|
|
||||||
// let's go with this one for now and the api can choose to scope or not to scope
|
|
||||||
pkgDeps.memstore = apiFactories.memstoreFactory.create(pkgId);
|
|
||||||
|
|
||||||
myApp = express();
|
|
||||||
myApp.handlePromise = promisableRequest;
|
|
||||||
myApp.handleRejection = rejectableRequest;
|
|
||||||
myApp.grantsRequired = function (grants) {
|
|
||||||
if (!Array.isArray(grants)) {
|
if (!Array.isArray(grants)) {
|
||||||
throw new Error("Usage: app.grantsRequired([ 'name|altname|altname2', 'othergrant' ])");
|
throw new Error("Usage: app.grantsRequired([ 'name|altname|altname2', 'othergrant' ])");
|
||||||
}
|
}
|
||||||
|
@ -302,7 +268,42 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
|
|
||||||
next();
|
next();
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
function loadRestHelperApi(myConf, clientUrih, pkg, pkgId, pkgPath) {
|
||||||
|
var pkgLinks = [];
|
||||||
|
pkgLinks.push(pkgId);
|
||||||
|
var pkgRestApi;
|
||||||
|
var pkgDeps = {};
|
||||||
|
var myApp;
|
||||||
|
var pkgPathApi;
|
||||||
|
|
||||||
|
pkgPathApi = pkgPath;
|
||||||
|
if (pkg.walnut) {
|
||||||
|
pkgPathApi = path.join(pkgPath, pkg.walnut);
|
||||||
|
}
|
||||||
|
pkgRestApi = require(pkgPathApi);
|
||||||
|
|
||||||
|
Object.keys(apiDeps).forEach(function (key) {
|
||||||
|
pkgDeps[key] = apiDeps[key];
|
||||||
|
});
|
||||||
|
Object.keys(apiFactories).forEach(function (key) {
|
||||||
|
pkgDeps[key] = apiFactories[key];
|
||||||
|
});
|
||||||
|
|
||||||
|
// TODO pull db stuff from package.json somehow and pass allowed data models as deps
|
||||||
|
//
|
||||||
|
// how can we tell which of these would be correct?
|
||||||
|
// deps.memstore = apiFactories.memstoreFactory.create(pkgId);
|
||||||
|
// deps.memstore = apiFactories.memstoreFactory.create(req.experienceId);
|
||||||
|
// deps.memstore = apiFactories.memstoreFactory.create(req.experienceId + pkgId);
|
||||||
|
|
||||||
|
// let's go with this one for now and the api can choose to scope or not to scope
|
||||||
|
pkgDeps.memstore = apiFactories.memstoreFactory.create(pkgId);
|
||||||
|
|
||||||
|
myApp = express();
|
||||||
|
myApp.handlePromise = promisableRequest;
|
||||||
|
myApp.handleRejection = rejectableRequest;
|
||||||
|
myApp.grantsRequired = grantsRequired;
|
||||||
|
|
||||||
myApp.use('/', require('./oauth3').attachOauth3);
|
myApp.use('/', require('./oauth3').attachOauth3);
|
||||||
|
|
||||||
|
@ -591,11 +592,64 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var settingsPromise = PromiseA.resolve();
|
||||||
|
function manageSiteSettings(section) {
|
||||||
|
|
||||||
|
var submanager;
|
||||||
|
var manager = {
|
||||||
|
set: function (section, value) {
|
||||||
|
if ('email@daplie.com' === section) {
|
||||||
|
section = 'mailgun.org';
|
||||||
|
}
|
||||||
|
|
||||||
|
settingsPromise = settingsPromise.then(function () {
|
||||||
|
return manager.get().then(function () {
|
||||||
|
siteConfig[section] = value;
|
||||||
|
|
||||||
|
var siteConfigPath = path.join(xconfx.appConfigPath, clientUrih);
|
||||||
|
return mkdirpAsync(siteConfigPath).then(function () {
|
||||||
|
return fs.writeFileAsync(path.join(siteConfigPath, 'config.json'), JSON.stringify(siteConfig), 'utf8');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return settingsPromise;
|
||||||
|
}
|
||||||
|
, get: function (section) {
|
||||||
|
if ('email@daplie.com' === section) {
|
||||||
|
section = 'mailgun.org';
|
||||||
|
}
|
||||||
|
|
||||||
|
settingsPromise = settingsPromise.then(function () {
|
||||||
|
return getSiteConfig(clientUrih).then(function (_siteConfig) {
|
||||||
|
siteConfig = _siteConfig;
|
||||||
|
return PromiseA.resolve((_siteConfig || {})[section]);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return settingsPromise;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
submanager = manager;
|
||||||
|
if (section) {
|
||||||
|
submanager = {
|
||||||
|
set: function (value) {
|
||||||
|
return manager.set(section, value);
|
||||||
|
}
|
||||||
|
, get: function () {
|
||||||
|
return manager.get(section);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return apiDeps.Promise.resolve(submanager);
|
||||||
|
}
|
||||||
|
|
||||||
var caps = {
|
var caps = {
|
||||||
//
|
//
|
||||||
// Capabilities for APIs
|
// Capabilities for APIs
|
||||||
//
|
//
|
||||||
'email@daplie.com': mailgunMail // whichever mailer
|
'settings.site@daplie.com': manageSiteSettings
|
||||||
|
, 'email@daplie.com': mailgunMail // whichever mailer
|
||||||
, 'mailer@daplie.com': mailgunMail // whichever mailer
|
, 'mailer@daplie.com': mailgunMail // whichever mailer
|
||||||
, 'mailgun@daplie.com': mailgunMail // specifically mailgun
|
, 'mailgun@daplie.com': mailgunMail // specifically mailgun
|
||||||
, 'tel@daplie.com': daplieTel // whichever telephony service
|
, 'tel@daplie.com': daplieTel // whichever telephony service
|
||||||
|
@ -736,7 +790,13 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
function loadRestHelperAssets(myConf, clientUrih, pkg, pkgId, pkgPath) {
|
function loadRestHelperAssets(myConf, clientUrih, pkg, pkgId, pkgPath) {
|
||||||
var myApp;
|
var myApp;
|
||||||
var pkgDeps = {};
|
var pkgDeps = {};
|
||||||
var pkgRestAssets = require(path.join(pkgPath, 'assets.js'));
|
var pkgRestAssets;
|
||||||
|
|
||||||
|
try {
|
||||||
|
pkgRestAssets = require(path.join(pkgPath, 'assets.js'));
|
||||||
|
} catch(e) {
|
||||||
|
return PromiseA.reject(e);
|
||||||
|
}
|
||||||
|
|
||||||
Object.keys(apiDeps).forEach(function (key) {
|
Object.keys(apiDeps).forEach(function (key) {
|
||||||
pkgDeps[key] = apiDeps[key];
|
pkgDeps[key] = apiDeps[key];
|
||||||
|
@ -758,53 +818,7 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
myApp = express();
|
myApp = express();
|
||||||
myApp.handlePromise = promisableRequest;
|
myApp.handlePromise = promisableRequest;
|
||||||
myApp.handleRejection = rejectableRequest;
|
myApp.handleRejection = rejectableRequest;
|
||||||
myApp.grantsRequired = function (grants) {
|
myApp.grantsRequired = grantsRequired;
|
||||||
if (!Array.isArray(grants)) {
|
|
||||||
throw new Error("Usage: app.grantsRequired([ 'name|altname|altname2', 'othergrant' ])");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!grants.length) {
|
|
||||||
return function (req, res, next) {
|
|
||||||
next();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return function (req, res, next) {
|
|
||||||
var tokenScopes;
|
|
||||||
|
|
||||||
if (!(req.oauth3 || req.oauth3.token)) {
|
|
||||||
// TODO some error generator for standard messages
|
|
||||||
res.send({ error: { message: "You must be logged in", code: "E_NO_AUTHN" } });
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
var scope = req.oauth3.token.scope || req.oauth3.token.scp || req.oauth3.token.grants;
|
|
||||||
if ('string' !== typeof scope) {
|
|
||||||
res.send({ error: { message: "Token must contain a grants string in 'scope'", code: "E_NO_GRANTS" } });
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
tokenScopes = scope.split(/[,\s]+/mg);
|
|
||||||
if (-1 !== tokenScopes.indexOf('*')) {
|
|
||||||
// has full account access
|
|
||||||
next();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// every grant in the array must be present, though some grants can be satisfied
|
|
||||||
// by multiple scopes.
|
|
||||||
var missing = grants.filter(function (grant) {
|
|
||||||
return !grant.split('|').some(function (scp) {
|
|
||||||
return tokenScopes.indexOf(scp) !== -1;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
if (missing.length) {
|
|
||||||
res.send({ error: { message: "Token missing required grants: '" + missing.join(',') + "'", code: "E_NO_GRANTS" } });
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
next();
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
myApp.use('/', require('./oauth3').cookieOauth3);
|
myApp.use('/', require('./oauth3').cookieOauth3);
|
||||||
myApp.use('/', function (req, res, next) {
|
myApp.use('/', function (req, res, next) {
|
||||||
|
@ -937,6 +951,10 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
return loadRestHelperAssets(myConf, clientUrih, pkg, pkgId, pkgPath).then(function (assetsHandler) {
|
return loadRestHelperAssets(myConf, clientUrih, pkg, pkgId, pkgPath).then(function (assetsHandler) {
|
||||||
stuff.assetsHandler = assetsHandler;
|
stuff.assetsHandler = assetsHandler;
|
||||||
return stuff;
|
return stuff;
|
||||||
|
}, function (err) {
|
||||||
|
console.error('[lib/api.js] no assets handler:');
|
||||||
|
console.error(err);
|
||||||
|
return stuff;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -989,6 +1007,7 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
|
||||||
var clientUrih = req.hostname.replace(/^(api|assets)\./, '') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/+/g, '#').replace(/#$/, '');
|
var clientUrih = req.hostname.replace(/^(api|assets)\./, '') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/+/g, '#').replace(/#$/, '');
|
||||||
var clientApiUri = req.hostname.replace(/^(api|assets)\./, 'api.') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/$/, '');
|
var clientApiUri = req.hostname.replace(/^(api|assets)\./, 'api.') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/$/, '');
|
||||||
var clientAssetsUri = req.hostname.replace(/^(api|assets)\./, 'assets.') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/$/, '');
|
var clientAssetsUri = req.hostname.replace(/^(api|assets)\./, 'assets.') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/$/, '');
|
||||||
|
//var clientAssetsUri = req.hostname.replace(/^(api|assets)\./, 'api.') + req.url.replace(/\/(api|assets)\/.*/, '/').replace(/\/$/, '');
|
||||||
// Canonical package names
|
// Canonical package names
|
||||||
// '/api/com.daplie.hello/hello' should resolve to 'com.daplie.hello'
|
// '/api/com.daplie.hello/hello' should resolve to 'com.daplie.hello'
|
||||||
// '/subapp/api/com.daplie.hello/hello' should also 'com.daplie.hello'
|
// '/subapp/api/com.daplie.hello/hello' should also 'com.daplie.hello'
|
||||||
|
|
Loading…
Reference in New Issue