mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 16:41:24 +03:00
40 lines
1007 B
JavaScript
40 lines
1007 B
JavaScript
|
/**
|
||
|
* Parse Context
|
||
|
*
|
||
|
* Utility function, to expand strings out into objects.
|
||
|
* @param {Object|String} context
|
||
|
* @return {{internal: boolean, external: boolean, user: integer|null, app: integer|null, public: boolean}}
|
||
|
*/
|
||
|
module.exports = function parseContext(context) {
|
||
|
// Parse what's passed to canThis.beginCheck for standard user and app scopes
|
||
|
var parsed = {
|
||
|
internal: false,
|
||
|
external: false,
|
||
|
user: null,
|
||
|
app: null,
|
||
|
public: true
|
||
|
};
|
||
|
|
||
|
if (context && (context === 'external' || context.external)) {
|
||
|
parsed.external = true;
|
||
|
parsed.public = false;
|
||
|
}
|
||
|
|
||
|
if (context && (context === 'internal' || context.internal)) {
|
||
|
parsed.internal = true;
|
||
|
parsed.public = false;
|
||
|
}
|
||
|
|
||
|
if (context && context.user) {
|
||
|
parsed.user = context.user;
|
||
|
parsed.public = false;
|
||
|
}
|
||
|
|
||
|
if (context && context.app) {
|
||
|
parsed.app = context.app;
|
||
|
parsed.public = false;
|
||
|
}
|
||
|
|
||
|
return parsed;
|
||
|
};
|