n8n/packages/cli/src/controllers/auth.controller.ts
Yuliia Pominchuk dd812c5010
Some checks are pending
Build: Benchmark Image / build (push) Waiting to run
CI: Master (Build, Test, Lint) / Build for Github Cache (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (22.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (24.14.1) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (25.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Lint (push) Waiting to run
CI: Master (Build, Test, Lint) / Performance (push) Waiting to run
CI: Master (Build, Test, Lint) / Notify Slack on failure (push) Blocked by required conditions
Util: Sync API Docs / sync-public-api (push) Waiting to run
fix(core): Emit missing auth audit events for OIDC and SSO-restricted login (#29856)
2026-05-06 19:00:20 +00:00

284 lines
8.9 KiB
TypeScript

import { LoginRequestDto, ResolveSignupTokenQueryDto } from '@n8n/api-types';
import { Logger } from '@n8n/backend-common';
import { Time } from '@n8n/constants';
import type { User, PublicUser, AuthProviderType } from '@n8n/db';
import { UserRepository, AuthenticatedRequest, GLOBAL_OWNER_ROLE } from '@n8n/db';
import {
Body,
createBodyKeyedRateLimiter,
Get,
Post,
Query,
RestController,
} from '@n8n/decorators';
import { isEmail } from 'class-validator';
import { Response } from 'express';
import { AuthHandlerRegistry } from '@/auth/auth-handler.registry';
import { AuthService } from '@/auth/auth.service';
import { RESPONSE_ERROR_MESSAGES } from '@/constants';
import { AuthError } from '@/errors/response-errors/auth.error';
import { BadRequestError } from '@/errors/response-errors/bad-request.error';
import { ForbiddenError } from '@/errors/response-errors/forbidden.error';
import { InternalServerError } from '@/errors/response-errors/internal-server.error';
import { EventService } from '@/events/event.service';
import { License } from '@/license';
import { MfaService } from '@/mfa/mfa.service';
import { PostHogClient } from '@/posthog';
import { AuthlessRequest } from '@/requests';
import { UserService } from '@/services/user.service';
import {
getCurrentAuthenticationMethod,
isOidcCurrentAuthenticationMethod,
isSamlCurrentAuthenticationMethod,
isSsoCurrentAuthenticationMethod,
} from '@/sso.ee/sso-helpers';
import '../auth/handlers/email.auth-handler';
@RestController()
export class AuthController {
constructor(
private readonly logger: Logger,
private readonly authService: AuthService,
private readonly mfaService: MfaService,
private readonly userService: UserService,
private readonly license: License,
private readonly userRepository: UserRepository,
private readonly eventService: EventService,
private readonly authHandlerRegistry: AuthHandlerRegistry,
private readonly postHog?: PostHogClient,
) {}
/** Log in a user */
@Post('/login', {
skipAuth: true,
// Two layered rate limit to ensure multiple users can login from the same
// IP address but aggressive per email limit.
ipRateLimit: {
limit: 1000,
windowMs: 5 * Time.minutes.toMilliseconds,
},
keyedRateLimit: createBodyKeyedRateLimiter<LoginRequestDto>({
limit: 5,
windowMs: 1 * Time.minutes.toMilliseconds,
field: 'emailOrLdapLoginId',
}),
})
async login(
req: AuthlessRequest,
res: Response,
@Body payload: LoginRequestDto,
): Promise<PublicUser | undefined> {
const { emailOrLdapLoginId, password, mfaCode, mfaRecoveryCode } = payload;
const currentAuthenticationMethod = getCurrentAuthenticationMethod();
this.validateEmailFormat(currentAuthenticationMethod, emailOrLdapLoginId);
const emailHandler = this.authHandlerRegistry.get('email', 'password');
if (!emailHandler) {
this.logger.error('Email authentication handler is not registered');
throw new InternalServerError('Email authentication method not available');
}
const preliminaryUser = await emailHandler.handleLogin(emailOrLdapLoginId, password);
this.validateSsoRestrictions(preliminaryUser, emailOrLdapLoginId);
const { user, usedAuthenticationMethod } = await this.authenticateWithPassword(
currentAuthenticationMethod,
emailOrLdapLoginId,
password,
preliminaryUser,
);
await this.validateMfa(user, mfaCode, mfaRecoveryCode);
this.authService.issueCookie(res, user, user.mfaEnabled, req.browserId);
this.eventService.emit('user-logged-in', {
user,
authenticationMethod: usedAuthenticationMethod,
});
return await this.userService.toPublic(user, {
posthog: this.postHog,
withScopes: true,
mfaAuthenticated: user.mfaEnabled,
});
}
private validateEmailFormat(authMethod: AuthProviderType, emailOrLdapLoginId: string): void {
if (authMethod === 'email' && !isEmail(emailOrLdapLoginId)) {
throw new BadRequestError('Invalid email address');
}
}
private validateSsoRestrictions(preliminaryUser: User | undefined, userEmail: string): void {
const shouldBlockSsoUser =
(isSamlCurrentAuthenticationMethod() || isOidcCurrentAuthenticationMethod()) &&
preliminaryUser?.role.slug !== GLOBAL_OWNER_ROLE.slug &&
!preliminaryUser?.settings?.allowSSOManualLogin;
if (shouldBlockSsoUser) {
this.eventService.emit('user-login-failed', {
authenticationMethod: 'email',
userEmail,
reason: 'SSO is enabled, please log in with SSO',
});
throw new AuthError('SSO is enabled, please log in with SSO');
}
}
private async authenticateWithPassword(
getCurrentAuthenticationMethod: AuthProviderType,
emailOrLdapLoginId: string,
password: string,
preliminaryUser: User | undefined,
): Promise<{ user: User; usedAuthenticationMethod: AuthProviderType }> {
let user = preliminaryUser;
let usedAuthenticationMethod: AuthProviderType = 'email';
const shouldTryAlternativeAuth =
getCurrentAuthenticationMethod !== 'email' &&
preliminaryUser?.role.slug !== GLOBAL_OWNER_ROLE.slug;
if (shouldTryAlternativeAuth) {
const authHandler = this.authHandlerRegistry.get(getCurrentAuthenticationMethod, 'password');
if (authHandler) {
user = await authHandler.handleLogin(emailOrLdapLoginId, password);
usedAuthenticationMethod = getCurrentAuthenticationMethod;
}
}
if (!user) {
this.eventService.emit('user-login-failed', {
authenticationMethod: usedAuthenticationMethod,
userEmail: emailOrLdapLoginId,
reason: 'wrong credentials',
});
throw new AuthError('Wrong username or password. Do you have caps lock on?');
}
return { user, usedAuthenticationMethod };
}
private async validateMfa(
user: User,
mfaCode: string | undefined,
mfaRecoveryCode: string | undefined,
): Promise<void> {
if (!user.mfaEnabled) {
return;
}
if (!mfaCode && !mfaRecoveryCode) {
throw new AuthError('MFA Error', 998);
}
const isMfaCodeOrMfaRecoveryCodeValid = await this.mfaService.validateMfa(
user.id,
mfaCode,
mfaRecoveryCode,
);
if (!isMfaCodeOrMfaRecoveryCodeValid) {
throw new AuthError('Invalid mfa token or recovery code');
}
}
/** Check if the user is already logged in */
@Get('/login', {
allowSkipMFA: true,
})
async currentUser(req: AuthenticatedRequest): Promise<PublicUser> {
// We need auth identities to determine signInType in toPublic method
const user = await this.userService.findUserWithAuthIdentities(req.user.id);
return await this.userService.toPublic(user, {
posthog: this.postHog,
withScopes: true,
mfaAuthenticated: req.authInfo?.usedMfa,
});
}
/** Validate invite token to enable invitee to set up their account */
@Get('/resolve-signup-token', { skipAuth: true })
async resolveSignupToken(
_req: AuthlessRequest,
_res: Response,
@Query payload: ResolveSignupTokenQueryDto,
) {
if (isSsoCurrentAuthenticationMethod()) {
this.logger.debug(
'Invite links are not supported on this system, please use single sign on instead.',
);
throw new BadRequestError(
'Invite links are not supported on this system, please use single sign on instead.',
);
}
if (!payload.token) {
this.logger.debug('Request to resolve signup token failed because token is missing');
throw new BadRequestError('Token is required');
}
const { inviterId, inviteeId } = await this.userService.getInvitationIdsFromPayload(
payload.token,
);
const isWithinUsersLimit = this.license.isWithinUsersLimit();
if (!isWithinUsersLimit) {
this.logger.debug('Request to resolve signup token failed because of users quota reached', {
inviterId,
inviteeId,
});
throw new ForbiddenError(RESPONSE_ERROR_MESSAGES.USERS_QUOTA_REACHED);
}
const users = await this.userRepository.findManyByIds([inviterId, inviteeId], {
includeRole: true,
});
if (users.length !== 2) {
this.logger.debug(
'Request to resolve signup token failed because the ID of the inviter and/or the ID of the invitee were not found in database',
{ inviterId, inviteeId },
);
throw new BadRequestError('Invalid invite URL');
}
const invitee = users.find((user) => user.id === inviteeId);
if (!invitee || invitee.password) {
this.logger.error('Invalid invite URL - invitee already setup', {
inviterId,
inviteeId,
});
throw new BadRequestError('The invitation was likely either deleted or already claimed');
}
const inviter = users.find((user) => user.id === inviterId);
if (!inviter?.email) {
this.logger.error(
'Request to resolve signup token failed because inviter does not exist or is not set up',
{
inviterId: inviter?.id,
},
);
throw new BadRequestError('Invalid request');
}
this.eventService.emit('user-invite-email-click', { inviter, invitee });
const { firstName, lastName } = inviter;
return { inviter: { firstName, lastName } };
}
/** Log out a user */
@Post('/logout')
async logout(req: AuthenticatedRequest, res: Response) {
await this.authService.invalidateToken(req);
this.authService.clearCookie(res);
return { loggedOut: true };
}
}