mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
176 lines
4.8 KiB
TypeScript
176 lines
4.8 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
stravaApiRequest,
|
|
stravaApiRequestAllItems,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
activityFields,
|
|
activityOperations,
|
|
} from './ActivityDescription';
|
|
|
|
import * as moment from 'moment';
|
|
|
|
export class Strava implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Strava',
|
|
name: 'strava',
|
|
icon: 'file:strava.svg',
|
|
group: ['input'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Strava API.',
|
|
defaults: {
|
|
name: 'Strava',
|
|
color: '#ea5929',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'stravaOAuth2Api',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Activity',
|
|
value: 'activity',
|
|
},
|
|
],
|
|
default: 'activity',
|
|
description: 'The resource to operate on.',
|
|
},
|
|
...activityOperations,
|
|
...activityFields,
|
|
],
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
const length = (items.length as unknown) as number;
|
|
const qs: IDataObject = {};
|
|
let responseData;
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
if (resource === 'activity') {
|
|
//https://developers.strava.com/docs/reference/#api-Activities-createActivity
|
|
if (operation === 'create') {
|
|
const name = this.getNodeParameter('name', i) as string;
|
|
|
|
const type = this.getNodeParameter('type', i) as string;
|
|
|
|
const startDate = this.getNodeParameter('startDate', i) as string;
|
|
|
|
const elapsedTime = this.getNodeParameter('elapsedTime', i) as number;
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
if (additionalFields.trainer === true) {
|
|
additionalFields.trainer = 1;
|
|
}
|
|
|
|
if (additionalFields.commute === true) {
|
|
additionalFields.commute = 1;
|
|
}
|
|
|
|
const body: IDataObject = {
|
|
name,
|
|
type,
|
|
start_date_local: moment(startDate).toISOString(),
|
|
elapsed_time: elapsedTime,
|
|
};
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
responseData = await stravaApiRequest.call(this, 'POST', '/activities', body);
|
|
}
|
|
//https://developers.strava.com/docs/reference/#api-Activities-getActivityById
|
|
if (operation === 'get') {
|
|
const activityId = this.getNodeParameter('activityId', i) as string;
|
|
|
|
responseData = await stravaApiRequest.call(this, 'GET', `/activities/${activityId}`);
|
|
}
|
|
if (['getLaps', 'getZones', 'getKudos', 'getComments'].includes(operation)) {
|
|
|
|
const path: IDataObject = {
|
|
'getComments': 'comments',
|
|
'getZones': 'zones',
|
|
'getKudos': 'kudos',
|
|
'getLaps': 'laps',
|
|
};
|
|
|
|
const activityId = this.getNodeParameter('activityId', i) as string;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
responseData = await stravaApiRequest.call(this, 'GET', `/activities/${activityId}/${path[operation]}`);
|
|
|
|
if (returnAll === false) {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
responseData = responseData.splice(0, limit);
|
|
}
|
|
}
|
|
//https://developers.mailerlite.com/reference#subscribers
|
|
if (operation === 'getAll') {
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
if (returnAll) {
|
|
|
|
responseData = await stravaApiRequestAllItems.call(this, 'GET', `/activities`, {}, qs);
|
|
} else {
|
|
qs.limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
responseData = await stravaApiRequest.call(this, 'GET', `/activities`, {}, qs);
|
|
}
|
|
}
|
|
//https://developers.strava.com/docs/reference/#api-Activities-updateActivityById
|
|
if (operation === 'update') {
|
|
const activityId = this.getNodeParameter('activityId', i) as string;
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
if (updateFields.trainer === true) {
|
|
updateFields.trainer = 1;
|
|
}
|
|
|
|
if (updateFields.commute === true) {
|
|
updateFields.commute = 1;
|
|
}
|
|
|
|
const body: IDataObject = {};
|
|
|
|
Object.assign(body, updateFields);
|
|
|
|
responseData = await stravaApiRequest.call(this, 'PUT', `/activities/${activityId}`, body);
|
|
}
|
|
}
|
|
}
|
|
if (Array.isArray(responseData)) {
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
} else if (responseData !== undefined) {
|
|
returnData.push(responseData as IDataObject);
|
|
}
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|