513 lines
20 KiB
JavaScript
Raw Normal View History

2016-07-12 11:15:01 +02:00
'use strict';
/**
* Module dependencies
*/
// Public node modules.
const _ = require('lodash');
const Mongoose = require('mongoose').Mongoose;
const mongooseUtils = require('mongoose/lib/utils');
2016-07-12 11:15:01 +02:00
2016-07-14 11:06:58 +02:00
// Local helpers.
const utils = require('./utils/');
2016-07-12 11:15:01 +02:00
// Strapi helpers for models.
const { models: utilsModels, logger } = require('strapi-utils');
2016-07-12 11:15:01 +02:00
/**
2017-11-17 14:23:26 +01:00
* Mongoose hook
2016-07-12 11:15:01 +02:00
*/
module.exports = function (strapi) {
const hook = {
/**
* Default options
*/
defaults: {
defaultConnection: 'default',
host: 'localhost',
port: 27017,
database: 'strapi'
2016-07-12 11:15:01 +02:00
},
/**
* Initialize the hook
*/
initialize: cb => {
_.forEach(_.pickBy(strapi.config.connections, {connector: 'strapi-mongoose'}), (connection, connectionName) => {
const instance = new Mongoose();
2017-12-11 12:29:05 +01:00
const { host, port, username, password, database } = _.defaults(connection.settings, strapi.config.hook.settings.mongoose);
2016-07-12 11:15:01 +02:00
// Connect to mongo database
if (_.isEmpty(username) || _.isEmpty(password)) {
2018-01-08 17:50:57 +03:00
instance.connect(`mongodb://${host}:${port}/${database}`);
} else {
2018-01-08 17:50:57 +03:00
instance.connect(`mongodb://${username}:${password}@${host}:${port}/${database}`);
}
2016-07-12 11:15:01 +02:00
// Handle error
instance.connection.on('error', error => {
if (error.message.indexOf(`:${port}`)) {
return cb('Make sure your MongoDB database is running...');
}
cb(error);
});
// Handle success
instance.connection.on('open', () => {
2017-11-15 16:59:12 +01:00
const mountModels = (models, target, plugin = false) => {
if (!target) return;
const loadedAttributes = _.after(_.size(models), () => {
_.forEach(models, (definition, model) => {
try {
let collection = strapi.config.hook.settings.mongoose.collections[mongooseUtils.toCollectionName(definition.globalName)];
// Set the default values to model settings.
_.defaults(definition, {
primaryKey: '_id'
});
// Initialize lifecycle callbacks.
const preLifecycle = {
validate: 'beforeCreate',
findOneAndRemove: 'beforeDestroy',
remove: 'beforeDestroy',
update: 'beforeUpdate',
find: 'beforeFetchAll',
findOne: 'beforeFetch',
save: 'beforeSave'
};
_.forEach(preLifecycle, (fn, key) => {
if (_.isFunction(target[model.toLowerCase()][fn])) {
collection.schema.pre(key, function (next) {
target[model.toLowerCase()][fn](this).then(next).catch(err => strapi.log.error(err));
});
}
});
const postLifecycle = {
validate: 'afterCreate',
findOneAndRemove: 'afterDestroy',
remove: 'afterDestroy',
update: 'afterUpdate',
find: 'afterFetchAll',
findOne: 'afterFetch',
save: 'afterSave'
};
_.forEach(postLifecycle, (fn, key) => {
if (_.isFunction(target[model.toLowerCase()][fn])) {
2017-11-29 15:46:28 +01:00
collection.schema.post(key, function (doc, next) {
target[model.toLowerCase()][fn](this, doc).then(next).catch(err => strapi.log.error(err))
});
}
});
2017-07-24 19:58:03 +02:00
// Add virtual key to provide populate and reverse populate
_.forEach(_.pickBy(definition.loadedModel, model => {
return model.type === 'virtual';
}), (value, key) => {
collection.schema.virtual(key.replace('_v', ''), {
ref: value.ref,
localField: '_id',
foreignField: value.via,
justOne: value.justOne || false
});
});
collection.schema.set('toObject', {
virtuals: true
});
collection.schema.set('toJSON', {
virtuals: true
});
2017-11-15 16:59:12 +01:00
if (!plugin) {
2017-12-18 14:07:35 +01:00
global[definition.globalName] = instance.model(definition.globalName, collection.schema, definition.collectionName);
2017-11-15 16:59:12 +01:00
} else {
2017-12-18 14:07:35 +01:00
instance.model(definition.globalName, collection.schema, definition.collectionName);
2017-11-15 16:59:12 +01:00
}
// Expose ORM functions through the `target` object.
target[model] = _.assign(instance.model(definition.globalName), target[model]);
// Push model to strapi global variables.
2017-11-15 16:59:12 +01:00
collection = instance.model(definition.globalName, collection.schema);
// Push attributes to be aware of model schema.
target[model]._attributes = definition.attributes;
} catch (err) {
strapi.log.error('Impossible to register the `' + model + '` model.');
strapi.log.error(err);
strapi.stop();
}
});
});
// Parse every registered model.
_.forEach(models, (definition, model) => {
definition.globalName = _.upperFirst(_.camelCase(definition.globalId));
// Make sure the model has a connection.
// If not, use the default connection.
if (_.isEmpty(definition.connection)) {
2017-11-28 14:28:30 +01:00
definition.connection = strapi.config.currentEnvironment.database.defaultConnection;
}
// Make sure this connection exists.
if (!_.has(strapi.config.connections, definition.connection)) {
strapi.log.error('The connection `' + definition.connection + '` specified in the `' + model + '` model does not exist.');
strapi.stop();
}
2016-08-10 11:00:56 +02:00
// Add some informations about ORM & client connection
definition.orm = 'mongoose';
definition.client = _.get(strapi.config.connections[definition.connection], 'client');
2016-07-12 11:15:01 +02:00
2017-11-15 16:59:12 +01:00
// Register the final model for Mongoose.
definition.loadedModel = _.cloneDeep(definition.attributes);
// Initialize the global variable with the
// capitalized model name.
2017-11-15 16:59:12 +01:00
if (!plugin) {
global[definition.globalName] = {};
}
if (_.isEmpty(definition.attributes)) {
// Generate empty schema
_.set(strapi.config.hook.settings.mongoose, 'collections.' + mongooseUtils.toCollectionName(definition.globalName) + '.schema', new instance.Schema({}));
return loadedAttributes();
}
// Call this callback function after we are done parsing
// all attributes for relationships-- see below.
const done = _.after(_.size(definition.attributes), () => {
// Generate schema without virtual populate
_.set(strapi.config.hook.settings.mongoose, 'collections.' + mongooseUtils.toCollectionName(definition.globalName) + '.schema', new instance.Schema(_.omitBy(definition.loadedModel, model => {
return model.type === 'virtual';
})));
loadedAttributes();
});
// Add every relationships to the loaded model for Bookshelf.
// Basic attributes don't need this-- only relations.
_.forEach(definition.attributes, (details, name) => {
const verbose = _.get(utilsModels.getNature(details, name, undefined, model.toLowerCase()), 'verbose') || '';
// Build associations key
utilsModels.defineAssociations(model, definition, details, name);
if (_.isEmpty(verbose)) {
definition.loadedModel[name].type = utils(instance).convertType(details.type);
}
switch (verbose) {
case 'hasOne': {
const ref = details.plugin ? strapi.plugins[details.plugin].models[details.model].globalId : strapi.models[details.model].globalId;
definition.loadedModel[name] = {
type: instance.Schema.Types.ObjectId,
ref
};
break;
}
case 'hasMany': {
const FK = _.find(definition.associations, {alias: name});
const ref = details.plugin ? strapi.plugins[details.plugin].models[details.collection].globalId : strapi.models[details.collection].globalId;
if (FK) {
definition.loadedModel[name] = {
type: 'virtual',
ref,
via: FK.via,
justOne: false
};
// Set this info to be able to see if this field is a real database's field.
details.isVirtual = true;
} else {
definition.loadedModel[name] = [{
type: instance.Schema.Types.ObjectId,
ref
}];
}
break;
}
case 'belongsTo': {
const FK = _.find(definition.associations, {alias: name});
const ref = details.plugin ? strapi.plugins[details.plugin].models[details.model].globalId : strapi.models[details.model].globalId;
if (FK && FK.nature !== 'oneToOne' && FK.nature !== 'manyToOne' && FK.nature !== 'oneWay') {
definition.loadedModel[name] = {
type: 'virtual',
ref,
via: FK.via,
justOne: true
};
// Set this info to be able to see if this field is a real database's field.
details.isVirtual = true;
} else {
definition.loadedModel[name] = {
type: instance.Schema.Types.ObjectId,
ref
};
}
break;
}
case 'belongsToMany': {
const FK = _.find(definition.associations, {alias: name});
const ref = details.plugin ? strapi.plugins[details.plugin].models[details.collection].globalId : strapi.models[details.collection].globalId;
// One-side of the relationship has to be a virtual field to be bidirectional.
if ((FK && _.isUndefined(FK.via)) || details.dominant !== true) {
definition.loadedModel[name] = {
type: 'virtual',
ref,
via: FK.via
};
// Set this info to be able to see if this field is a real database's field.
details.isVirtual = true;
} else {
definition.loadedModel[name] = [{
type: instance.Schema.Types.ObjectId,
ref
}];
}
break;
}
default:
break;
}
done();
});
});
};
2017-12-11 12:29:05 +01:00
// Mount `./api` models.
mountModels(_.pickBy(strapi.models, { connection: connectionName }), strapi.models);
2017-12-11 12:29:05 +01:00
// Mount `./plugins` models.
_.forEach(strapi.plugins, (plugin, name) => {
2017-12-11 12:29:05 +01:00
mountModels(_.pickBy(strapi.plugins[name].models, { connection: connectionName }), plugin.models, name);
2016-07-12 11:15:01 +02:00
});
cb();
2016-07-12 11:15:01 +02:00
});
});
2017-09-12 17:58:31 +02:00
},
getQueryParams: (value, type, key) => {
const result = {};
switch (type) {
case '=':
result.key = `where.${key}`;
result.value = value;
break;
case '_ne':
result.key = `where.${key}.$ne`;
result.value = value;
break;
case '_lt':
result.key = `where.${key}.$lt`;
result.value = value;
break;
case '_gt':
result.key = `where.${key}.$gt`;
result.value = value;
break;
case '_lte':
result.key = `where.${key}.$lte`;
result.value = value;
break;
case '_gte':
result.key = `where.${key}.$gte`;
result.value = value;
break;
case '_sort':
2017-09-13 12:18:54 +02:00
result.key = `sort`;
result.value = (_.toLower(value) === 'desc') ? '-' : '';
2017-09-13 12:18:54 +02:00
result.value += key;
2017-09-12 17:58:31 +02:00
break;
case '_start':
result.key = `start`;
result.value = parseFloat(value);
break;
case '_limit':
result.key = `limit`;
result.value = parseFloat(value);
break;
default:
result = undefined;
}
return result;
2017-10-25 16:24:35 +02:00
},
2017-11-01 15:16:28 +01:00
manageRelations: async function (model, params) {
2017-11-17 16:05:02 +01:00
const models = _.assign(_.clone(strapi.models), Object.keys(strapi.plugins).reduce((acc, current) => {
_.assign(acc, strapi.plugins[current].models);
return acc;
}, {}));
const Model = models[model];
2017-11-01 15:16:28 +01:00
2017-10-25 16:24:35 +02:00
const virtualFields = [];
const response = await Model
.findOne({
[Model.primaryKey]: params._id || params.id
})
.populate(_.keys(_.groupBy(_.reject(Model.associations, {autoPopulate: false}), 'alias')).join(' '));
// Only update fields which are on this document.
const values = params.parseRelationships === false ? params.values : Object.keys(JSON.parse(JSON.stringify(params.values))).reduce((acc, current) => {
const association = Model.associations.filter(x => x.alias === current)[0];
const details = Model._attributes[current];
if (_.get(Model._attributes, `${current}.isVirtual`) !== true && _.isUndefined(association)) {
acc[current] = params.values[current];
} else {
switch (association.nature) {
case 'oneToOne':
if (response[current] !== params.values[current]) {
const value = _.isNull(params.values[current]) ? response[current] : params.values;
const recordId = _.isNull(params.values[current]) ? value[Model.primaryKey] || value.id || value._id : value[current];
if (response[current] && _.isObject(response[current]) && response[current][Model.primaryKey] !== value[current]) {
virtualFields.push(
2017-11-01 15:16:28 +01:00
this.manageRelations(details.model || details.collection, {
_id: response[current][Model.primaryKey],
2017-10-25 16:24:35 +02:00
values: {
[details.via]: null
},
parseRelationships: false
})
);
}
// Remove previous relationship asynchronously if it exists.
virtualFields.push(
2017-10-25 17:38:48 +02:00
models[details.model || details.collection]
.findOne({ id : recordId })
.populate(_.keys(_.groupBy(_.reject(models[details.model || details.collection].associations, {autoPopulate: false}), 'alias')).join(' '))
2017-10-25 16:24:35 +02:00
.then(record => {
if (record && _.isObject(record[details.via]) && record[details.via][current] !== value[current]) {
2017-11-01 15:16:28 +01:00
return this.manageRelations(details.model || details.collection, {
2017-10-25 16:24:35 +02:00
id: record[details.via][Model.primaryKey] || record[details.via].id,
values: {
[current]: null
},
parseRelationships: false
});
}
return Promise.resolve();
})
);
// Update the record on the other side.
// When params.values[current] is null this means that we are removing the relation.
2017-11-01 15:16:28 +01:00
virtualFields.push(this.manageRelations(details.model || details.collection, {
2017-10-25 16:24:35 +02:00
id: recordId,
values: {
2017-10-25 17:38:48 +02:00
[details.via]: _.isNull(params.values[current]) ? null : value[Model.primaryKey] || params.id || params._id || value.id || value._id
2017-10-25 16:24:35 +02:00
},
parseRelationships: false
}));
acc[current] = _.isNull(params.values[current]) ? null : value[current];
}
break;
case 'oneToMany':
case 'manyToOne':
case 'manyToMany':
if (details.dominant === true) {
acc[current] = params.values[current];
} else if (response[current] && _.isArray(response[current]) && current !== 'id') {
// Records to add in the relation.
const toAdd = _.differenceWith(params.values[current], response[current], (a, b) =>
2017-10-25 16:39:28 +02:00
((typeof a === 'string') ? a : a[Model.primaryKey].toString()) === b[Model.primaryKey].toString()
2017-10-25 16:24:35 +02:00
);
// Records to remove in the relation.
const toRemove = _.differenceWith(response[current], params.values[current], (a, b) =>
2017-10-25 16:39:28 +02:00
a[Model.primaryKey].toString() === ((typeof b === 'string') ? b : b[Model.primaryKey].toString())
2017-10-25 16:24:35 +02:00
)
.filter(x => toAdd.find(y => x.id === y.id) === undefined);
// Push the work into the flow process.
toAdd.forEach(value => {
2017-10-25 16:39:28 +02:00
value = (typeof value === 'string') ? { _id: value } : value;
2017-10-25 16:24:35 +02:00
if (association.nature === 'manyToMany' && !_.isArray(params.values[Model.primaryKey])) {
value[details.via] = (value[details.via] || []).concat([response[Model.primaryKey]]);
} else {
value[details.via] = params[Model.primaryKey];
}
2017-11-01 15:16:28 +01:00
virtualFields.push(this.manageRelations(details.model || details.collection, {
2017-10-25 16:24:35 +02:00
id: value[Model.primaryKey] || value.id || value._id,
values: value,
foreignKey: current
}));
});
toRemove.forEach(value => {
2017-10-25 16:39:28 +02:00
value = (typeof value === 'string') ? { _id: value } : value;
2017-10-25 16:24:35 +02:00
if (association.nature === 'manyToMany' && !_.isArray(params.values[Model.primaryKey])) {
value[details.via] = value[details.via].filter(x => x.toString() !== response[Model.primaryKey].toString());
} else {
value[details.via] = null;
}
2017-11-01 15:16:28 +01:00
virtualFields.push(this.manageRelations(details.model || details.collection, {
2017-10-25 16:24:35 +02:00
id: value[Model.primaryKey] || value.id || value._id,
values: value,
foreignKey: current
}));
});
} else if (_.get(Model._attributes, `${current}.isVirtual`) !== true) {
acc[current] = params.values[current];
}
break;
default:
}
}
return acc;
}, {});
virtualFields.push(Model
.update({
[Model.primaryKey]: params[Model.primaryKey] || params.id
}, values, {
strict: false
}));
// Update virtuals fields.
const process = await Promise.all(virtualFields);
return process[process.length - 1];
2016-07-12 11:15:01 +02:00
}
};
return hook;
};