mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
666a616551
refs #5614 - change isPublicContext to detectPublicContext - behaviour now expands the context object out - this is a bit of a sideeffect, but this is the simplest change that makes it possible to use the context in the model layer without significant wider changes - add new access rules plugin - takes a context object as part of `forge()` & caches it on the model instance - provides helper functions for testing access rules later on
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
// # Access Rules
|
|
//
|
|
// Extends Bookshelf.Model.force to take a 'context' option which provides information on how this query should
|
|
// be treated in terms of data access rules - currently just detecting public requests
|
|
module.exports = function (Bookshelf) {
|
|
var model = Bookshelf.Model,
|
|
Model;
|
|
|
|
Model = Bookshelf.Model.extend({
|
|
/**
|
|
* Cached copy of the context setup for this model instance
|
|
*/
|
|
_context: null,
|
|
/**
|
|
* ## Is Public Context?
|
|
* A helper to determine if this is a public request or not
|
|
* @returns {boolean}
|
|
*/
|
|
isPublicContext: function isPublicContext() {
|
|
return !!(this._context && this._context.public);
|
|
}
|
|
},
|
|
{
|
|
/**
|
|
* ## Forge
|
|
* Ensure that context gets set as part of the forge
|
|
*
|
|
* @param {object} attributes
|
|
* @param {object} options
|
|
* @returns {Bookshelf.Model} model
|
|
*/
|
|
forge: function forge(attributes, options) {
|
|
var self = model.forge.apply(this, arguments);
|
|
|
|
if (options && options.context) {
|
|
self._context = options.context;
|
|
delete options.context;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
});
|
|
|
|
Bookshelf.Model = Model;
|
|
};
|