mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 17:24:56 +03:00
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import {
|
|
AdminSignupResponseDto,
|
|
AuthService,
|
|
AuthType,
|
|
AuthUserDto,
|
|
ChangePasswordDto,
|
|
IMMICH_ACCESS_COOKIE,
|
|
IMMICH_AUTH_TYPE_COOKIE,
|
|
LoginCredentialDto,
|
|
LoginResponseDto,
|
|
LogoutResponseDto,
|
|
SignUpDto,
|
|
UserResponseDto,
|
|
ValidateAccessTokenResponseDto,
|
|
} from '@app/domain';
|
|
import { Body, Controller, Ip, Post, Req, Res, UsePipes, ValidationPipe } from '@nestjs/common';
|
|
import { ApiBadRequestResponse, ApiTags } from '@nestjs/swagger';
|
|
import { Request, Response } from 'express';
|
|
import { GetAuthUser } from '../decorators/auth-user.decorator';
|
|
import { Authenticated } from '../decorators/authenticated.decorator';
|
|
|
|
@ApiTags('Authentication')
|
|
@Controller('auth')
|
|
@UsePipes(new ValidationPipe({ transform: true }))
|
|
export class AuthController {
|
|
constructor(private readonly service: AuthService) {}
|
|
|
|
@Post('login')
|
|
async login(
|
|
@Body() loginCredential: LoginCredentialDto,
|
|
@Ip() clientIp: string,
|
|
@Req() req: Request,
|
|
@Res({ passthrough: true }) res: Response,
|
|
): Promise<LoginResponseDto> {
|
|
const { response, cookie } = await this.service.login(loginCredential, clientIp, req.secure);
|
|
res.header('Set-Cookie', cookie);
|
|
return response;
|
|
}
|
|
|
|
@Post('admin-sign-up')
|
|
@ApiBadRequestResponse({ description: 'The server already has an admin' })
|
|
adminSignUp(@Body() signUpCredential: SignUpDto): Promise<AdminSignupResponseDto> {
|
|
return this.service.adminSignUp(signUpCredential);
|
|
}
|
|
|
|
@Authenticated()
|
|
@Post('validateToken')
|
|
validateAccessToken(): ValidateAccessTokenResponseDto {
|
|
return { authStatus: true };
|
|
}
|
|
|
|
@Authenticated()
|
|
@Post('change-password')
|
|
changePassword(@GetAuthUser() authUser: AuthUserDto, @Body() dto: ChangePasswordDto): Promise<UserResponseDto> {
|
|
return this.service.changePassword(authUser, dto);
|
|
}
|
|
|
|
@Authenticated()
|
|
@Post('logout')
|
|
logout(
|
|
@Req() req: Request,
|
|
@Res({ passthrough: true }) res: Response,
|
|
@GetAuthUser() authUser: AuthUserDto,
|
|
): Promise<LogoutResponseDto> {
|
|
const authType: AuthType = req.cookies[IMMICH_AUTH_TYPE_COOKIE];
|
|
|
|
res.clearCookie(IMMICH_ACCESS_COOKIE);
|
|
res.clearCookie(IMMICH_AUTH_TYPE_COOKIE);
|
|
|
|
return this.service.logout(authUser, authType);
|
|
}
|
|
}
|