mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import ServerError from '@/config/util/ServerError';
|
|
import {
|
|
addBeerImagesService,
|
|
deleteBeerImageService,
|
|
} from '@/services/images/beer-image';
|
|
import APIResponseValidationSchema from '@/validation/APIResponseValidationSchema';
|
|
import { NextApiResponse } from 'next';
|
|
import { z } from 'zod';
|
|
import { DeleteImageRequest, UploadImagesRequest } from '../types';
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export const processBeerImageData = async (
|
|
req: UploadImagesRequest,
|
|
res: NextApiResponse<z.infer<typeof APIResponseValidationSchema>>,
|
|
) => {
|
|
const { files, user, body } = req;
|
|
|
|
if (!files || !files.length) {
|
|
throw new ServerError('No images uploaded', 400);
|
|
}
|
|
|
|
const beerImages = await addBeerImagesService({
|
|
beerPostId: req.query.postId,
|
|
userId: user!.id,
|
|
body,
|
|
files,
|
|
});
|
|
|
|
res.status(200).json({
|
|
success: true,
|
|
message: `Successfully uploaded ${beerImages.length} image${
|
|
beerImages.length > 1 ? 's' : ''
|
|
}`,
|
|
statusCode: 200,
|
|
});
|
|
};
|
|
|
|
export const deleteBeerImageData = async (
|
|
req: DeleteImageRequest,
|
|
res: NextApiResponse<z.infer<typeof APIResponseValidationSchema>>,
|
|
) => {
|
|
const { id } = req.query;
|
|
|
|
await deleteBeerImageService({ beerImageId: id });
|
|
|
|
res.status(200).json({
|
|
success: true,
|
|
message: `Successfully deleted image with id ${id}`,
|
|
statusCode: 200,
|
|
});
|
|
};
|