n8n/packages/nodes-base/nodes/Figma/GenericFunctions.ts
Garrit Franke e3e70d6068
feat(Figma Trigger Node): Add OAuth2 authentication support (#30079)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 11:30:49 +00:00

47 lines
1.2 KiB
TypeScript

import type {
IDataObject,
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
JsonObject,
IRequestOptions,
IHttpRequestMethods,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
export async function figmaApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
resource: string,
body: any = {},
_qs: IDataObject = {},
uri?: string,
option: IDataObject = {},
): Promise<any> {
const authentication = this.getNodeParameter('authentication', 0, 'accessToken') as string;
let options: IRequestOptions = {
method,
body,
uri: uri || `https://api.figma.com${resource}`,
json: true,
};
options = Object.assign({}, options, option);
if (Object.keys(options.body as IDataObject).length === 0) {
delete options.body;
}
try {
if (authentication === 'oAuth2') {
return await this.helpers.requestWithAuthentication.call(this, 'figmaOAuth2Api', options);
}
const credentials = await this.getCredentials('figmaApi');
options.headers = { 'X-FIGMA-TOKEN': credentials.accessToken };
return await this.helpers.request(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}