2020-10-27 11:27:17 +01:00
|
|
|
'use strict';
|
|
|
|
|
2017-11-29 15:00:50 +01:00
|
|
|
const _ = require('lodash');
|
|
|
|
|
|
|
|
module.exports = async (ctx, next) => {
|
2019-08-21 11:05:33 +02:00
|
|
|
const { model } = ctx.params;
|
2017-11-29 15:00:50 +01:00
|
|
|
|
2019-11-15 11:49:32 +01:00
|
|
|
const ct = strapi.contentTypes[model];
|
|
|
|
|
2019-11-26 17:18:43 +01:00
|
|
|
if (!ct) {
|
|
|
|
return ctx.send({ error: 'contentType.notFound' }, 404);
|
|
|
|
}
|
|
|
|
|
2020-10-27 11:27:17 +01:00
|
|
|
const target = ct.plugin === 'admin' ? strapi.admin : strapi.plugins[ct.plugin];
|
2019-11-15 11:49:32 +01:00
|
|
|
|
2020-10-27 11:27:17 +01:00
|
|
|
const actionPath = ['config', 'layout', ct.modelName, 'actions', ctx.request.route.action];
|
2019-11-15 11:49:32 +01:00
|
|
|
|
|
|
|
if (_.has(target, actionPath)) {
|
|
|
|
const [controller, action] = _.get(target, actionPath, []).split('.');
|
2017-11-29 15:00:50 +01:00
|
|
|
|
2017-11-29 16:10:13 +01:00
|
|
|
if (controller && action) {
|
2019-04-09 12:09:03 +02:00
|
|
|
return await target.controllers[controller.toLowerCase()][action](ctx);
|
2017-11-29 16:10:13 +01:00
|
|
|
}
|
2017-11-29 15:00:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
await next();
|
|
|
|
};
|