n8n/packages/nodes-base/nodes/Rocketchat/GenericFunctions.ts
Iván Ovejero cfd32d2642
refactor: Phase out TSLint in nodes-base (no-changelog) (#4798)
* 🔥 Remove TSLint scripts

* 🔥 Remove TSLint config

* 🔥 Remove TSLint exceptions

* 👕 Adjust lint config

* ✏️ Add story numbers
2022-12-02 15:25:21 +01:00

38 lines
861 B
TypeScript

import { OptionsWithUri } from 'request';
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
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).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;
}