forked from Cutlery/immich
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import {
|
|
APIKeyCreateDto,
|
|
APIKeyCreateResponseDto,
|
|
APIKeyResponseDto,
|
|
APIKeyService,
|
|
APIKeyUpdateDto,
|
|
AuthUserDto,
|
|
} from '@app/domain';
|
|
import { Body, Controller, Delete, Get, Param, Post, Put } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { Authenticated, AuthUser } from '../app.guard';
|
|
import { UseValidation } from '../app.utils';
|
|
import { UUIDParamDto } from './dto/uuid-param.dto';
|
|
|
|
@ApiTags('API Key')
|
|
@Controller('api-key')
|
|
@Authenticated()
|
|
@UseValidation()
|
|
export class APIKeyController {
|
|
constructor(private service: APIKeyService) {}
|
|
|
|
@Post()
|
|
createKey(@AuthUser() authUser: AuthUserDto, @Body() dto: APIKeyCreateDto): Promise<APIKeyCreateResponseDto> {
|
|
return this.service.create(authUser, dto);
|
|
}
|
|
|
|
@Get()
|
|
getKeys(@AuthUser() authUser: AuthUserDto): Promise<APIKeyResponseDto[]> {
|
|
return this.service.getAll(authUser);
|
|
}
|
|
|
|
@Get(':id')
|
|
getKey(@AuthUser() authUser: AuthUserDto, @Param() { id }: UUIDParamDto): Promise<APIKeyResponseDto> {
|
|
return this.service.getById(authUser, id);
|
|
}
|
|
|
|
@Put(':id')
|
|
updateKey(
|
|
@AuthUser() authUser: AuthUserDto,
|
|
@Param() { id }: UUIDParamDto,
|
|
@Body() dto: APIKeyUpdateDto,
|
|
): Promise<APIKeyResponseDto> {
|
|
return this.service.update(authUser, id, dto);
|
|
}
|
|
|
|
@Delete(':id')
|
|
deleteKey(@AuthUser() authUser: AuthUserDto, @Param() { id }: UUIDParamDto): Promise<void> {
|
|
return this.service.delete(authUser, id);
|
|
}
|
|
}
|