mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-03 17:07:29 -08:00
5156313074
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import type { Request } from 'express';
|
|
import { access } from 'fs/promises';
|
|
import { join } from 'path';
|
|
|
|
import config from '@/config';
|
|
import { NODES_BASE_DIR } from '@/constants';
|
|
import { CredentialTypes } from '@/credential-types';
|
|
import { Get, RestController } from '@/decorators';
|
|
import { BadRequestError } from '@/errors/response-errors/bad-request.error';
|
|
import { InternalServerError } from '@/errors/response-errors/internal-server.error';
|
|
|
|
export const CREDENTIAL_TRANSLATIONS_DIR = 'n8n-nodes-base/dist/credentials/translations';
|
|
export const NODE_HEADERS_PATH = join(NODES_BASE_DIR, 'dist/nodes/headers');
|
|
|
|
export declare namespace TranslationRequest {
|
|
export type Credential = Request<{}, {}, {}, { credentialType: string }>;
|
|
}
|
|
|
|
@RestController('/')
|
|
export class TranslationController {
|
|
constructor(private readonly credentialTypes: CredentialTypes) {}
|
|
|
|
@Get('/credential-translation')
|
|
async getCredentialTranslation(req: TranslationRequest.Credential) {
|
|
const { credentialType } = req.query;
|
|
|
|
if (!this.credentialTypes.recognizes(credentialType))
|
|
throw new BadRequestError(`Invalid Credential type: "${credentialType}"`);
|
|
|
|
const defaultLocale = config.getEnv('defaultLocale');
|
|
const translationPath = join(
|
|
CREDENTIAL_TRANSLATIONS_DIR,
|
|
defaultLocale,
|
|
`${credentialType}.json`,
|
|
);
|
|
|
|
try {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
return require(translationPath);
|
|
} catch (error) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@Get('/node-translation-headers')
|
|
async getNodeTranslationHeaders() {
|
|
try {
|
|
await access(`${NODE_HEADERS_PATH}.js`);
|
|
} catch {
|
|
return; // no headers available
|
|
}
|
|
|
|
try {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
return require(NODE_HEADERS_PATH);
|
|
} catch (error) {
|
|
throw new InternalServerError('Failed to load headers file');
|
|
}
|
|
}
|
|
}
|