n8n/packages/nodes-base/nodes/Toggl/GenericFunctions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
938 B
TypeScript
Raw Normal View History

import type {
IDataObject,
2019-12-21 18:44:56 -08:00
IExecuteFunctions,
IHookFunctions,
IHttpRequestMethods,
2019-12-21 18:44:56 -08:00
ILoadOptionsFunctions,
IPollFunctions,
IRequestOptions,
2019-12-21 18:44:56 -08:00
ITriggerFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2019-12-21 18:44:56 -08:00
export async function togglApiRequest(
this:
| ITriggerFunctions
| IPollFunctions
| IHookFunctions
| IExecuteFunctions
| ILoadOptionsFunctions,
method: IHttpRequestMethods,
resource: string,
body: IDataObject = {},
query?: IDataObject,
uri?: string,
) {
const options: IRequestOptions = {
2019-12-21 18:44:56 -08:00
method,
qs: query,
uri: uri || `https://api.track.toggl.com/api/v9/me${resource}`,
2019-12-21 18:44:56 -08:00
body,
2020-10-22 06:46:03 -07:00
json: true,
2019-12-21 18:44:56 -08:00
};
if (Object.keys(options.body as IDataObject).length === 0) {
2019-12-21 18:44:56 -08:00
delete options.body;
}
try {
return await this.helpers.requestWithAuthentication.call(this, 'togglApi', options);
2019-12-21 18:44:56 -08:00
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2019-12-21 18:44:56 -08:00
}
}