mirror of
https://github.com/immich-app/immich.git
synced 2025-12-28 07:40:38 -05:00
76 lines
2.9 KiB
TypeScript
76 lines
2.9 KiB
TypeScript
import { Body, Controller, Delete, Get, HttpCode, HttpStatus, Param, Post, Put, Query } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { Endpoint, HistoryBuilder } from 'src/decorators';
|
|
import { AuthDto } from 'src/dtos/auth.dto';
|
|
import { PartnerCreateDto, PartnerResponseDto, PartnerSearchDto, PartnerUpdateDto } from 'src/dtos/partner.dto';
|
|
import { ApiTag, Permission } from 'src/enum';
|
|
import { Auth, Authenticated } from 'src/middleware/auth.guard';
|
|
import { PartnerService } from 'src/services/partner.service';
|
|
import { UUIDParamDto } from 'src/validation';
|
|
|
|
@ApiTags(ApiTag.Partners)
|
|
@Controller('partners')
|
|
export class PartnerController {
|
|
constructor(private service: PartnerService) {}
|
|
|
|
@Get()
|
|
@Authenticated({ permission: Permission.PartnerRead })
|
|
@Endpoint({
|
|
summary: 'Retrieve partners',
|
|
description: 'Retrieve a list of partners with whom assets are shared.',
|
|
history: new HistoryBuilder().added('v1').beta('v1').stable('v2'),
|
|
})
|
|
getPartners(@Auth() auth: AuthDto, @Query() dto: PartnerSearchDto): Promise<PartnerResponseDto[]> {
|
|
return this.service.search(auth, dto);
|
|
}
|
|
|
|
@Post()
|
|
@Authenticated({ permission: Permission.PartnerCreate })
|
|
@Endpoint({
|
|
summary: 'Create a partner',
|
|
description: 'Create a new partner to share assets with.',
|
|
history: new HistoryBuilder().added('v1').beta('v1').stable('v2'),
|
|
})
|
|
createPartner(@Auth() auth: AuthDto, @Body() dto: PartnerCreateDto): Promise<PartnerResponseDto> {
|
|
return this.service.create(auth, dto);
|
|
}
|
|
|
|
@Post(':id')
|
|
@Endpoint({
|
|
summary: 'Create a partner',
|
|
description: 'Create a new partner to share assets with.',
|
|
history: new HistoryBuilder().added('v1').deprecated('v1', { replacementId: 'createPartner' }),
|
|
})
|
|
@Authenticated({ permission: Permission.PartnerCreate })
|
|
createPartnerDeprecated(@Auth() auth: AuthDto, @Param() { id }: UUIDParamDto): Promise<PartnerResponseDto> {
|
|
return this.service.create(auth, { sharedWithId: id });
|
|
}
|
|
|
|
@Put(':id')
|
|
@Authenticated({ permission: Permission.PartnerUpdate })
|
|
@Endpoint({
|
|
summary: 'Update a partner',
|
|
description: "Specify whether a partner's assets should appear in the user's timeline.",
|
|
history: new HistoryBuilder().added('v1').beta('v1').stable('v2'),
|
|
})
|
|
updatePartner(
|
|
@Auth() auth: AuthDto,
|
|
@Param() { id }: UUIDParamDto,
|
|
@Body() dto: PartnerUpdateDto,
|
|
): Promise<PartnerResponseDto> {
|
|
return this.service.update(auth, id, dto);
|
|
}
|
|
|
|
@Delete(':id')
|
|
@Authenticated({ permission: Permission.PartnerDelete })
|
|
@HttpCode(HttpStatus.NO_CONTENT)
|
|
@Endpoint({
|
|
summary: 'Remove a partner',
|
|
description: 'Stop sharing assets with a partner.',
|
|
history: new HistoryBuilder().added('v1').beta('v1').stable('v2'),
|
|
})
|
|
removePartner(@Auth() auth: AuthDto, @Param() { id }: UUIDParamDto): Promise<void> {
|
|
return this.service.remove(auth, id);
|
|
}
|
|
}
|