mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Extracted Bookshelf bulk operations to plugin
no issue - this commit extracts code relating to bulk DB operations into a separate plugin - it __could__ go into the CRUD one but these operations are a little more involved
This commit is contained in:
parent
e2b2a51d9b
commit
930df4b7fb
3 changed files with 20 additions and 14 deletions
|
@ -54,6 +54,8 @@ ghostBookshelf.plugin(require('./sanitize'));
|
|||
|
||||
ghostBookshelf.plugin(require('./generate-slug'));
|
||||
|
||||
ghostBookshelf.plugin(require('./plugins/bulk-operations'));
|
||||
|
||||
// Manages nested updates (relationships)
|
||||
ghostBookshelf.plugin('bookshelf-relations', {
|
||||
allowedOptions: ['context', 'importing', 'migrating'],
|
||||
|
|
|
@ -87,5 +87,21 @@ async function del(table, ids) {
|
|||
return result;
|
||||
}
|
||||
|
||||
module.exports.insert = insert;
|
||||
module.exports.del = del;
|
||||
/**
|
||||
* @param {import('bookshelf')} Bookshelf
|
||||
*/
|
||||
module.exports = function (Bookshelf) {
|
||||
Bookshelf.Model = Bookshelf.Model.extend({}, {
|
||||
bulkAdd: function bulkAdd(data, tableName) {
|
||||
tableName = tableName || this.prototype.tableName;
|
||||
|
||||
return insert(tableName, data);
|
||||
},
|
||||
|
||||
bulkDestroy: function bulkDestroy(data, tableName) {
|
||||
tableName = tableName || this.prototype.tableName;
|
||||
|
||||
return del(tableName, data);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
@ -358,18 +358,6 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({
|
|||
}
|
||||
|
||||
return filteredCollectionQuery;
|
||||
},
|
||||
|
||||
bulkAdd: function bulkAdd(data, tableName) {
|
||||
tableName = tableName || this.prototype.tableName;
|
||||
|
||||
return bulkOperations.insert(tableName, data);
|
||||
},
|
||||
|
||||
bulkDestroy: function bulkDestroy(data, tableName) {
|
||||
tableName = tableName || this.prototype.tableName;
|
||||
|
||||
return bulkOperations.del(tableName, data);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue