2022-04-28 13:29:04 +02:00

127 lines
2.9 KiB
JavaScript

'use strict';
const _ = require('lodash');
const { omit, isArray, isPlainObject } = require('lodash/fp');
const utils = require('@strapi/utils');
const { getService } = require('../utils');
const validateUploadBody = require('./validation/content-api/upload');
const { sanitize } = utils;
const { ValidationError } = utils.errors;
const removeFolderPath = data => {
if (isArray(data)) return data.map(omit('folderPath'));
if (isPlainObject(data)) return omit('folderPath', data);
return data;
};
const sanitizeOutput = (data, ctx) => {
const schema = strapi.getModel('plugin::upload.file');
const { auth } = ctx.state;
return sanitize.contentAPI.output(removeFolderPath(data), schema, { auth });
};
module.exports = {
async find(ctx) {
const files = await getService('upload').findMany(ctx.query);
ctx.body = await sanitizeOutput(files, ctx);
},
async findOne(ctx) {
const {
params: { id },
} = ctx;
const file = await getService('upload').findOne(id);
if (!file) {
return ctx.notFound('file.notFound');
}
ctx.body = await sanitizeOutput(file, ctx);
},
async count(ctx) {
ctx.body = await getService('upload').count(ctx.query);
},
async destroy(ctx) {
const {
params: { id },
} = ctx;
const file = await getService('upload').findOne(id);
if (!file) {
return ctx.notFound('file.notFound');
}
await getService('upload').remove(file);
ctx.body = await sanitizeOutput(file, ctx);
},
async updateFileInfo(ctx) {
const {
query: { id },
request: { body },
} = ctx;
const data = await validateUploadBody(body);
const result = await getService('upload').updateFileInfo(id, data.fileInfo);
ctx.body = await sanitizeOutput(result, ctx);
},
async replaceFile(ctx) {
const {
query: { id },
request: { body, files: { files } = {} },
} = ctx;
// cannot replace with more than one file
if (Array.isArray(files)) {
throw new ValidationError('Cannot replace a file with multiple ones');
}
const replacedFiles = await getService('upload').replace(id, {
data: await validateUploadBody(body),
file: files,
});
ctx.body = await sanitizeOutput(replacedFiles, ctx);
},
async uploadFiles(ctx) {
const {
request: { body, files: { files } = {} },
} = ctx;
const uploadedFiles = await getService('upload').upload({
data: await validateUploadBody(body),
files,
});
ctx.body = await sanitizeOutput(uploadedFiles, ctx);
},
async upload(ctx) {
const {
query: { id },
request: { files: { files } = {} },
} = ctx;
if (id && (_.isEmpty(files) || files.size === 0)) {
return this.updateFileInfo(ctx);
}
if (_.isEmpty(files) || files.size === 0) {
throw new ValidationError('Files are empty');
}
await (id ? this.replaceFile : this.uploadFiles)(ctx);
},
};