2019-11-08 20:11:01 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
2020-10-01 05:01:39 -07:00
|
|
|
IExecuteSingleFunctions,
|
2019-11-08 20:11:01 -08:00
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} 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}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2019-11-08 20:11:01 -08:00
|
|
|
};
|
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) {
|
2020-05-08 00:24:33 -07:00
|
|
|
let errorMessage = error.message;
|
2019-11-08 20:11:01 -08:00
|
|
|
|
2020-05-08 00:24:33 -07:00
|
|
|
if (error.response.body.error) {
|
|
|
|
errorMessage = error.response.body.error;
|
2019-11-08 20:11:01 -08:00
|
|
|
}
|
2020-05-08 00:24:33 -07:00
|
|
|
|
|
|
|
throw new Error(`Rocket.chat error response [${error.statusCode}]: ${errorMessage}`);
|
2019-11-08 20:11:01 -08:00
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
}
|