2021-01-24 11:38:16 -08:00
|
|
|
import {
|
2021-01-22 07:17:12 -08:00
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
2019-11-08 20:11:01 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
2021-01-22 07:17:12 -08:00
|
|
|
export async function rocketchatApiRequest(this: IExecuteFunctions | 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,
|
2021-01-24 11:38:16 -08:00
|
|
|
{
|
|
|
|
'X-Auth-Token': credentials.authKey,
|
|
|
|
'X-User-Id': credentials.userId,
|
2021-02-19 04:33:47 -08:00
|
|
|
},
|
2021-01-24 11:38:16 -08:00
|
|
|
);
|
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) {
|
2021-01-22 07:17:12 -08:00
|
|
|
if (error.response && error.response.body && error.response.body.error) {
|
2019-11-08 20:11:01 -08:00
|
|
|
|
2021-01-22 07:17:12 -08:00
|
|
|
const errorMessage = error.response.body.error;
|
|
|
|
// Try to return the error prettier
|
|
|
|
throw new Error(
|
|
|
|
`Rocketchat error response [${error.statusCode}]: ${errorMessage}`,
|
|
|
|
);
|
2019-11-08 20:11:01 -08:00
|
|
|
}
|
2021-01-22 07:17:12 -08:00
|
|
|
throw error;
|
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;
|
|
|
|
}
|