mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-15 15:44:45 -04:00
70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import {
|
|
CanActivate,
|
|
ExecutionContext,
|
|
Inject,
|
|
Injectable,
|
|
UnauthorizedException,
|
|
} from '@nestjs/common';
|
|
|
|
import { GuestAccess } from '../config/guest_access.enum';
|
|
import noteConfiguration, { NoteConfig } from '../config/note.config';
|
|
import { NotInDBError } from '../errors/errors';
|
|
import { ConsoleLoggerService } from '../logger/console-logger.service';
|
|
import { User } from '../users/user.entity';
|
|
import { UsersService } from '../users/users.service';
|
|
|
|
/**
|
|
* This guard checks if a session is present.
|
|
*
|
|
* If there is a username in `request.session.user` it will try to get this user from the database and put it into `request.user`. See {@link RequestUser}.
|
|
* If there is no `request.session.user`, but any GuestAccess is configured, `request.session.authProvider` is set to `guest` to indicate a guest user.
|
|
*
|
|
* @throws UnauthorizedException
|
|
*/
|
|
@Injectable()
|
|
export class SessionGuard implements CanActivate {
|
|
constructor(
|
|
private readonly logger: ConsoleLoggerService,
|
|
private userService: UsersService,
|
|
@Inject(noteConfiguration.KEY)
|
|
private noteConfig: NoteConfig,
|
|
) {
|
|
this.logger.setContext(SessionGuard.name);
|
|
}
|
|
|
|
async canActivate(context: ExecutionContext): Promise<boolean> {
|
|
const request: Request & {
|
|
session?: { user: string; authProvider: string };
|
|
user?: User;
|
|
} = context.switchToHttp().getRequest();
|
|
if (!request.session?.user) {
|
|
if (this.noteConfig.guestAccess !== GuestAccess.DENY) {
|
|
if (request.session) {
|
|
request.session.authProvider = 'guest';
|
|
return true;
|
|
}
|
|
}
|
|
this.logger.debug('The user has no session.');
|
|
throw new UnauthorizedException("You're not logged in");
|
|
}
|
|
try {
|
|
request.user = await this.userService.getUserByUsername(
|
|
request.session.user,
|
|
);
|
|
return true;
|
|
} catch (e) {
|
|
if (e instanceof NotInDBError) {
|
|
this.logger.debug(
|
|
`The user '${request.session.user}' does not exist, but has a session.`,
|
|
);
|
|
throw new UnauthorizedException("You're not logged in");
|
|
}
|
|
throw e;
|
|
}
|
|
}
|
|
}
|