mirror of
https://github.com/strapi/strapi.git
synced 2025-07-16 13:32:05 +00:00
126 lines
3.5 KiB
JavaScript
Executable File
126 lines
3.5 KiB
JavaScript
Executable File
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
|
|
/**
|
|
* A set of functions called "actions" for `ContentManager`
|
|
*/
|
|
|
|
module.exports = {
|
|
layout: async (ctx) => {
|
|
const {source} = ctx.query;
|
|
|
|
return ctx.send(_.get(strapi.plugins, [source, 'config', 'layout'], {}));
|
|
},
|
|
|
|
models: async ctx => {
|
|
// const pickData = (model) => _.pick(model, [
|
|
// 'info',
|
|
// 'connection',
|
|
// 'collectionName',
|
|
// 'attributes',
|
|
// 'identity',
|
|
// 'globalId',
|
|
// 'globalName',
|
|
// 'orm',
|
|
// 'loadedModel',
|
|
// 'primaryKey',
|
|
// 'associations'
|
|
// ]);
|
|
|
|
// const models = _.mapValues(strapi.models, pickData);
|
|
// delete models['core_store'];
|
|
|
|
// ctx.body = {
|
|
// models,
|
|
// plugins: Object.keys(strapi.plugins).reduce((acc, current) => {
|
|
// acc[current] = {
|
|
// models: _.mapValues(strapi.plugins[current].models, pickData)
|
|
// };
|
|
|
|
// return acc;
|
|
// }, {})
|
|
// };
|
|
const pluginsStore = strapi.store({
|
|
environment: '',
|
|
type: 'plugin',
|
|
name: 'content-manager',
|
|
});
|
|
|
|
const models = await pluginsStore.get({ key: 'schema' });
|
|
ctx.body = {
|
|
models,
|
|
};
|
|
},
|
|
|
|
find: async ctx => {
|
|
// Search
|
|
if (!_.isEmpty(ctx.request.query._q)) {
|
|
ctx.body = await strapi.plugins['content-manager'].services['contentmanager'].search(ctx.params, ctx.request.query);
|
|
|
|
return;
|
|
}
|
|
|
|
// Default list with filters or not.
|
|
ctx.body = await strapi.plugins['content-manager'].services['contentmanager'].fetchAll(ctx.params, ctx.request.query);
|
|
},
|
|
|
|
count: async ctx => {
|
|
// Search
|
|
const count = !_.isEmpty(ctx.request.query._q)
|
|
? await strapi.plugins['content-manager'].services['contentmanager'].countSearch(ctx.params, ctx.request.query)
|
|
: await strapi.plugins['content-manager'].services['contentmanager'].count(ctx.params, ctx.request.query);
|
|
|
|
ctx.body = {
|
|
count: _.isNumber(count) ? count : _.toNumber(count)
|
|
};
|
|
},
|
|
|
|
findOne: async ctx => {
|
|
const { source } = ctx.request.query;
|
|
|
|
// Find an entry using `queries` system
|
|
const entry = await strapi.plugins['content-manager'].services['contentmanager'].fetch(ctx.params, source, null, false);
|
|
|
|
// Entry not found
|
|
if (!entry) {
|
|
return (ctx.notFound('Entry not found'));
|
|
}
|
|
|
|
ctx.body = entry;
|
|
},
|
|
|
|
create: async ctx => {
|
|
const { source } = ctx.request.query;
|
|
|
|
try {
|
|
// Create an entry using `queries` system
|
|
ctx.body = await strapi.plugins['content-manager'].services['contentmanager'].add(ctx.params, ctx.request.body, source);
|
|
} catch(error) {
|
|
strapi.log.error(error);
|
|
ctx.badRequest(null, ctx.request.admin ? [{ messages: [{ id: error.message, field: error.field }] }] : error.message);
|
|
}
|
|
},
|
|
|
|
update: async ctx => {
|
|
const { source } = ctx.request.query;
|
|
|
|
try {
|
|
// Return the last one which is the current model.
|
|
ctx.body = await strapi.plugins['content-manager'].services['contentmanager'].edit(ctx.params, ctx.request.body, source);
|
|
} catch(error) {
|
|
// TODO handle error update
|
|
strapi.log.error(error);
|
|
ctx.badRequest(null, ctx.request.admin ? [{ messages: [{ id: error.message, field: error.field }] }] : error.message);
|
|
}
|
|
},
|
|
|
|
delete: async ctx => {
|
|
ctx.body = await strapi.plugins['content-manager'].services['contentmanager'].delete(ctx.params, ctx.request.query);
|
|
},
|
|
|
|
deleteAll: async ctx => {
|
|
ctx.body = await strapi.plugins['content-manager'].services['contentmanager'].deleteMany(ctx.params, ctx.request.query);
|
|
}
|
|
};
|