n8n/packages/nodes-base/nodes/Rocketchat/GenericFunctions.ts
कारतोफ्फेलस्क्रिप्ट™ 7a4e9ef5fa
refactor: Remove n8n-core dependency in nodes-base (no-changelog) (#5649)
2023-03-09 18:13:15 +01:00

38 lines
903 B
TypeScript

import type { OptionsWithUri } from 'request';
import type { IDataObject, IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow';
export async function rocketchatApiRequest(
this: IExecuteFunctions | ILoadOptionsFunctions,
resource: string,
method: string,
operation: string,
body: any = {},
headers?: object,
): Promise<any> {
const credentials = await this.getCredentials('rocketchatApi');
const options: OptionsWithUri = {
headers,
method,
body,
uri: `${credentials.domain}/api/v1${resource}.${operation}`,
json: true,
};
if (Object.keys(options.body as IDataObject).length === 0) {
delete options.body;
}
return this.helpers.requestWithAuthentication.call(this, 'rocketchatApi', options);
}
export function validateJSON(json: string | undefined): any {
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = [];
}
return result;
}