2020-10-22 01:17:39 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
2020-10-22 01:19:17 -07:00
|
|
|
} from 'request';
|
2020-10-22 01:17:39 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IWebhookFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
2021-04-16 09:33:36 -07:00
|
|
|
IDataObject, NodeApiError,
|
2020-10-22 01:17:39 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function stravaApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IHookFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, headers: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
method,
|
|
|
|
form: body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://www.strava.com/api/v3${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-10-22 01:17:39 -07:00
|
|
|
};
|
|
|
|
try {
|
|
|
|
if (Object.keys(headers).length !== 0) {
|
|
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
|
|
}
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.getNode().type.includes('Trigger') && resource.includes('/push_subscriptions')) {
|
2022-04-14 23:00:47 -07:00
|
|
|
const credentials = await this.getCredentials('stravaOAuth2Api');
|
2020-10-22 01:17:39 -07:00
|
|
|
if (method === 'GET') {
|
|
|
|
qs.client_id = credentials.clientId;
|
|
|
|
qs.client_secret = credentials.clientSecret;
|
|
|
|
} else {
|
|
|
|
body.client_id = credentials.clientId;
|
|
|
|
body.client_secret = credentials.clientSecret;
|
|
|
|
}
|
|
|
|
//@ts-ignore
|
|
|
|
return this.helpers?.request(options);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
//@ts-ignore
|
2021-03-18 04:27:19 -07:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'stravaOAuth2Api', options, { includeCredentialsOnRefreshOnBody: true });
|
2020-10-22 01:17:39 -07:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-10-22 01:17:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function stravaApiRequestAllItems(this: IHookFunctions | ILoadOptionsFunctions | IExecuteFunctions, method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query.per_page = 30;
|
|
|
|
|
|
|
|
query.page = 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await stravaApiRequest.call(this, method, resource, body, query);
|
|
|
|
query.page++;
|
|
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} while (
|
|
|
|
responseData.length !== 0
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|