import { Body, Controller, Delete, Get, HttpCode, HttpStatus, Param, Post, Put } from '@nestjs/common'; import { ApiTags } from '@nestjs/swagger'; import { BulkIdResponseDto, BulkIdsDto } from 'src/dtos/asset-ids.response.dto'; import { AuthDto } from 'src/dtos/auth.dto'; import { MemoryCreateDto, MemoryResponseDto, MemoryUpdateDto } from 'src/dtos/memory.dto'; import { Auth, Authenticated } from 'src/middleware/auth.guard'; import { MemoryService } from 'src/services/memory.service'; import { UUIDParamDto } from 'src/validation'; @ApiTags('Memories') @Controller('memories') export class MemoryController { constructor(private service: MemoryService) {} @Get() @Authenticated() searchMemories(@Auth() auth: AuthDto): Promise { return this.service.search(auth); } @Post() @Authenticated() createMemory(@Auth() auth: AuthDto, @Body() dto: MemoryCreateDto): Promise { return this.service.create(auth, dto); } @Get(':id') @Authenticated() getMemory(@Auth() auth: AuthDto, @Param() { id }: UUIDParamDto): Promise { return this.service.get(auth, id); } @Put(':id') @Authenticated() updateMemory( @Auth() auth: AuthDto, @Param() { id }: UUIDParamDto, @Body() dto: MemoryUpdateDto, ): Promise { return this.service.update(auth, id, dto); } @Delete(':id') @HttpCode(HttpStatus.NO_CONTENT) @Authenticated() deleteMemory(@Auth() auth: AuthDto, @Param() { id }: UUIDParamDto): Promise { return this.service.remove(auth, id); } @Put(':id/assets') @Authenticated() addMemoryAssets( @Auth() auth: AuthDto, @Param() { id }: UUIDParamDto, @Body() dto: BulkIdsDto, ): Promise { return this.service.addAssets(auth, id, dto); } @Delete(':id/assets') @HttpCode(HttpStatus.OK) @Authenticated() removeMemoryAssets( @Auth() auth: AuthDto, @Body() dto: BulkIdsDto, @Param() { id }: UUIDParamDto, ): Promise { return this.service.removeAssets(auth, id, dto); } }