2019-07-15 15:33:42 +02:00
|
|
|
'use strict';
|
|
|
|
/**
|
|
|
|
* Implementation of model queries for mongo
|
|
|
|
*/
|
|
|
|
|
|
|
|
const _ = require('lodash');
|
|
|
|
const {
|
|
|
|
convertRestQueryParams,
|
|
|
|
buildQuery,
|
|
|
|
models: modelUtils,
|
|
|
|
} = require('strapi-utils');
|
|
|
|
|
|
|
|
module.exports = ({ model, modelKey, strapi }) => {
|
|
|
|
const hasPK = obj => _.has(obj, model.primaryKey) || _.has(obj, 'id');
|
|
|
|
const getPK = obj =>
|
|
|
|
_.has(obj, model.primaryKey) ? obj[model.primaryKey] : obj.id;
|
|
|
|
|
|
|
|
const assocKeys = model.associations.map(ast => ast.alias);
|
|
|
|
const groupKeys = Object.keys(model.attributes).filter(key => {
|
|
|
|
return model.attributes[key].type === 'group';
|
|
|
|
});
|
|
|
|
const excludedKeys = assocKeys.concat(groupKeys);
|
|
|
|
|
|
|
|
const defaultPopulate = model.associations
|
|
|
|
.filter(ast => ast.autoPopulate !== false)
|
|
|
|
.map(ast => ast.alias);
|
|
|
|
|
|
|
|
const pickRelations = values => {
|
|
|
|
return _.pick(values, assocKeys);
|
|
|
|
};
|
|
|
|
|
|
|
|
const omitExernalValues = values => {
|
|
|
|
return _.omit(values, excludedKeys);
|
|
|
|
};
|
|
|
|
|
|
|
|
async function createGroups(entry, values) {
|
|
|
|
if (groupKeys.length === 0) return;
|
|
|
|
|
|
|
|
for (let key of groupKeys) {
|
|
|
|
const attr = model.attributes[key];
|
|
|
|
const { group, required = true, repeatable = true } = attr;
|
|
|
|
|
|
|
|
const groupModel = strapi.groups[group];
|
|
|
|
|
|
|
|
if (required === true && !_.has(values, key)) {
|
|
|
|
const err = new Error(`Group ${key} is required`);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_.has(values, key)) continue;
|
|
|
|
|
|
|
|
const groupValue = values[key];
|
|
|
|
|
|
|
|
if (repeatable === true) {
|
|
|
|
validateRepeatableInput(groupValue, { key, ...attr });
|
|
|
|
const groups = await Promise.all(
|
|
|
|
groupValue.map(value => groupModel.create(value))
|
|
|
|
);
|
|
|
|
|
|
|
|
const groupsArr = groups.map(group => ({
|
|
|
|
kind: groupModel.globalId,
|
|
|
|
ref: group,
|
|
|
|
}));
|
|
|
|
|
|
|
|
entry[key] = groupsArr;
|
|
|
|
await entry.save();
|
|
|
|
} else {
|
|
|
|
validateNonRepeatableInput(groupValue, { key, ...attr });
|
|
|
|
const group = await groupModel.create(groupValue);
|
|
|
|
entry[key] = [
|
|
|
|
{
|
|
|
|
kind: groupModel.globalId,
|
|
|
|
ref: group,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
await entry.save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updateGroups(entry, values) {
|
|
|
|
if (groupKeys.length === 0) return;
|
|
|
|
|
|
|
|
for (let key of groupKeys) {
|
|
|
|
// if key isn't present then don't change the current group data
|
|
|
|
if (!_.has(values, key)) continue;
|
|
|
|
|
|
|
|
const attr = model.attributes[key];
|
|
|
|
const { group, repeatable = true } = attr;
|
|
|
|
|
|
|
|
const groupModel = strapi.groups[group];
|
|
|
|
const groupValue = values[key];
|
|
|
|
|
|
|
|
const updateOCreateGroup = async value => {
|
|
|
|
// check if value has an id then update else create
|
|
|
|
if (hasPK(value)) {
|
|
|
|
return groupModel.findOneAndUpdate(
|
|
|
|
{
|
|
|
|
[model.primaryKey]: getPK(value),
|
|
|
|
},
|
|
|
|
value,
|
|
|
|
{ new: true }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return groupModel.create(value);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (repeatable === true) {
|
|
|
|
validateRepeatableInput(groupValue, { key, ...attr });
|
|
|
|
|
|
|
|
await deleteOldGroups(entry, groupValue, { key, groupModel });
|
|
|
|
|
|
|
|
const groups = await Promise.all(groupValue.map(updateOCreateGroup));
|
|
|
|
const groupsArr = groups.map(group => ({
|
|
|
|
kind: groupModel.globalId,
|
|
|
|
ref: group,
|
|
|
|
}));
|
|
|
|
|
|
|
|
entry[key] = groupsArr;
|
|
|
|
await entry.save();
|
|
|
|
} else {
|
|
|
|
validateNonRepeatableInput(groupValue, { key, ...attr });
|
|
|
|
|
|
|
|
await deleteOldGroups(entry, groupValue, { key, groupModel });
|
|
|
|
|
|
|
|
const group = await updateOCreateGroup(groupValue);
|
|
|
|
entry[key] = [
|
|
|
|
{
|
|
|
|
kind: groupModel.globalId,
|
|
|
|
ref: group,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
await entry.save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteOldGroups(entry, groupValue, { key, groupModel }) {
|
|
|
|
const groupArr = Array.isArray(groupValue) ? groupValue : [groupValue];
|
|
|
|
|
|
|
|
const idsToKeep = groupArr.filter(hasPK).map(getPK);
|
|
|
|
const allIds = await (entry[key] || [])
|
|
|
|
.filter(el => el.ref)
|
|
|
|
.map(el => el.ref._id);
|
|
|
|
|
|
|
|
// verify the provided ids are realted to this entity.
|
|
|
|
idsToKeep.forEach(id => {
|
|
|
|
if (allIds.findIndex(currentId => currentId.toString() === id) === -1) {
|
|
|
|
const err = new Error(
|
|
|
|
`Some of the provided groups in ${key} are not related to the entity`
|
|
|
|
);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const idsToDelete = allIds.reduce((acc, id) => {
|
|
|
|
if (idsToKeep.includes(id.toString())) return acc;
|
|
|
|
return acc.concat(id);
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
if (idsToDelete.length > 0) {
|
|
|
|
await groupModel.deleteMany({ [model.primaryKey]: { $in: idsToDelete } });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteGroups(entry) {
|
|
|
|
if (groupKeys.length === 0) return;
|
|
|
|
|
|
|
|
for (let key of groupKeys) {
|
|
|
|
const attr = model.attributes[key];
|
|
|
|
const { group } = attr;
|
|
|
|
const groupModel = strapi.groups[group];
|
|
|
|
|
|
|
|
if (Array.isArray(entry[key]) && entry[key].length > 0) {
|
|
|
|
await groupModel.deleteMany({
|
|
|
|
[model.primaryKey]: { $in: entry[key].map(el => el.ref) },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// public api
|
|
|
|
|
2019-07-16 21:24:09 +02:00
|
|
|
function find(params, populate) {
|
|
|
|
const populateOpt = populate || defaultPopulate;
|
2019-07-15 15:33:42 +02:00
|
|
|
|
2019-07-16 21:24:09 +02:00
|
|
|
const filters = convertRestQueryParams(params);
|
2019-07-15 15:33:42 +02:00
|
|
|
|
2019-07-16 21:24:09 +02:00
|
|
|
return buildQuery({
|
|
|
|
model,
|
|
|
|
filters,
|
|
|
|
populate: populateOpt,
|
|
|
|
});
|
|
|
|
}
|
2019-07-15 15:33:42 +02:00
|
|
|
|
2019-07-16 21:24:09 +02:00
|
|
|
function findOne(params, populate) {
|
|
|
|
const primaryKey = getPK(params);
|
2019-07-15 15:33:42 +02:00
|
|
|
|
2019-07-16 21:24:09 +02:00
|
|
|
if (primaryKey) {
|
|
|
|
params = {
|
|
|
|
[model.primaryKey]: primaryKey,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return model
|
|
|
|
.findOne(params)
|
|
|
|
.populate(populate || defaultPopulate)
|
|
|
|
.lean();
|
|
|
|
}
|
|
|
|
|
|
|
|
function count(params) {
|
|
|
|
const filters = convertRestQueryParams(params);
|
|
|
|
|
|
|
|
return buildQuery({
|
|
|
|
model,
|
|
|
|
filters: { where: filters.where },
|
|
|
|
}).count();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function create(values) {
|
|
|
|
// Extract values related to relational data.
|
|
|
|
const relations = pickRelations(values);
|
|
|
|
const data = omitExernalValues(values);
|
|
|
|
|
|
|
|
// Create entry with no-relational data.
|
|
|
|
const entry = await model.create(data);
|
|
|
|
|
|
|
|
await createGroups(entry, values);
|
|
|
|
|
|
|
|
// Create relational data and return the entry.
|
|
|
|
return model.updateRelations({
|
|
|
|
[model.primaryKey]: getPK(entry),
|
|
|
|
values: relations,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function update(params, values) {
|
|
|
|
const primaryKey = getPK(params);
|
|
|
|
|
|
|
|
if (primaryKey) {
|
|
|
|
params = {
|
|
|
|
[model.primaryKey]: primaryKey,
|
|
|
|
};
|
|
|
|
}
|
2019-07-15 15:33:42 +02:00
|
|
|
|
2019-07-16 21:24:09 +02:00
|
|
|
const entry = await model.findOne(params);
|
|
|
|
|
|
|
|
if (!entry) {
|
|
|
|
const err = new Error('entry.notFound');
|
|
|
|
err.status = 404;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract values related to relational data.
|
|
|
|
const relations = pickRelations(values);
|
|
|
|
const data = omitExernalValues(values);
|
|
|
|
|
|
|
|
// Update entry with no-relational data.
|
|
|
|
await entry.updateOne(data);
|
|
|
|
await updateGroups(entry, values);
|
|
|
|
|
|
|
|
// Update relational data and return the entry.
|
|
|
|
return model.updateRelations(Object.assign(params, { values: relations }));
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteMany(params) {}
|
|
|
|
|
|
|
|
async function deleteOne(params) {
|
|
|
|
const entry = await model
|
|
|
|
.findOneAndRemove({ [model.primaryKey]: getPK(params) })
|
|
|
|
.populate(defaultPopulate);
|
|
|
|
|
|
|
|
if (!entry) {
|
|
|
|
const err = new Error('entry.notFound');
|
|
|
|
err.status = 404;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
await deleteGroups(entry);
|
|
|
|
|
|
|
|
await Promise.all(
|
|
|
|
model.associations.map(async association => {
|
|
|
|
if (
|
|
|
|
!association.via ||
|
|
|
|
!entry[model.primaryKey] ||
|
|
|
|
association.dominant
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const search =
|
|
|
|
_.endsWith(association.nature, 'One') ||
|
|
|
|
association.nature === 'oneToMany'
|
|
|
|
? { [association.via]: entry[model.primaryKey] }
|
|
|
|
: { [association.via]: { $in: [entry[model.primaryKey]] } };
|
|
|
|
const update =
|
|
|
|
_.endsWith(association.nature, 'One') ||
|
|
|
|
association.nature === 'oneToMany'
|
|
|
|
? { [association.via]: null }
|
|
|
|
: { $pull: { [association.via]: entry[model.primaryKey] } };
|
|
|
|
|
|
|
|
// Retrieve model.
|
|
|
|
const assocModel = association.plugin
|
|
|
|
? strapi.plugins[association.plugin].models[
|
|
|
|
association.model || association.collection
|
|
|
|
]
|
|
|
|
: strapi.models[association.model || association.collection];
|
|
|
|
|
|
|
|
return assocModel.update(search, update, { multi: true });
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
function search(params, populate) {
|
|
|
|
// Convert `params` object to filters compatible with Mongo.
|
|
|
|
const filters = modelUtils.convertParams(modelKey, params);
|
|
|
|
|
|
|
|
const $or = buildSearchOr(model, params._q);
|
|
|
|
|
|
|
|
return model
|
|
|
|
.find({ $or })
|
|
|
|
.sort(filters.sort)
|
|
|
|
.skip(filters.start)
|
|
|
|
.limit(filters.limit)
|
|
|
|
.populate(populate || defaultPopulate);
|
|
|
|
}
|
|
|
|
|
|
|
|
function countSearch(params) {
|
|
|
|
const $or = buildSearchOr(model, params._q);
|
|
|
|
return model.find({ $or }).countDocuments();
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
findOne,
|
|
|
|
find,
|
|
|
|
create,
|
|
|
|
update,
|
|
|
|
delete: deleteMany,
|
|
|
|
count,
|
|
|
|
search,
|
|
|
|
countSearch,
|
2019-07-15 15:33:42 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const buildSearchOr = (model, query) => {
|
|
|
|
return Object.keys(model.attributes).reduce((acc, curr) => {
|
|
|
|
switch (model.attributes[curr].type) {
|
|
|
|
case 'integer':
|
|
|
|
case 'float':
|
|
|
|
case 'decimal':
|
|
|
|
if (!_.isNaN(_.toNumber(query))) {
|
|
|
|
return acc.concat({ [curr]: query });
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
case 'string':
|
|
|
|
case 'text':
|
|
|
|
case 'password':
|
|
|
|
return acc.concat({ [curr]: { $regex: query, $options: 'i' } });
|
|
|
|
case 'boolean':
|
|
|
|
if (query === 'true' || query === 'false') {
|
|
|
|
return acc.concat({ [curr]: query === 'true' });
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
default:
|
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
};
|
|
|
|
|
|
|
|
function validateRepeatableInput(value, { key, min, max }) {
|
|
|
|
if (!Array.isArray(value)) {
|
|
|
|
const err = new Error(`Group ${key} is repetable. Expected an array`);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (min && value.length < min) {
|
|
|
|
const err = new Error(`Group ${key} must contain at least ${min} items`);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
if (max && value.length > max) {
|
|
|
|
const err = new Error(`Group ${key} must contain at most ${max} items`);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateNonRepeatableInput(value, { key, required }) {
|
|
|
|
if (typeof value !== 'object') {
|
|
|
|
const err = new Error(`Group ${key} should be an object`);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (required === true && value === null) {
|
|
|
|
const err = new Error(`Group ${key} is required`);
|
|
|
|
err.status = 400;
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|