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.

54 lines
1.1 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2019-12-21 18:44:56 -08:00
import type {
IDataObject,
2019-12-21 18:44:56 -08:00
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IPollFunctions,
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: string,
resource: string,
body: IDataObject = {},
query?: IDataObject,
uri?: string,
) {
const credentials = await this.getCredentials('togglApi');
const headerWithAuthentication = Object.assign(
{},
{
Authorization: ` Basic ${Buffer.from(
`${credentials.username}:${credentials.password}`,
).toString('base64')}`,
},
);
2019-12-21 18:44:56 -08:00
const options: OptionsWithUri = {
headers: headerWithAuthentication,
method,
qs: query,
uri: uri || `https://api.track.toggl.com/api/v8${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.request(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
}
}