2020-10-21 14:30:07 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
|
|
|
} from 'request';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
2022-05-07 04:25:53 -07:00
|
|
|
IDataObject, IHttpRequestMethods, IHttpRequestOptions, NodeApiError,
|
2020-10-21 14:30:07 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2022-05-07 04:25:53 -07:00
|
|
|
export async function pushoverApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, path: string, body: any = {}, qs: IDataObject = {}, option = {}): Promise<any> { // tslint:disable-line:no-any
|
2020-10-21 14:30:07 -07:00
|
|
|
|
2022-05-07 04:25:53 -07:00
|
|
|
const options: IHttpRequestOptions = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'multipart/form-data',
|
|
|
|
},
|
2020-10-21 14:30:07 -07:00
|
|
|
method,
|
2022-05-07 04:25:53 -07:00
|
|
|
body,
|
2020-10-21 14:30:07 -07:00
|
|
|
qs,
|
2022-05-07 04:25:53 -07:00
|
|
|
url: `https://api.pushover.net/1${path}`,
|
2020-10-21 14:30:07 -07:00
|
|
|
json: true,
|
|
|
|
};
|
2022-05-07 04:25:53 -07:00
|
|
|
|
2020-10-21 14:30:07 -07:00
|
|
|
try {
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
2022-05-07 04:25:53 -07:00
|
|
|
|
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'pushoverApi', options);
|
2020-10-21 14:30:07 -07:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-10-21 14:30:07 -07:00
|
|
|
}
|
|
|
|
}
|