2023-01-27 03:22:44 -08:00
|
|
|
import type { IExecuteFunctions } from 'n8n-core';
|
2022-08-17 08:50:24 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
|
|
|
IDataObject,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
} from 'n8n-workflow';
|
2022-08-17 08:50:24 -07:00
|
|
|
|
|
|
|
import { ouraApiRequest } from './GenericFunctions';
|
|
|
|
|
|
|
|
import { profileOperations } from './ProfileDescription';
|
|
|
|
|
|
|
|
import { summaryFields, summaryOperations } from './SummaryDescription';
|
2021-04-02 09:29:20 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import moment from 'moment';
|
2021-04-02 09:29:20 -07:00
|
|
|
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'ouraApi',
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-04-02 09:29:20 -07:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Profile',
|
|
|
|
value: 'profile',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Summary',
|
|
|
|
value: 'summary',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'summary',
|
|
|
|
},
|
|
|
|
...profileOperations,
|
|
|
|
...summaryOperations,
|
|
|
|
...summaryFields,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const length = items.length;
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
2022-12-02 03:53:59 -08:00
|
|
|
const resource = this.getNodeParameter('resource', 0);
|
|
|
|
const operation = this.getNodeParameter('operation', 0);
|
2021-04-02 09:29:20 -07:00
|
|
|
|
|
|
|
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 = {};
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { start, end } = this.getNodeParameter('filters', i) as {
|
|
|
|
start: string;
|
|
|
|
end: string;
|
|
|
|
};
|
2021-04-02 09:29:20 -07:00
|
|
|
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0);
|
2021-04-02 09:29:20 -07:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
if (!returnAll) {
|
2022-11-18 06:26:22 -08:00
|
|
|
const limit = this.getNodeParameter('limit', 0);
|
2021-04-02 09:29:20 -07:00
|
|
|
responseData = responseData.splice(0, limit);
|
|
|
|
}
|
|
|
|
} else if (operation === 'getReadiness') {
|
|
|
|
// ----------------------------------
|
|
|
|
// profile: getReadiness
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
responseData = await ouraApiRequest.call(this, 'GET', '/readiness', {}, qs);
|
|
|
|
responseData = responseData.readiness;
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
if (!returnAll) {
|
2022-11-18 06:26:22 -08:00
|
|
|
const limit = this.getNodeParameter('limit', 0);
|
2021-04-02 09:29:20 -07:00
|
|
|
responseData = responseData.splice(0, limit);
|
|
|
|
}
|
|
|
|
} else if (operation === 'getSleep') {
|
|
|
|
// ----------------------------------
|
|
|
|
// profile: getSleep
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
responseData = await ouraApiRequest.call(this, 'GET', '/sleep', {}, qs);
|
|
|
|
responseData = responseData.sleep;
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
if (!returnAll) {
|
2022-11-18 06:26:22 -08:00
|
|
|
const limit = this.getNodeParameter('limit', 0);
|
2021-04-02 09:29:20 -07:00
|
|
|
responseData = responseData.splice(0, limit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Array.isArray(responseData)
|
|
|
|
? returnData.push(...responseData)
|
|
|
|
: returnData.push(responseData);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|