mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 07:02:26 +00:00
101 lines
2.4 KiB
JavaScript
101 lines
2.4 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Upload.js controller
|
|
*
|
|
*/
|
|
|
|
const _ = require('lodash');
|
|
const apiUploadController = require('./upload/api');
|
|
const adminUploadController = require('./upload/admin');
|
|
|
|
const resolveController = ctx => {
|
|
const {
|
|
state: { isAuthenticatedAdmin },
|
|
} = ctx;
|
|
|
|
return isAuthenticatedAdmin ? adminUploadController : apiUploadController;
|
|
};
|
|
|
|
const resolveControllerMethod = method => ctx => {
|
|
const controller = resolveController(ctx);
|
|
const callbackFn = controller[method];
|
|
|
|
if (!_.isFunction(callbackFn)) {
|
|
return ctx.notFound();
|
|
}
|
|
|
|
return callbackFn(ctx);
|
|
};
|
|
|
|
module.exports = {
|
|
find: resolveControllerMethod('find'),
|
|
findOne: resolveControllerMethod('findOne'),
|
|
count: resolveControllerMethod('count'),
|
|
destroy: resolveControllerMethod('destroy'),
|
|
updateSettings: resolveControllerMethod('updateSettings'),
|
|
getSettings: resolveControllerMethod('getSettings'),
|
|
|
|
async upload(ctx) {
|
|
const isUploadDisabled = _.get(strapi.plugins, 'upload.config.enabled', true) === false;
|
|
|
|
if (isUploadDisabled) {
|
|
throw strapi.errors.badRequest(null, {
|
|
errors: [{ id: 'Upload.status.disabled', message: 'File upload is disabled' }],
|
|
});
|
|
}
|
|
|
|
const {
|
|
query: { id },
|
|
request: { files: { files } = {} },
|
|
} = ctx;
|
|
const controller = resolveController(ctx);
|
|
|
|
if (id && (_.isEmpty(files) || files.size === 0)) {
|
|
return controller.updateFileInfo(ctx);
|
|
}
|
|
|
|
if (_.isEmpty(files) || files.size === 0) {
|
|
throw strapi.errors.badRequest(null, {
|
|
errors: [{ id: 'Upload.status.empty', message: 'Files are empty' }],
|
|
});
|
|
}
|
|
|
|
await (id ? controller.replaceFile : controller.uploadFiles)(ctx);
|
|
},
|
|
|
|
async search(ctx) {
|
|
const { id } = ctx.params;
|
|
|
|
ctx.body = await strapi.query('file', 'upload').custom(searchQueries)({
|
|
id,
|
|
});
|
|
},
|
|
};
|
|
|
|
const searchQueries = {
|
|
bookshelf({ model }) {
|
|
return ({ id }) => {
|
|
return model
|
|
.query(qb => {
|
|
qb.whereRaw('LOWER(hash) LIKE ?', [`%${id}%`]).orWhereRaw('LOWER(name) LIKE ?', [
|
|
`%${id}%`,
|
|
]);
|
|
})
|
|
.fetchAll()
|
|
.then(results => results.toJSON());
|
|
};
|
|
},
|
|
mongoose({ model }) {
|
|
return ({ id }) => {
|
|
const re = new RegExp(id, 'i');
|
|
|
|
return model
|
|
.find({
|
|
$or: [{ hash: re }, { name: re }],
|
|
})
|
|
.lean();
|
|
};
|
|
},
|
|
};
|