2020-02-26 17:46:00 -08:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-02-26 17:46:00 -08:00
|
|
|
|
2022-11-08 06:28:21 -08:00
|
|
|
import { IDataObject, IHookFunctions, IWebhookFunctions, NodeApiError } from 'n8n-workflow';
|
2020-02-26 17:46:00 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function zulipApiRequest(
|
|
|
|
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('zulipApi');
|
2020-02-26 17:46:00 -08:00
|
|
|
|
|
|
|
const endpoint = `${credentials.url}/api/v1`;
|
|
|
|
|
|
|
|
let options: OptionsWithUri = {
|
2020-02-27 14:27:21 -08:00
|
|
|
auth: {
|
|
|
|
user: credentials.email as string,
|
|
|
|
password: credentials.apiKey as string,
|
|
|
|
},
|
2020-02-26 17:46:00 -08:00
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
form: body,
|
|
|
|
qs: query,
|
|
|
|
uri: uri || `${endpoint}${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-02-26 17:46:00 -08:00
|
|
|
};
|
|
|
|
if (!Object.keys(body).length) {
|
|
|
|
delete options.form;
|
|
|
|
}
|
|
|
|
if (!Object.keys(query).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-02-26 17:46:00 -08:00
|
|
|
}
|
|
|
|
}
|
2020-05-19 06:19:35 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
export function validateJSON(json: string | undefined): any {
|
2020-05-19 06:19:35 -07:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|