mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 05:16:47 +01:00
ef4a492cb1
move services
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { Body, Controller, Delete, Get, Param, Post, Put } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { APIKeyCreateDto, APIKeyCreateResponseDto, APIKeyResponseDto, APIKeyUpdateDto } from 'src/dtos/api-key.dto';
|
|
import { AuthDto } from 'src/dtos/auth.dto';
|
|
import { Auth, Authenticated } from 'src/middleware/auth.guard';
|
|
import { APIKeyService } from 'src/services/api-key.service';
|
|
import { UUIDParamDto } from 'src/validation';
|
|
|
|
@ApiTags('API Key')
|
|
@Controller('api-key')
|
|
@Authenticated()
|
|
export class APIKeyController {
|
|
constructor(private service: APIKeyService) {}
|
|
|
|
@Post()
|
|
createApiKey(@Auth() auth: AuthDto, @Body() dto: APIKeyCreateDto): Promise<APIKeyCreateResponseDto> {
|
|
return this.service.create(auth, dto);
|
|
}
|
|
|
|
@Get()
|
|
getApiKeys(@Auth() auth: AuthDto): Promise<APIKeyResponseDto[]> {
|
|
return this.service.getAll(auth);
|
|
}
|
|
|
|
@Get(':id')
|
|
getApiKey(@Auth() auth: AuthDto, @Param() { id }: UUIDParamDto): Promise<APIKeyResponseDto> {
|
|
return this.service.getById(auth, id);
|
|
}
|
|
|
|
@Put(':id')
|
|
updateApiKey(
|
|
@Auth() auth: AuthDto,
|
|
@Param() { id }: UUIDParamDto,
|
|
@Body() dto: APIKeyUpdateDto,
|
|
): Promise<APIKeyResponseDto> {
|
|
return this.service.update(auth, id, dto);
|
|
}
|
|
|
|
@Delete(':id')
|
|
deleteApiKey(@Auth() auth: AuthDto, @Param() { id }: UUIDParamDto): Promise<void> {
|
|
return this.service.delete(auth, id);
|
|
}
|
|
}
|