mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
import type { NextFunction, Response } from 'express';
|
|
import { Service } from 'typedi';
|
|
|
|
import type { AuthlessRequest } from '@/requests';
|
|
|
|
import { taskRunnerAuthRequestBodySchema } from './task-runner-auth.schema';
|
|
import { TaskRunnerAuthService } from './task-runner-auth.service';
|
|
import { BadRequestError } from '../../errors/response-errors/bad-request.error';
|
|
import { ForbiddenError } from '../../errors/response-errors/forbidden.error';
|
|
import type { TaskRunnerServerInitRequest } from '../task-runner-types';
|
|
|
|
/**
|
|
* Controller responsible for authenticating Task Runner connections
|
|
*/
|
|
@Service()
|
|
export class TaskRunnerAuthController {
|
|
constructor(private readonly taskRunnerAuthService: TaskRunnerAuthService) {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
this.authMiddleware = this.authMiddleware.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Validates the provided auth token and creates and responds with a grant token,
|
|
* which can be used to initiate a task runner connection.
|
|
*/
|
|
async createGrantToken(req: AuthlessRequest) {
|
|
const result = await taskRunnerAuthRequestBodySchema.safeParseAsync(req.body);
|
|
if (!result.success) {
|
|
throw new BadRequestError(result.error.errors[0].code);
|
|
}
|
|
|
|
const { token: authToken } = result.data;
|
|
if (!this.taskRunnerAuthService.isValidAuthToken(authToken)) {
|
|
throw new ForbiddenError();
|
|
}
|
|
|
|
const grantToken = await this.taskRunnerAuthService.createGrantToken();
|
|
return {
|
|
token: grantToken,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Middleware to authenticate task runner init requests
|
|
*/
|
|
async authMiddleware(req: TaskRunnerServerInitRequest, res: Response, next: NextFunction) {
|
|
const authHeader = req.headers.authorization;
|
|
if (typeof authHeader !== 'string' || !authHeader.startsWith('Bearer ')) {
|
|
res.status(401).json({ code: 401, message: 'Unauthorized' });
|
|
return;
|
|
}
|
|
|
|
const grantToken = authHeader.slice('Bearer '.length);
|
|
const isConsumed = await this.taskRunnerAuthService.tryConsumeGrantToken(grantToken);
|
|
if (!isConsumed) {
|
|
res.status(403).json({ code: 403, message: 'Forbidden' });
|
|
return;
|
|
}
|
|
|
|
next();
|
|
}
|
|
}
|