2021-10-19 19:11:13 +03:00
|
|
|
import $ from 'cafy';
|
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { createImportBlockingJob } from '@/queue/index';
|
2021-11-12 12:47:04 +02:00
|
|
|
import ms from 'ms';
|
2021-10-19 19:11:13 +03:00
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { DriveFiles } from '@/models/index';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
secure: true,
|
|
|
|
requireCredential: true as const,
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 1,
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
fileId: {
|
|
|
|
validator: $.type(ID),
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-10-19 19:11:13 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'NO_SUCH_FILE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'ebb53e5f-6574-9c0c-0b92-7ca6def56d7e',
|
2021-10-19 19:11:13 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
unexpectedFileType: {
|
|
|
|
message: 'We need csv file.',
|
|
|
|
code: 'UNEXPECTED_FILE_TYPE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'b6fab7d6-d945-d67c-dfdb-32da1cd12cfe',
|
2021-10-19 19:11:13 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
tooBigFile: {
|
|
|
|
message: 'That file is too big.',
|
|
|
|
code: 'TOO_BIG_FILE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'b7fbf0b1-aeef-3b21-29ef-fadd4cb72ccf',
|
2021-10-19 19:11:13 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
emptyFile: {
|
|
|
|
message: 'That file is empty.',
|
|
|
|
code: 'EMPTY_FILE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '6f3a4dcc-f060-a707-4950-806fbdbe60d6',
|
2021-10-19 19:11:13 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-10-19 19:11:13 +03:00
|
|
|
};
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2021-10-19 19:11:13 +03:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const file = await DriveFiles.findOne(ps.fileId);
|
|
|
|
|
|
|
|
if (file == null) throw new ApiError(meta.errors.noSuchFile);
|
|
|
|
//if (!file.type.endsWith('/csv')) throw new ApiError(meta.errors.unexpectedFileType);
|
|
|
|
if (file.size > 50000) throw new ApiError(meta.errors.tooBigFile);
|
|
|
|
if (file.size === 0) throw new ApiError(meta.errors.emptyFile);
|
|
|
|
|
|
|
|
createImportBlockingJob(user, file.id);
|
|
|
|
});
|