0
Fork 0
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:
Daniel Lockyer 2021-06-16 13:51:39 +01:00
parent e2b2a51d9b
commit 930df4b7fb
3 changed files with 20 additions and 14 deletions

View file

@ -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'],

View file

@ -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);
}
});
};

View file

@ -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);
}
});