mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Oura node (#1609)
* ✨ Add Oura node * 🔨 Make it work * ⚡ Improvements * ⚡ Improvements * 🎨 Fix SVG size and position * ⚡ Fix parameter error & other improvements Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
178
packages/nodes-base/nodes/Oura/Oura.node.ts
Normal file
178
packages/nodes-base/nodes/Oura/Oura.node.ts
Normal file
@@ -0,0 +1,178 @@
|
||||
import {
|
||||
IExecuteFunctions,
|
||||
} from 'n8n-core';
|
||||
|
||||
import {
|
||||
IDataObject,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import {
|
||||
ouraApiRequest,
|
||||
} from './GenericFunctions';
|
||||
|
||||
import {
|
||||
profileOperations,
|
||||
} from './ProfileDescription';
|
||||
|
||||
import {
|
||||
summaryFields,
|
||||
summaryOperations,
|
||||
} from './SummaryDescription';
|
||||
|
||||
import * as moment from 'moment';
|
||||
|
||||
export class Oura implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Oura',
|
||||
name: 'oura',
|
||||
icon: 'file:oura.svg',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Consume Oura API',
|
||||
defaults: {
|
||||
name: 'Oura',
|
||||
color: '#2f4a73',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
credentials: [
|
||||
{
|
||||
name: 'ouraApi',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Resource',
|
||||
name: 'resource',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Profile',
|
||||
value: 'profile',
|
||||
},
|
||||
{
|
||||
name: 'Summary',
|
||||
value: 'summary',
|
||||
},
|
||||
],
|
||||
default: 'summary',
|
||||
description: 'Resource to consume.',
|
||||
},
|
||||
...profileOperations,
|
||||
...summaryOperations,
|
||||
...summaryFields,
|
||||
],
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
const length = items.length;
|
||||
|
||||
let responseData;
|
||||
const returnData: IDataObject[] = [];
|
||||
|
||||
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 === 'profile') {
|
||||
|
||||
// *********************************************************************
|
||||
// profile
|
||||
// *********************************************************************
|
||||
|
||||
// https://cloud.ouraring.com/docs/personal-info
|
||||
|
||||
if (operation === 'get') {
|
||||
|
||||
// ----------------------------------
|
||||
// profile: get
|
||||
// ----------------------------------
|
||||
|
||||
responseData = await ouraApiRequest.call(this, 'GET', '/userinfo');
|
||||
|
||||
}
|
||||
|
||||
} else if (resource === 'summary') {
|
||||
|
||||
// *********************************************************************
|
||||
// summary
|
||||
// *********************************************************************
|
||||
|
||||
// https://cloud.ouraring.com/docs/daily-summaries
|
||||
|
||||
const qs: IDataObject = {};
|
||||
|
||||
const { start, end } = this.getNodeParameter('filters', i) as { start: string; end: string; };
|
||||
|
||||
const returnAll = this.getNodeParameter('returnAll', 0) as boolean;
|
||||
|
||||
if (start) {
|
||||
qs.start = moment(start).format('YYYY-MM-DD');
|
||||
}
|
||||
|
||||
if (end) {
|
||||
qs.end = moment(end).format('YYYY-MM-DD');
|
||||
}
|
||||
|
||||
if (operation === 'getActivity') {
|
||||
|
||||
// ----------------------------------
|
||||
// profile: getActivity
|
||||
// ----------------------------------
|
||||
|
||||
responseData = await ouraApiRequest.call(this, 'GET', '/activity', {}, qs);
|
||||
responseData = responseData.activity;
|
||||
|
||||
if (returnAll === false) {
|
||||
const limit = this.getNodeParameter('limit', 0) as number;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
|
||||
} else if (operation === 'getReadiness') {
|
||||
|
||||
// ----------------------------------
|
||||
// profile: getReadiness
|
||||
// ----------------------------------
|
||||
|
||||
responseData = await ouraApiRequest.call(this, 'GET', '/readiness', {}, qs);
|
||||
responseData = responseData.readiness;
|
||||
|
||||
if (returnAll === false) {
|
||||
const limit = this.getNodeParameter('limit', 0) as number;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
|
||||
} else if (operation === 'getSleep') {
|
||||
|
||||
// ----------------------------------
|
||||
// profile: getSleep
|
||||
// ----------------------------------
|
||||
|
||||
responseData = await ouraApiRequest.call(this, 'GET', '/sleep', {}, qs);
|
||||
responseData = responseData.sleep;
|
||||
|
||||
if (returnAll === false) {
|
||||
const limit = this.getNodeParameter('limit', 0) as number;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Array.isArray(responseData)
|
||||
? returnData.push(...responseData)
|
||||
: returnData.push(responseData);
|
||||
|
||||
}
|
||||
|
||||
return [this.helpers.returnJsonArray(returnData)];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user