mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
* refactor(server): user endpoints * fix repos * fix unit tests --------- Co-authored-by: Daniel Dietzler <mail@ddietzler.dev> Co-authored-by: Alex <alex.tran1502@gmail.com>
79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
import { Body, Controller, HttpCode, HttpStatus, Post, Req, Res } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { Request, Response } from 'express';
|
|
import { AuthType } from 'src/constants';
|
|
import {
|
|
AuthDto,
|
|
ChangePasswordDto,
|
|
ImmichCookie,
|
|
LoginCredentialDto,
|
|
LoginResponseDto,
|
|
LogoutResponseDto,
|
|
SignUpDto,
|
|
ValidateAccessTokenResponseDto,
|
|
} from 'src/dtos/auth.dto';
|
|
import { UserAdminResponseDto } from 'src/dtos/user.dto';
|
|
import { Auth, Authenticated, GetLoginDetails } from 'src/middleware/auth.guard';
|
|
import { AuthService, LoginDetails } from 'src/services/auth.service';
|
|
import { respondWithCookie, respondWithoutCookie } from 'src/utils/response';
|
|
|
|
@ApiTags('Authentication')
|
|
@Controller('auth')
|
|
export class AuthController {
|
|
constructor(private service: AuthService) {}
|
|
|
|
@Post('login')
|
|
async login(
|
|
@Body() loginCredential: LoginCredentialDto,
|
|
@Res({ passthrough: true }) res: Response,
|
|
@GetLoginDetails() loginDetails: LoginDetails,
|
|
): Promise<LoginResponseDto> {
|
|
const body = await this.service.login(loginCredential, loginDetails);
|
|
return respondWithCookie(res, body, {
|
|
isSecure: loginDetails.isSecure,
|
|
values: [
|
|
{ key: ImmichCookie.ACCESS_TOKEN, value: body.accessToken },
|
|
{ key: ImmichCookie.AUTH_TYPE, value: AuthType.PASSWORD },
|
|
{ key: ImmichCookie.IS_AUTHENTICATED, value: 'true' },
|
|
],
|
|
});
|
|
}
|
|
|
|
@Post('admin-sign-up')
|
|
signUpAdmin(@Body() dto: SignUpDto): Promise<UserAdminResponseDto> {
|
|
return this.service.adminSignUp(dto);
|
|
}
|
|
|
|
@Post('validateToken')
|
|
@HttpCode(HttpStatus.OK)
|
|
@Authenticated()
|
|
validateAccessToken(): ValidateAccessTokenResponseDto {
|
|
return { authStatus: true };
|
|
}
|
|
|
|
@Post('change-password')
|
|
@HttpCode(HttpStatus.OK)
|
|
@Authenticated()
|
|
changePassword(@Auth() auth: AuthDto, @Body() dto: ChangePasswordDto): Promise<UserAdminResponseDto> {
|
|
return this.service.changePassword(auth, dto);
|
|
}
|
|
|
|
@Post('logout')
|
|
@HttpCode(HttpStatus.OK)
|
|
@Authenticated()
|
|
async logout(
|
|
@Req() request: Request,
|
|
@Res({ passthrough: true }) res: Response,
|
|
@Auth() auth: AuthDto,
|
|
): Promise<LogoutResponseDto> {
|
|
const authType = (request.cookies || {})[ImmichCookie.AUTH_TYPE];
|
|
|
|
const body = await this.service.logout(auth, authType);
|
|
return respondWithoutCookie(res, body, [
|
|
ImmichCookie.ACCESS_TOKEN,
|
|
ImmichCookie.AUTH_TYPE,
|
|
ImmichCookie.IS_AUTHENTICATED,
|
|
]);
|
|
}
|
|
}
|