17 lines
535 B
TypeScript
17 lines
535 B
TypeScript
import type { TFunction } from 'i18next';
|
|
import { FileUploadError } from '../errors';
|
|
import saveBufferToFile from './saveBufferToFile';
|
|
import { FileToSave } from './types';
|
|
import { Payload } from '../payload';
|
|
|
|
export const uploadFiles = async (payload: Payload, files: FileToSave[], t: TFunction): Promise<void> => {
|
|
try {
|
|
await Promise.all(files.map(async ({ buffer, path }) => {
|
|
await saveBufferToFile(buffer, path);
|
|
}));
|
|
} catch (err) {
|
|
payload.logger.error(err);
|
|
throw new FileUploadError(t);
|
|
}
|
|
};
|