n8n/packages/nodes-base/nodes/Rocketchat/GenericFunctions.ts

52 lines
1.4 KiB
TypeScript
Raw Normal View History

2019-11-08 20:11:01 -08:00
import { OptionsWithUri } from 'request';
import {
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IExecuteSingleFunctions,
} from 'n8n-core';
2019-11-09 17:29:05 -08:00
export async function rocketchatApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, resource: string, method: string, operation: string, body: any = {}, headers?: object): Promise<any> { // tslint:disable-line:no-any
2019-11-08 20:11:01 -08:00
const credentials = this.getCredentials('rocketchatApi');
if (credentials === undefined) {
2019-11-10 21:00:24 -08:00
throw new Error('No credentials got returned!');
2019-11-08 20:11:01 -08:00
}
2019-12-01 08:10:11 -08:00
const headerWithAuthentication = Object.assign({}, headers,
2019-11-10 21:00:24 -08:00
{ 'X-Auth-Token': credentials.authKey, 'X-User-Id': credentials.userId });
2019-11-08 20:11:01 -08:00
const options: OptionsWithUri = {
headers: headerWithAuthentication,
method,
body,
2020-01-08 08:06:28 -08:00
uri: `${credentials.domain}/api/v1${resource}.${operation}`,
2019-11-08 20:11:01 -08:00
json: true
};
2019-11-09 17:29:05 -08:00
if (Object.keys(options.body).length === 0) {
2019-11-08 20:11:01 -08:00
delete options.body;
}
try {
return await this.helpers.request!(options);
} catch (error) {
console.error(error);
const errorMessage = error.response.body.message || error.response.body.Message;
if (errorMessage !== undefined) {
throw errorMessage;
}
throw error.response.body;
}
}
2019-11-09 17:29:05 -08:00
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = [];
}
return result;
}