n8n/packages/nodes-base/nodes/Yourls/GenericFunctions.ts
Iván Ovejero cfd32d2642
refactor: Phase out TSLint in nodes-base (no-changelog) (#4798)
* 🔥 Remove TSLint scripts

* 🔥 Remove TSLint config

* 🔥 Remove TSLint exceptions

* 👕 Adjust lint config

* ✏️ Add story numbers
2022-12-02 15:25:21 +01:00

42 lines
1,001 B
TypeScript

import { OptionsWithUri } from 'request';
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { IDataObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
export async function yourlsApiRequest(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
body: any = {},
qs: IDataObject = {},
): Promise<any> {
const credentials = await this.getCredentials('yourlsApi');
qs.signature = credentials.signature as string;
qs.format = 'json';
const options: OptionsWithUri = {
method,
body,
qs,
uri: `${credentials.url}/yourls-api.php`,
json: true,
};
try {
//@ts-ignore
const response = await this.helpers.request.call(this, options);
if (response.status === 'fail') {
throw new NodeOperationError(
this.getNode(),
`Yourls error response [400]: ${response.message}`,
);
}
return response;
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}