mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
4ac88dce10
* refactored `core/frontend/apps` to destructure common imports * refactored `core/frontend/services/{apps, redirects, routing}` to destructure common imports * refactored `core/frontend/services/settings` to destructure common imports * refactored remaining `core/frontend/services` to destructure common imports * refactored `core/server/adapters` to destructure common imports * refactored `core/server/data/{db, exporter, schema, validation}` to destructure common imports * refactored `core/server/data/importer` to destructure common imports * refactored `core/server/models/{base, plugins, relations}` to destructure common imports * refactored remaining `core/server/models` to destructure common imports * refactored `core/server/api/canary/utils/serializers/output` to destructure common imports * refactored remaining `core/server/api/canary/utils` to destructure common imports * refactored remaining `core/server/api/canary` to destructure common imports * refactored `core/server/api/shared` to destructure common imports * refactored `core/server/api/v2/utils` to destructure common imports * refactored remaining `core/server/api/v2` to destructure common imports * refactored `core/frontend/meta` to destructure common imports * fixed some tests referencing `common.errors` instead of `@tryghost/errors` - Not all of them need to be updated; only updating the ones that are causing failures * fixed errors import being shadowed by local scope
101 lines
3.3 KiB
JavaScript
101 lines
3.3 KiB
JavaScript
/**
|
|
* # Utils
|
|
* Parts of the model code which can be split out and unit tested
|
|
*/
|
|
const _ = require('lodash');
|
|
|
|
const Promise = require('bluebird');
|
|
const ObjectId = require('bson-objectid');
|
|
const errors = require('@tryghost/errors');
|
|
let attach;
|
|
let detach;
|
|
|
|
/**
|
|
* Attach wrapper (please never call attach manual!)
|
|
*
|
|
* We register the creating event to be able to hook into the model creation process of Bookshelf.
|
|
* We need to load the model again, because of a known bookshelf issue:
|
|
* see https://github.com/tgriesser/bookshelf/issues/629
|
|
* (withRelated option causes a null value for the foreign key)
|
|
*
|
|
* roles [1,2]
|
|
* roles [{id: 1}, {id: 2}]
|
|
* roles [{role_id: 1}]
|
|
* roles [BookshelfModel]
|
|
*/
|
|
attach = function attach(Model, effectedModelId, relation, modelsToAttach, options) {
|
|
options = options || {};
|
|
|
|
let fetchedModel;
|
|
const localOptions = {transacting: options.transacting};
|
|
|
|
return Model.forge({id: effectedModelId}).fetch(localOptions)
|
|
.then(function successFetchedModel(_fetchedModel) {
|
|
fetchedModel = _fetchedModel;
|
|
|
|
if (!fetchedModel) {
|
|
throw new errors.NotFoundError({level: 'critical', help: effectedModelId});
|
|
}
|
|
|
|
fetchedModel.related(relation).on('creating', function (collection, data) {
|
|
data.id = ObjectId.generate();
|
|
});
|
|
|
|
return Promise.resolve(modelsToAttach)
|
|
.then(function then(models) {
|
|
models = _.map(models, function mapper(model) {
|
|
if (model.id) {
|
|
return model.id;
|
|
} else if (!_.isObject(model)) {
|
|
return model.toString();
|
|
} else {
|
|
return model;
|
|
}
|
|
});
|
|
|
|
return fetchedModel.related(relation).attach(models, localOptions);
|
|
});
|
|
})
|
|
.finally(function () {
|
|
if (!fetchedModel) {
|
|
return;
|
|
}
|
|
|
|
fetchedModel.related(relation).off('creating');
|
|
});
|
|
};
|
|
|
|
detach = function detach(Model, effectedModelId, relation, modelsToAttach, options) {
|
|
options = options || {};
|
|
|
|
let fetchedModel;
|
|
const localOptions = {transacting: options.transacting};
|
|
|
|
return Model.forge({id: effectedModelId}).fetch(localOptions)
|
|
.then(function successFetchedModel(_fetchedModel) {
|
|
fetchedModel = _fetchedModel;
|
|
|
|
if (!fetchedModel) {
|
|
throw new errors.NotFoundError({level: 'critical', help: effectedModelId});
|
|
}
|
|
|
|
return Promise.resolve(modelsToAttach)
|
|
.then(function then(models) {
|
|
models = _.map(models, function mapper(model) {
|
|
if (model.id) {
|
|
return model.id;
|
|
} else if (!_.isObject(model)) {
|
|
return model.toString();
|
|
} else {
|
|
return model;
|
|
}
|
|
});
|
|
|
|
return fetchedModel.related(relation).detach(models, localOptions);
|
|
});
|
|
});
|
|
};
|
|
|
|
module.exports.attach = attach;
|
|
module.exports.detach = detach;
|