mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 15:36:59 +00:00
150 lines
3.6 KiB
JavaScript
150 lines
3.6 KiB
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
const utils = require('@strapi/utils');
|
|
const { getService } = require('../utils');
|
|
const { FILE_MODEL_UID } = require('../constants');
|
|
const validateUploadBody = require('./validation/content-api/upload');
|
|
|
|
const { sanitize, validate } = utils;
|
|
const { ValidationError } = utils.errors;
|
|
|
|
const sanitizeOutput = (data, ctx) => {
|
|
const schema = strapi.getModel(FILE_MODEL_UID);
|
|
const { auth } = ctx.state;
|
|
|
|
return sanitize.contentAPI.output(data, schema, { auth });
|
|
};
|
|
|
|
const validateQuery = (data, ctx) => {
|
|
const schema = strapi.getModel(FILE_MODEL_UID);
|
|
const { auth } = ctx.state;
|
|
|
|
return validate.contentAPI.query(data, schema, { auth });
|
|
};
|
|
|
|
const sanitizeQuery = (data, ctx) => {
|
|
const schema = strapi.getModel(FILE_MODEL_UID);
|
|
const { auth } = ctx.state;
|
|
|
|
return sanitize.contentAPI.query(data, schema, { auth });
|
|
};
|
|
|
|
module.exports = {
|
|
async find(ctx) {
|
|
await validateQuery(ctx.query, ctx);
|
|
const sanitizedQuery = await sanitizeQuery(ctx.query, ctx);
|
|
|
|
const files = await getService('upload').findMany(sanitizedQuery);
|
|
|
|
ctx.body = await sanitizeOutput(files, ctx);
|
|
},
|
|
|
|
async findOne(ctx) {
|
|
const {
|
|
params: { id },
|
|
} = ctx;
|
|
|
|
await validateQuery(ctx.query, ctx);
|
|
const sanitizedQuery = await sanitizeQuery(ctx.query, ctx);
|
|
|
|
const file = await getService('upload').findOne(id, sanitizedQuery.populate);
|
|
|
|
if (!file) {
|
|
return ctx.notFound('file.notFound');
|
|
}
|
|
|
|
ctx.body = await sanitizeOutput(file, ctx);
|
|
},
|
|
|
|
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 data = await validateUploadBody(body, Array.isArray(files));
|
|
|
|
const apiUploadFolderService = getService('api-upload-folder');
|
|
|
|
const apiUploadFolder = await apiUploadFolderService.getAPIUploadFolder();
|
|
|
|
if (Array.isArray(files)) {
|
|
data.fileInfo = data.fileInfo || [];
|
|
data.fileInfo = files.map((_f, i) => ({ ...data.fileInfo[i], folder: apiUploadFolder.id }));
|
|
} else {
|
|
data.fileInfo = { ...data.fileInfo, folder: apiUploadFolder.id };
|
|
}
|
|
|
|
const uploadedFiles = await getService('upload').upload({
|
|
data,
|
|
files,
|
|
});
|
|
|
|
ctx.body = await sanitizeOutput(uploadedFiles, ctx);
|
|
},
|
|
|
|
async upload(ctx) {
|
|
const {
|
|
query: { id },
|
|
request: { files: { files } = {} },
|
|
} = ctx;
|
|
|
|
if (_.isEmpty(files) || files.size === 0) {
|
|
if (id) {
|
|
return this.updateFileInfo(ctx);
|
|
}
|
|
|
|
throw new ValidationError('Files are empty');
|
|
}
|
|
|
|
await (id ? this.replaceFile : this.uploadFiles)(ctx);
|
|
},
|
|
};
|