mirror of
https://github.com/immich-app/immich.git
synced 2026-06-05 21:55:23 -04:00
c0898b96ca
* refactor(server)!: sanitize error messages to avoid leaking resource and permission details * fix e2e tests * fix(server): prevent login timing oracle by always running bcrypt Always call compareBcrypt in the login path regardless of whether the email is registered. When no user is found, a dummy hash is used so the bcrypt KDF still runs and response latency is constant, making it impossible to enumerate valid email addresses by measuring response time. * fix(server): collapse OAuth callback messages to prevent email-existence oracle Two distinct error messages in the OAuth callback endpoint revealed whether an email address was already registered in the database. An attacker controlling the OAuth provider's email claim could probe the user table without authentication. Both cases now return the same generic message. * fix(server): replace email-in-use messages to prevent user-existence oracle Error messages on registration and profile-update that named whether an email address was already taken allowed callers to enumerate registered accounts. All three sites now return the same generic message regardless of whether the address is in use. * fix(server): hide slug uniqueness constraint to prevent shared-link probe Surfacing the Postgres unique-constraint name in the error response let any authenticated user brute-force whether a custom slug was already in use by another user's shared link, leaking the existence of other links. * fix(server): unify profile image errors to prevent user-existence oracle via status code GET /users/:id/profile-image returned HTTP 400 for an unknown user ID but HTTP 404 when the user existed without a photo, letting callers distinguish the two cases. Both now return 404 so the response is identical regardless of whether the UUID maps to an account. * fix(server): replace album user-not-found message to prevent UUID-existence oracle Album owners could probe arbitrary UUIDs via the add-user endpoint and determine whether they belonged to registered accounts by receiving 'User not found'. The message is now ambiguous about whether the ID was unrecognised or the user is inactive. * Revert "fix e2e tests" This reverts commit c1bd7a116b3f0fccf3d2530c8e34b13c1d862989. * Revert "refactor(server)!: sanitize error messages to avoid leaking resource and permission details" This reverts commit b96421a08387340fbb77913ca89b0717bcd9945d. * fix(server): use 403 instead of 400 for access-denied errors requireAccess threw BadRequestException which is incorrect HTTP semantics. Access denial is a client authorization problem (403 Forbidden), not a malformed request (400 Bad Request). Keep the descriptive permission name in the message since the full permission set is public API surface. * Revert "fix(server): use 403 instead of 400 for access-denied errors" This reverts commit bb069909571f4e514e7d050ddf588c017ee5a029. * shorten comment * add log messages * format * one more
650 lines
22 KiB
TypeScript
650 lines
22 KiB
TypeScript
import { BadRequestException, ForbiddenException, Injectable, UnauthorizedException } from '@nestjs/common';
|
|
import { parse } from 'cookie';
|
|
import { DateTime } from 'luxon';
|
|
import { IncomingHttpHeaders } from 'node:http';
|
|
import { LOGIN_DUMMY_HASH, LOGIN_URL, MOBILE_REDIRECT, SALT_ROUNDS } from 'src/constants';
|
|
import { AuthSharedLink, AuthUser, UserAdmin } from 'src/database';
|
|
import {
|
|
AuthDto,
|
|
AuthStatusResponseDto,
|
|
ChangePasswordDto,
|
|
LoginCredentialDto,
|
|
LogoutResponseDto,
|
|
OAuthBackchannelLogoutDto,
|
|
OAuthCallbackDto,
|
|
OAuthConfigDto,
|
|
PinCodeChangeDto,
|
|
PinCodeResetDto,
|
|
PinCodeSetupDto,
|
|
SessionUnlockDto,
|
|
SignUpDto,
|
|
mapLoginResponse,
|
|
} from 'src/dtos/auth.dto';
|
|
import { UserAdminResponseDto, mapUserAdmin } from 'src/dtos/user.dto';
|
|
import { AuthType, ImmichCookie, ImmichHeader, ImmichQuery, JobName, Permission } from 'src/enum';
|
|
import { OAuthProfile } from 'src/repositories/oauth.repository';
|
|
import { BaseService } from 'src/services/base.service';
|
|
import { isGranted } from 'src/utils/access';
|
|
import { HumanReadableSize } from 'src/utils/bytes';
|
|
import { generateProfileImage } from 'src/utils/profile-image';
|
|
import { getUserAgentDetails } from 'src/utils/request';
|
|
export interface LoginDetails {
|
|
isSecure: boolean;
|
|
clientIp: string;
|
|
deviceType: string;
|
|
deviceOS: string;
|
|
appVersion: string | null;
|
|
}
|
|
|
|
interface ClaimOptions<T> {
|
|
key: string;
|
|
default: T;
|
|
isValid: (value: unknown) => boolean;
|
|
}
|
|
|
|
export type ValidateRequest = {
|
|
headers: IncomingHttpHeaders;
|
|
queryParams: Record<string, string>;
|
|
metadata: {
|
|
sharedLinkRoute: boolean;
|
|
adminRoute: boolean;
|
|
/** `false` explicitly means no permission is required, which otherwise defaults to `all` */
|
|
permission?: Permission | false;
|
|
uri: string;
|
|
};
|
|
};
|
|
|
|
@Injectable()
|
|
export class AuthService extends BaseService {
|
|
async login(dto: LoginCredentialDto, details: LoginDetails) {
|
|
const config = await this.getConfig({ withCache: false });
|
|
if (!config.passwordLogin.enabled) {
|
|
throw new UnauthorizedException('Password login has been disabled');
|
|
}
|
|
|
|
const user = await this.userRepository.getByEmail(dto.email, { withPassword: true });
|
|
// Always run bcrypt so response time is constant regardless of whether the email
|
|
// is registered, preventing timing-based user enumeration.
|
|
const authenticated = this.cryptoRepository.compareBcrypt(dto.password, user?.password ?? LOGIN_DUMMY_HASH);
|
|
|
|
if (!user || !user.password || !authenticated) {
|
|
this.logger.warn(`Failed login attempt for user ${dto.email} from ip address ${details.clientIp}`);
|
|
throw new UnauthorizedException('Incorrect email or password');
|
|
}
|
|
|
|
return this.createLoginResponse(user, details);
|
|
}
|
|
|
|
async logout(auth: AuthDto, authType: AuthType): Promise<LogoutResponseDto> {
|
|
if (auth.session) {
|
|
await this.sessionRepository.delete(auth.session.id);
|
|
await this.eventRepository.emit('SessionDelete', { sessionId: auth.session.id });
|
|
}
|
|
|
|
return {
|
|
successful: true,
|
|
redirectUri: await this.getLogoutEndpoint(authType),
|
|
};
|
|
}
|
|
|
|
async backchannelLogout(dto: OAuthBackchannelLogoutDto): Promise<void> {
|
|
const { oauth } = await this.getConfig({ withCache: false });
|
|
if (!oauth.enabled) {
|
|
throw new BadRequestException('Received backchannel logout request but OAuth is not enabled');
|
|
}
|
|
|
|
let claims;
|
|
try {
|
|
claims = await this.oauthRepository.validateLogoutToken(oauth, dto.logout_token);
|
|
} catch (error: Error | any) {
|
|
this.logger.error(`Error backchannel logout: ${error.message}`);
|
|
this.logger.error(error);
|
|
|
|
throw new BadRequestException('Error backchannel logout: token validation failed');
|
|
}
|
|
|
|
if (!claims) {
|
|
throw new BadRequestException('Invalid logout token: no claims found');
|
|
}
|
|
|
|
if (!claims.sub && !claims.sid) {
|
|
throw new BadRequestException('Invalid logout token: it must contain either a sub or a sid claim');
|
|
}
|
|
|
|
const deletedSessionIds = await this.sessionRepository.invalidateOAuth({
|
|
oauthSid: claims.sid,
|
|
oauthId: claims.sub,
|
|
});
|
|
|
|
for (const sessionId of deletedSessionIds) {
|
|
await this.eventRepository.emit('SessionDelete', { sessionId });
|
|
}
|
|
}
|
|
|
|
async changePassword(auth: AuthDto, dto: ChangePasswordDto): Promise<UserAdminResponseDto> {
|
|
const { password, newPassword } = dto;
|
|
const user = await this.userRepository.getForChangePassword(auth.user.id);
|
|
const valid = this.validateSecret(password, user.password);
|
|
if (!valid) {
|
|
throw new BadRequestException('Wrong password');
|
|
}
|
|
|
|
const hashedPassword = await this.cryptoRepository.hashBcrypt(newPassword, SALT_ROUNDS);
|
|
|
|
const updatedUser = await this.userRepository.update(user.id, { password: hashedPassword });
|
|
|
|
await this.eventRepository.emit('AuthChangePassword', {
|
|
userId: user.id,
|
|
currentSessionId: auth.session?.id,
|
|
invalidateSessions: dto.invalidateSessions,
|
|
});
|
|
|
|
return mapUserAdmin(updatedUser);
|
|
}
|
|
|
|
async setupPinCode(auth: AuthDto, { pinCode }: PinCodeSetupDto) {
|
|
const user = await this.userRepository.getForPinCode(auth.user.id);
|
|
if (!user) {
|
|
throw new UnauthorizedException();
|
|
}
|
|
|
|
if (user.pinCode) {
|
|
throw new BadRequestException('User already has a PIN code');
|
|
}
|
|
|
|
const hashed = await this.cryptoRepository.hashBcrypt(pinCode, SALT_ROUNDS);
|
|
await this.userRepository.update(auth.user.id, { pinCode: hashed });
|
|
}
|
|
|
|
async resetPinCode(auth: AuthDto, dto: PinCodeResetDto) {
|
|
const user = await this.userRepository.getForPinCode(auth.user.id);
|
|
this.validatePinCode(user, dto);
|
|
|
|
await this.userRepository.update(auth.user.id, { pinCode: null });
|
|
await this.sessionRepository.lockAll(auth.user.id);
|
|
}
|
|
|
|
async changePinCode(auth: AuthDto, dto: PinCodeChangeDto) {
|
|
const user = await this.userRepository.getForPinCode(auth.user.id);
|
|
this.validatePinCode(user, dto);
|
|
|
|
const hashed = await this.cryptoRepository.hashBcrypt(dto.newPinCode, SALT_ROUNDS);
|
|
await this.userRepository.update(auth.user.id, { pinCode: hashed });
|
|
}
|
|
|
|
private validatePinCode(
|
|
user: { pinCode: string | null; password: string | null },
|
|
dto: { pinCode?: string; password?: string },
|
|
) {
|
|
if (!user.pinCode) {
|
|
throw new BadRequestException('User does not have a PIN code');
|
|
}
|
|
|
|
if (dto.password) {
|
|
if (!this.validateSecret(dto.password, user.password)) {
|
|
throw new BadRequestException('Wrong password');
|
|
}
|
|
} else if (dto.pinCode) {
|
|
if (!this.validateSecret(dto.pinCode, user.pinCode)) {
|
|
throw new BadRequestException('Wrong PIN code');
|
|
}
|
|
} else {
|
|
throw new BadRequestException('Either password or pinCode is required');
|
|
}
|
|
}
|
|
|
|
async adminSignUp(dto: SignUpDto): Promise<UserAdminResponseDto> {
|
|
const { setup } = this.configRepository.getEnv();
|
|
if (!setup.allow) {
|
|
throw new BadRequestException('Admin setup is disabled');
|
|
}
|
|
|
|
const adminUser = await this.userRepository.getAdmin();
|
|
if (adminUser) {
|
|
throw new BadRequestException('The server already has an admin');
|
|
}
|
|
|
|
const admin = await this.createUser({
|
|
isAdmin: true,
|
|
email: dto.email,
|
|
name: dto.name,
|
|
password: dto.password,
|
|
storageLabel: 'admin',
|
|
});
|
|
|
|
return mapUserAdmin(admin);
|
|
}
|
|
|
|
async authenticate({ headers, queryParams, metadata }: ValidateRequest): Promise<AuthDto> {
|
|
const authDto = await this.validate({ headers, queryParams });
|
|
const { adminRoute, sharedLinkRoute, uri } = metadata;
|
|
const requestedPermission = metadata.permission ?? Permission.All;
|
|
|
|
if (!authDto.user.isAdmin && adminRoute) {
|
|
this.logger.warn(`Denied access to admin only route: ${uri}`);
|
|
throw new ForbiddenException('Forbidden');
|
|
}
|
|
|
|
if (authDto.sharedLink && !sharedLinkRoute) {
|
|
this.logger.warn(`Denied access to non-shared route: ${uri}`);
|
|
throw new ForbiddenException('Forbidden');
|
|
}
|
|
|
|
if (
|
|
authDto.apiKey &&
|
|
requestedPermission !== false &&
|
|
!isGranted({ requested: [requestedPermission], current: authDto.apiKey.permissions })
|
|
) {
|
|
throw new ForbiddenException(`Missing required permission: ${requestedPermission}`);
|
|
}
|
|
|
|
return authDto;
|
|
}
|
|
|
|
private async validate({ headers, queryParams }: Omit<ValidateRequest, 'metadata'>): Promise<AuthDto> {
|
|
const shareKey = (headers[ImmichHeader.SharedLinkKey] || queryParams[ImmichQuery.SharedLinkKey]) as string;
|
|
const shareSlug = (headers[ImmichHeader.SharedLinkSlug] || queryParams[ImmichQuery.SharedLinkSlug]) as string;
|
|
const session = (headers[ImmichHeader.UserToken] ||
|
|
headers[ImmichHeader.SessionToken] ||
|
|
queryParams[ImmichQuery.SessionKey] ||
|
|
this.getBearerToken(headers) ||
|
|
this.getCookieToken(headers)) as string;
|
|
const apiKey = (headers[ImmichHeader.ApiKey] || queryParams[ImmichQuery.ApiKey]) as string;
|
|
|
|
if (shareKey) {
|
|
return this.validateSharedLinkKey(shareKey);
|
|
}
|
|
|
|
if (shareSlug) {
|
|
return this.validateSharedLinkSlug(shareSlug);
|
|
}
|
|
|
|
if (session) {
|
|
return this.validateSession(session, headers);
|
|
}
|
|
|
|
if (apiKey) {
|
|
return this.validateApiKey(apiKey);
|
|
}
|
|
|
|
throw new UnauthorizedException('Authentication required');
|
|
}
|
|
|
|
getMobileRedirect(url: string) {
|
|
return `${MOBILE_REDIRECT}?${url.split('?')[1] || ''}`;
|
|
}
|
|
|
|
async authorize(dto: OAuthConfigDto) {
|
|
const { oauth } = await this.getConfig({ withCache: false });
|
|
|
|
if (!oauth.enabled) {
|
|
throw new BadRequestException('OAuth is not enabled');
|
|
}
|
|
|
|
return await this.oauthRepository.authorize(
|
|
oauth,
|
|
this.resolveRedirectUri(oauth, dto.redirectUri),
|
|
dto.state,
|
|
dto.codeChallenge,
|
|
);
|
|
}
|
|
|
|
async callback(dto: OAuthCallbackDto, headers: IncomingHttpHeaders, loginDetails: LoginDetails) {
|
|
const { oauth } = await this.getConfig({ withCache: false });
|
|
if (!oauth.enabled) {
|
|
throw new BadRequestException('OAuth is not enabled');
|
|
}
|
|
|
|
const expectedState = dto.state ?? this.getCookieOauthState(headers);
|
|
if (!expectedState?.length) {
|
|
throw new BadRequestException('OAuth state is missing');
|
|
}
|
|
|
|
const codeVerifier = dto.codeVerifier ?? this.getCookieCodeVerifier(headers);
|
|
if (!codeVerifier?.length) {
|
|
throw new BadRequestException('OAuth code verifier is missing');
|
|
}
|
|
|
|
const url = this.resolveRedirectUri(oauth, dto.url);
|
|
const { profile, sid: oauthSid } = await this.oauthRepository.getProfileAndOAuthSid(
|
|
oauth,
|
|
url,
|
|
expectedState,
|
|
codeVerifier,
|
|
);
|
|
const normalizedEmail = profile.email ? profile.email.trim().toLowerCase() : undefined;
|
|
const { autoRegister, defaultStorageQuota, storageLabelClaim, storageQuotaClaim, roleClaim } = oauth;
|
|
this.logger.debug(`Logging in with OAuth: ${JSON.stringify(profile)}`);
|
|
let user: UserAdmin | undefined = await this.userRepository.getByOAuthId(profile.sub);
|
|
|
|
// link by email
|
|
if (!user && normalizedEmail) {
|
|
const emailUser = await this.userRepository.getByEmail(normalizedEmail);
|
|
if (emailUser) {
|
|
if (emailUser.oauthId) {
|
|
this.logger.debug('OAuth login conflict: email already linked to different account');
|
|
throw new BadRequestException('OAuth authentication failed');
|
|
}
|
|
user = await this.userRepository.update(emailUser.id, { oauthId: profile.sub });
|
|
}
|
|
}
|
|
|
|
// register new user
|
|
if (!user) {
|
|
if (!autoRegister) {
|
|
this.logger.warn(
|
|
`Unable to register ${profile.sub}/${normalizedEmail || '(no email)'}. User does not exist and auto registering is disabled. To enable set OAuth Auto Register to true in admin settings.`,
|
|
);
|
|
throw new BadRequestException('OAuth authentication failed');
|
|
}
|
|
|
|
if (!normalizedEmail) {
|
|
throw new BadRequestException('OAuth profile does not have an email address');
|
|
}
|
|
|
|
this.logger.log(`Registering new user: ${profile.sub}/${normalizedEmail}`);
|
|
|
|
const storageLabel = this.getClaim(profile, {
|
|
key: storageLabelClaim,
|
|
default: '',
|
|
isValid: (value: unknown): value is string => typeof value === 'string',
|
|
});
|
|
const storageQuota = this.getClaim(profile, {
|
|
key: storageQuotaClaim,
|
|
default: defaultStorageQuota,
|
|
isValid: (value: unknown) => Number(value) >= 0,
|
|
});
|
|
const role = this.getClaim<'admin' | 'user'>(profile, {
|
|
key: roleClaim,
|
|
default: 'user',
|
|
isValid: (value: unknown) => typeof value === 'string' && ['admin', 'user'].includes(value),
|
|
});
|
|
|
|
user = await this.createUser({
|
|
name:
|
|
profile.name ||
|
|
`${profile.given_name || ''} ${profile.family_name || ''}`.trim() ||
|
|
profile.preferred_username ||
|
|
normalizedEmail,
|
|
email: normalizedEmail,
|
|
oauthId: profile.sub,
|
|
quotaSizeInBytes: storageQuota === null ? null : storageQuota * HumanReadableSize.GiB,
|
|
storageLabel: storageLabel || null,
|
|
isAdmin: role === 'admin',
|
|
});
|
|
}
|
|
|
|
if (!user.profileImagePath && profile.picture) {
|
|
await this.syncProfilePicture(user, profile.picture);
|
|
}
|
|
|
|
return this.createLoginResponse(user, loginDetails, oauthSid);
|
|
}
|
|
|
|
private async syncProfilePicture(user: UserAdmin, url: string) {
|
|
try {
|
|
const oldPath = user.profileImagePath;
|
|
const { data } = await this.oauthRepository.getProfilePicture(url);
|
|
|
|
const config = await this.getConfig({ withCache: true });
|
|
const profileImagePath = await generateProfileImage(
|
|
{ media: this.mediaRepository, crypto: this.cryptoRepository, storageCore: this.storageCore },
|
|
config,
|
|
user.id,
|
|
Buffer.from(data),
|
|
);
|
|
|
|
await this.userRepository.update(user.id, { profileImagePath, profileChangedAt: new Date() });
|
|
|
|
if (oldPath) {
|
|
await this.jobRepository.queue({ name: JobName.FileDelete, data: { files: [oldPath] } });
|
|
}
|
|
} catch (error: Error | any) {
|
|
this.logger.warn(`Unable to sync oauth profile picture: ${error}\n${error?.stack}`);
|
|
}
|
|
}
|
|
|
|
async link(auth: AuthDto, dto: OAuthCallbackDto, headers: IncomingHttpHeaders): Promise<UserAdminResponseDto> {
|
|
const expectedState = dto.state ?? this.getCookieOauthState(headers);
|
|
if (!expectedState?.length) {
|
|
throw new BadRequestException('OAuth state is missing');
|
|
}
|
|
|
|
const codeVerifier = dto.codeVerifier ?? this.getCookieCodeVerifier(headers);
|
|
if (!codeVerifier?.length) {
|
|
throw new BadRequestException('OAuth code verifier is missing');
|
|
}
|
|
|
|
const { oauth } = await this.getConfig({ withCache: false });
|
|
const {
|
|
profile: { sub: oauthId },
|
|
sid,
|
|
} = await this.oauthRepository.getProfileAndOAuthSid(oauth, dto.url, expectedState, codeVerifier);
|
|
const duplicate = await this.userRepository.getByOAuthId(oauthId);
|
|
if (duplicate && duplicate.id !== auth.user.id) {
|
|
this.logger.warn(`OAuth link account failed: sub is already linked to another user (${duplicate.email}).`);
|
|
throw new BadRequestException('This OAuth account has already been linked to another user.');
|
|
}
|
|
|
|
if (auth.session) {
|
|
await this.sessionRepository.update(auth.session.id, { oauthSid: sid });
|
|
}
|
|
|
|
const user = await this.userRepository.update(auth.user.id, { oauthId });
|
|
return mapUserAdmin(user);
|
|
}
|
|
|
|
async unlink(auth: AuthDto): Promise<UserAdminResponseDto> {
|
|
if (auth.session) {
|
|
await this.sessionRepository.update(auth.session.id, { oauthSid: null });
|
|
}
|
|
|
|
const user = await this.userRepository.update(auth.user.id, { oauthId: '' });
|
|
return mapUserAdmin(user);
|
|
}
|
|
|
|
private async getLogoutEndpoint(authType: AuthType): Promise<string> {
|
|
if (authType !== AuthType.OAuth) {
|
|
return LOGIN_URL;
|
|
}
|
|
|
|
const config = await this.getConfig({ withCache: false });
|
|
if (!config.oauth.enabled) {
|
|
return LOGIN_URL;
|
|
}
|
|
|
|
if (config.oauth.endSessionEndpoint) {
|
|
return config.oauth.endSessionEndpoint;
|
|
}
|
|
|
|
return (await this.oauthRepository.getLogoutEndpoint(config.oauth)) || LOGIN_URL;
|
|
}
|
|
|
|
private getBearerToken(headers: IncomingHttpHeaders): string | null {
|
|
const [type, token] = (headers.authorization || '').split(' ');
|
|
if (type.toLowerCase() === 'bearer') {
|
|
return token;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private getCookieToken(headers: IncomingHttpHeaders): string | null {
|
|
const cookies = parse(headers.cookie || '');
|
|
return cookies[ImmichCookie.AccessToken] || null;
|
|
}
|
|
|
|
private getCookieOauthState(headers: IncomingHttpHeaders): string | null {
|
|
const cookies = parse(headers.cookie || '');
|
|
return cookies[ImmichCookie.OAuthState] || null;
|
|
}
|
|
|
|
private getCookieCodeVerifier(headers: IncomingHttpHeaders): string | null {
|
|
const cookies = parse(headers.cookie || '');
|
|
return cookies[ImmichCookie.OAuthCodeVerifier] || null;
|
|
}
|
|
|
|
async validateSharedLinkKey(key: string | string[]): Promise<AuthDto> {
|
|
key = Array.isArray(key) ? key[0] : key;
|
|
|
|
const bytes = Buffer.from(key, key.length === 100 ? 'hex' : 'base64url');
|
|
const sharedLink = await this.sharedLinkRepository.getByKey(bytes);
|
|
if (!this.isValidSharedLink(sharedLink)) {
|
|
throw new UnauthorizedException('Invalid share key');
|
|
}
|
|
|
|
return { user: sharedLink.user, sharedLink };
|
|
}
|
|
|
|
async validateSharedLinkSlug(slug: string | string[]): Promise<AuthDto> {
|
|
slug = Array.isArray(slug) ? slug[0] : slug;
|
|
|
|
const sharedLink = await this.sharedLinkRepository.getBySlug(slug);
|
|
if (!this.isValidSharedLink(sharedLink)) {
|
|
throw new UnauthorizedException('Invalid share slug');
|
|
}
|
|
|
|
return { user: sharedLink.user, sharedLink };
|
|
}
|
|
|
|
private isValidSharedLink(
|
|
sharedLink?: AuthSharedLink & { user: AuthUser | null },
|
|
): sharedLink is AuthSharedLink & { user: AuthUser } {
|
|
return !!sharedLink?.user && (!sharedLink.expiresAt || new Date(sharedLink.expiresAt) > new Date());
|
|
}
|
|
|
|
private async validateApiKey(key: string): Promise<AuthDto> {
|
|
const hashed = this.cryptoRepository.hashSha256(key);
|
|
const apiKey = await this.apiKeyRepository.getKey(hashed);
|
|
if (apiKey?.user) {
|
|
return {
|
|
user: apiKey.user,
|
|
apiKey,
|
|
};
|
|
}
|
|
|
|
throw new UnauthorizedException('Invalid API key');
|
|
}
|
|
|
|
private validateSecret(inputSecret: string, existingHash?: string | null): boolean {
|
|
if (!existingHash) {
|
|
return false;
|
|
}
|
|
|
|
return this.cryptoRepository.compareBcrypt(inputSecret, existingHash);
|
|
}
|
|
|
|
private async validateSession(token: string, headers: IncomingHttpHeaders): Promise<AuthDto> {
|
|
const hashed = this.cryptoRepository.hashSha256(token);
|
|
const session = await this.sessionRepository.getByToken(hashed);
|
|
if (session?.user) {
|
|
const { appVersion, deviceOS, deviceType } = getUserAgentDetails(headers);
|
|
const now = DateTime.now();
|
|
const updatedAt = DateTime.fromJSDate(session.updatedAt);
|
|
const diff = now.diff(updatedAt, ['hours']);
|
|
if (diff.hours > 1 || appVersion != session.appVersion) {
|
|
await this.sessionRepository.update(session.id, {
|
|
id: session.id,
|
|
updatedAt: new Date(),
|
|
appVersion,
|
|
deviceOS,
|
|
deviceType,
|
|
});
|
|
}
|
|
|
|
// Pin check
|
|
let hasElevatedPermission = false;
|
|
|
|
if (session.pinExpiresAt) {
|
|
const pinExpiresAt = DateTime.fromJSDate(session.pinExpiresAt);
|
|
hasElevatedPermission = pinExpiresAt > now;
|
|
|
|
if (hasElevatedPermission && now.plus({ minutes: 5 }) > pinExpiresAt) {
|
|
await this.sessionRepository.update(session.id, {
|
|
pinExpiresAt: DateTime.now().plus({ minutes: 5 }).toJSDate(),
|
|
});
|
|
}
|
|
}
|
|
|
|
return {
|
|
user: session.user,
|
|
session: {
|
|
id: session.id,
|
|
hasElevatedPermission,
|
|
},
|
|
};
|
|
}
|
|
|
|
throw new UnauthorizedException('Invalid user token');
|
|
}
|
|
|
|
async unlockSession(auth: AuthDto, dto: SessionUnlockDto): Promise<void> {
|
|
if (!auth.session) {
|
|
throw new BadRequestException('This endpoint can only be used with a session token');
|
|
}
|
|
|
|
const user = await this.userRepository.getForPinCode(auth.user.id);
|
|
this.validatePinCode(user, { pinCode: dto.pinCode });
|
|
|
|
await this.sessionRepository.update(auth.session.id, {
|
|
pinExpiresAt: DateTime.now().plus({ minutes: 15 }).toJSDate(),
|
|
});
|
|
}
|
|
|
|
async lockSession(auth: AuthDto): Promise<void> {
|
|
if (!auth.session) {
|
|
throw new BadRequestException('This endpoint can only be used with a session token');
|
|
}
|
|
|
|
await this.sessionRepository.update(auth.session.id, { pinExpiresAt: null });
|
|
}
|
|
|
|
private async createLoginResponse(user: UserAdmin, loginDetails: LoginDetails, oauthSid?: string) {
|
|
const token = this.cryptoRepository.randomBytesAsText(32);
|
|
const hashed = this.cryptoRepository.hashSha256(token);
|
|
|
|
await this.sessionRepository.create({
|
|
token: hashed,
|
|
deviceOS: loginDetails.deviceOS,
|
|
deviceType: loginDetails.deviceType,
|
|
appVersion: loginDetails.appVersion,
|
|
userId: user.id,
|
|
oauthSid: oauthSid ?? null,
|
|
});
|
|
|
|
return mapLoginResponse(user, token);
|
|
}
|
|
|
|
private getClaim<T>(profile: OAuthProfile, options: ClaimOptions<T>): T {
|
|
const value = profile[options.key as keyof OAuthProfile];
|
|
return options.isValid(value) ? (value as T) : options.default;
|
|
}
|
|
|
|
private resolveRedirectUri(
|
|
{ mobileRedirectUri, mobileOverrideEnabled }: { mobileRedirectUri: string; mobileOverrideEnabled: boolean },
|
|
url: string,
|
|
) {
|
|
if (mobileOverrideEnabled && mobileRedirectUri) {
|
|
return url.replace(/app\.immich:\/+oauth-callback/, mobileRedirectUri);
|
|
}
|
|
return url;
|
|
}
|
|
|
|
async getAuthStatus(auth: AuthDto): Promise<AuthStatusResponseDto> {
|
|
const user = await this.userRepository.getForPinCode(auth.user.id);
|
|
if (!user) {
|
|
throw new UnauthorizedException();
|
|
}
|
|
|
|
const session = auth.session ? await this.sessionRepository.get(auth.session.id) : undefined;
|
|
|
|
return {
|
|
pinCode: !!user.pinCode,
|
|
password: !!user.password,
|
|
isElevated: !!auth.session?.hasElevatedPermission,
|
|
expiresAt: session?.expiresAt?.toISOString(),
|
|
pinExpiresAt: session?.pinExpiresAt?.toISOString(),
|
|
};
|
|
}
|
|
}
|