mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
b2c674591c
* Add paired item helper and implement it in some nodes
203 lines
5.6 KiB
TypeScript
203 lines
5.6 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 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',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'stravaOAuth2Api',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Activity',
|
|
value: 'activity',
|
|
},
|
|
],
|
|
default: 'activity',
|
|
},
|
|
...activityOperations,
|
|
...activityFields,
|
|
],
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: INodeExecutionData[] = [];
|
|
const length = items.length;
|
|
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++) {
|
|
try {
|
|
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.strava.com/docs/reference/#api-Streams-getActivityStreams
|
|
if (operation === 'getStreams') {
|
|
const activityId = this.getNodeParameter('activityId', i) as string;
|
|
const keys = this.getNodeParameter('keys', i) as string[];
|
|
qs.keys = keys.toString();
|
|
qs.key_by_type = true;
|
|
|
|
responseData = await stravaApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/activities/${activityId}/streams`,
|
|
{},
|
|
qs,
|
|
);
|
|
}
|
|
//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.per_page = 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,
|
|
);
|
|
}
|
|
}
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray(responseData),
|
|
{ itemData: { item: i } },
|
|
);
|
|
|
|
returnData.push(...executionData);
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
const executionErrorData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray({ error: error.message }),
|
|
{ itemData: { item: i } },
|
|
);
|
|
returnData.push(...executionErrorData);
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
return this.prepareOutputData(returnData);
|
|
}
|
|
}
|