Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import basicAuth from 'basic-auth';
|
|
import type { ICredentialDataDecryptedObject, IWebhookFunctions } from 'n8n-workflow';
|
|
|
|
import { ChatTriggerAuthorizationError } from './error';
|
|
import type { AuthenticationChatOption } from './types';
|
|
|
|
export async function validateAuth(context: IWebhookFunctions) {
|
|
const authentication = context.getNodeParameter(
|
|
'authentication',
|
|
'none',
|
|
) as AuthenticationChatOption;
|
|
const req = context.getRequestObject();
|
|
const headers = context.getHeaderData();
|
|
|
|
if (authentication === 'none') {
|
|
return;
|
|
} else if (authentication === 'basicAuth') {
|
|
// Basic authorization is needed to call webhook
|
|
let expectedAuth: ICredentialDataDecryptedObject | undefined;
|
|
try {
|
|
expectedAuth = await context.getCredentials<ICredentialDataDecryptedObject>('httpBasicAuth');
|
|
} catch {}
|
|
|
|
if (expectedAuth === undefined || !expectedAuth.user || !expectedAuth.password) {
|
|
// Data is not defined on node so can not authenticate
|
|
throw new ChatTriggerAuthorizationError(500, 'No authentication data defined on node!');
|
|
}
|
|
|
|
const providedAuth = basicAuth(req);
|
|
// Authorization data is missing
|
|
if (!providedAuth) throw new ChatTriggerAuthorizationError(401);
|
|
|
|
if (providedAuth.name !== expectedAuth.user || providedAuth.pass !== expectedAuth.password) {
|
|
// Provided authentication data is wrong
|
|
throw new ChatTriggerAuthorizationError(403);
|
|
}
|
|
} else if (authentication === 'n8nUserAuth') {
|
|
const webhookName = context.getWebhookName();
|
|
|
|
if (webhookName !== 'setup') {
|
|
function getCookie(name: string) {
|
|
const value = `; ${headers.cookie}`;
|
|
const parts = value.split(`; ${name}=`);
|
|
|
|
if (parts.length === 2) {
|
|
return parts.pop()?.split(';').shift();
|
|
}
|
|
return '';
|
|
}
|
|
|
|
const authCookie = getCookie('n8n-auth');
|
|
if (!authCookie) {
|
|
throw new ChatTriggerAuthorizationError(401, 'User not authenticated!');
|
|
}
|
|
|
|
try {
|
|
await context.validateCookieAuth(authCookie);
|
|
} catch {
|
|
throw new ChatTriggerAuthorizationError(401, 'Invalid authentication token');
|
|
}
|
|
}
|
|
}
|
|
|
|
return;
|
|
}
|