mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
89ba4081b4
no issue - this commit extracts all code relating to filtering collections to a separate plugin to break down the Base model
98 lines
3.2 KiB
JavaScript
98 lines
3.2 KiB
JavaScript
const _ = require('lodash');
|
|
const bookshelf = require('bookshelf');
|
|
const ObjectId = require('bson-objectid');
|
|
const plugins = require('@tryghost/bookshelf-plugins');
|
|
const Promise = require('bluebird');
|
|
|
|
const db = require('../../data/db');
|
|
|
|
// ### ghostBookshelf
|
|
// Initializes a new Bookshelf instance called ghostBookshelf, for reference elsewhere in Ghost.
|
|
const ghostBookshelf = bookshelf(db.knex);
|
|
|
|
// Load the Bookshelf registry plugin, which helps us avoid circular dependencies
|
|
ghostBookshelf.plugin('registry');
|
|
|
|
ghostBookshelf.plugin(plugins.eagerLoad);
|
|
|
|
// Add committed/rollback events.
|
|
ghostBookshelf.plugin(plugins.transactionEvents);
|
|
|
|
// Load the Ghost custom-query plugin, which applying a custom query to findPage requests
|
|
ghostBookshelf.plugin(plugins.customQuery);
|
|
|
|
// Load the Ghost filter plugin, which handles applying a 'filter' to findPage requests
|
|
ghostBookshelf.plugin(plugins.filter);
|
|
|
|
// Load the Ghost filter plugin, which handles applying a 'order' to findPage requests
|
|
ghostBookshelf.plugin(plugins.order);
|
|
|
|
// Load the Ghost search plugin, which handles applying a search query to findPage requests
|
|
ghostBookshelf.plugin(plugins.search);
|
|
|
|
// Load the Ghost include count plugin, which allows for the inclusion of cross-table counts
|
|
ghostBookshelf.plugin(plugins.includeCount);
|
|
|
|
// Load the Ghost pagination plugin, which gives us the `fetchPage` method on Models
|
|
ghostBookshelf.plugin(plugins.pagination);
|
|
|
|
// Update collision plugin
|
|
ghostBookshelf.plugin(plugins.collision);
|
|
|
|
// Load hasPosts plugin for authors models
|
|
ghostBookshelf.plugin(plugins.hasPosts);
|
|
|
|
ghostBookshelf.plugin(require('./crud'));
|
|
|
|
ghostBookshelf.plugin(require('./actions'));
|
|
|
|
ghostBookshelf.plugin(require('./events'));
|
|
|
|
ghostBookshelf.plugin(require('./raw-knex'));
|
|
|
|
ghostBookshelf.plugin(require('./sanitize'));
|
|
|
|
ghostBookshelf.plugin(require('./generate-slug'));
|
|
|
|
ghostBookshelf.plugin(require('./bulk-operations'));
|
|
|
|
ghostBookshelf.plugin(require('./filtered-collection'));
|
|
|
|
// Manages nested updates (relationships)
|
|
ghostBookshelf.plugin('bookshelf-relations', {
|
|
allowedOptions: ['context', 'importing', 'migrating'],
|
|
unsetRelations: true,
|
|
extendChanged: '_changed',
|
|
attachPreviousRelations: true,
|
|
hooks: {
|
|
belongsToMany: {
|
|
after: function (existing, targets, options) {
|
|
// reorder tags/authors
|
|
const queryOptions = {
|
|
query: {
|
|
where: {}
|
|
}
|
|
};
|
|
|
|
// CASE: disable after hook for specific relations
|
|
if (['permissions_roles'].indexOf(existing.relatedData.joinTableName) !== -1) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
return Promise.each(targets.models, function (target, index) {
|
|
queryOptions.query.where[existing.relatedData.otherKey] = target.id;
|
|
|
|
return existing.updatePivot({
|
|
sort_order: index
|
|
}, _.extend({}, options, queryOptions));
|
|
});
|
|
},
|
|
beforeRelationCreation: function onCreatingRelation(model, data) {
|
|
data.id = ObjectId().toHexString();
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
module.exports = ghostBookshelf;
|