mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00
302 lines
11 KiB
JavaScript
Executable File
302 lines
11 KiB
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
|
|
// Public node modules.
|
|
const _ = require('lodash');
|
|
const Mongoose = require('mongoose').Mongoose;
|
|
const mongooseUtils = require('mongoose/lib/utils');
|
|
|
|
// Local helpers.
|
|
const utils = require('./utils/');
|
|
|
|
// Strapi helpers for models.
|
|
const { models: utilsModels, logger } = require('strapi-utils');
|
|
|
|
/**
|
|
* Bookshelf hook
|
|
*/
|
|
|
|
module.exports = function (strapi) {
|
|
const hook = {
|
|
|
|
/**
|
|
* Default options
|
|
*/
|
|
|
|
defaults: {
|
|
defaultConnection: 'default',
|
|
host: 'localhost',
|
|
port: 27017,
|
|
database: 'strapi'
|
|
},
|
|
|
|
/**
|
|
* Initialize the hook
|
|
*/
|
|
|
|
initialize: cb => {
|
|
let globalName;
|
|
|
|
// Return callback if there is no model
|
|
if (_.isEmpty(strapi.models) || !_.pickBy(strapi.config.connections, {connector: 'strapi-mongoose'})) {
|
|
return cb();
|
|
}
|
|
|
|
_.forEach(_.pickBy(strapi.config.connections, {connector: 'strapi-mongoose'}), (connection, connectionName) => {
|
|
const instance = new Mongoose();
|
|
const {host, port, username, password, database} = _.defaults(connection.settings, strapi.config.hook.settings.mongoose);
|
|
|
|
// Connect to mongo database
|
|
if (_.isEmpty(username) || _.isEmpty(password)) {
|
|
instance.connect(`mongodb://${host}:${port}/${database}`, {
|
|
useMongoClient: true
|
|
});
|
|
} else {
|
|
instance.connect(`mongodb://${username}:${password}@${host}:${port}/${database}`, {
|
|
useMongoClient: true
|
|
});
|
|
}
|
|
|
|
// 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', () => {
|
|
// Select models concerned by this connection
|
|
const models = _.pickBy(strapi.models, { connection: connectionName });
|
|
|
|
// Return callback if there is no model
|
|
if (_.isEmpty(models)) {
|
|
return cb();
|
|
}
|
|
|
|
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',
|
|
remove: 'beforeDestroy',
|
|
update: 'beforeUpdate',
|
|
find: 'beforeFetch',
|
|
save: 'beforeSave'
|
|
};
|
|
|
|
_.forEach(preLifecycle, (fn, key) => {
|
|
if (_.isFunction(strapi.models[model.toLowerCase()][fn])) {
|
|
collection.schema.pre(key, strapi.models[model.toLowerCase()][fn]);
|
|
}
|
|
});
|
|
|
|
const postLifecycle = {
|
|
validate: 'afterCreate',
|
|
remove: 'afterDestroy',
|
|
update: 'afterUpdate',
|
|
find: 'afterFetch',
|
|
save: 'afterSave'
|
|
};
|
|
|
|
_.forEach(postLifecycle, (fn, key) => {
|
|
if (_.isFunction(strapi.models[model.toLowerCase()][fn])) {
|
|
collection.schema.post(key, strapi.models[model.toLowerCase()][fn]);
|
|
}
|
|
});
|
|
|
|
// 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
|
|
});
|
|
|
|
global[definition.globalName] = instance.model(definition.globalName, collection.schema);
|
|
|
|
// Expose ORM functions through the `strapi.models` object.
|
|
strapi.models[model] = _.assign(instance.model(definition.globalName), strapi.models[model]);
|
|
|
|
// Push model to strapi global variables.
|
|
collection = global[definition.globalName];
|
|
|
|
// Push attributes to be aware of model schema.
|
|
strapi.models[model]._attributes = definition.attributes;
|
|
} catch (err) {
|
|
strapi.log.error('Impossible to register the `' + model + '` model.');
|
|
strapi.log.error(err);
|
|
strapi.stop();
|
|
}
|
|
});
|
|
|
|
cb();
|
|
});
|
|
|
|
// 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)) {
|
|
definition.connection = strapi.config.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();
|
|
}
|
|
|
|
// Add some informations about ORM & client connection
|
|
definition.orm = 'mongoose';
|
|
definition.client = _.get(strapi.config.connections[definition.connection], 'client');
|
|
|
|
// Register the final model for Bookshelf.
|
|
definition.loadedModel = _.cloneDeep(definition.attributes);
|
|
|
|
// Initialize the global variable with the
|
|
// capitalized model name.
|
|
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);
|
|
}
|
|
|
|
let FK;
|
|
|
|
switch (verbose) {
|
|
case 'hasOne':
|
|
definition.loadedModel[name] = {
|
|
type: instance.Schema.Types.ObjectId,
|
|
ref: _.capitalize(details.model)
|
|
};
|
|
break;
|
|
case 'hasMany':
|
|
FK = _.find(definition.associations, {alias: name});
|
|
|
|
if (FK) {
|
|
definition.loadedModel[name] = {
|
|
type: 'virtual',
|
|
ref: _.capitalize(details.collection),
|
|
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: _.capitalize(details.collection)
|
|
}];
|
|
}
|
|
break;
|
|
case 'belongsTo':
|
|
FK = _.find(definition.associations, {alias: name});
|
|
|
|
if (FK && FK.nature !== 'oneToOne' && FK.nature !== 'oneToMany') {
|
|
definition.loadedModel[name] = {
|
|
type: 'virtual',
|
|
ref: _.capitalize(details.model),
|
|
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: _.capitalize(details.model)
|
|
};
|
|
}
|
|
|
|
break;
|
|
case 'belongsToMany':
|
|
FK = _.find(definition.associations, {alias: name});
|
|
|
|
// 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: _.capitalize(FK.collection),
|
|
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: _.capitalize(details.collection)
|
|
}];
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
return hook;
|
|
};
|