2021-01-12 03:40:49 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
ILoadOptionsFunctions
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
IHookFunctions,
|
|
|
|
IWebhookFunctions,
|
2021-04-16 09:33:36 -07:00
|
|
|
NodeOperationError,
|
2021-01-12 03:40:49 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
beeminderApiRequest,
|
2021-01-13 10:34:29 -08:00
|
|
|
beeminderApiRequestAllItems,
|
2021-01-12 03:40:49 -08:00
|
|
|
} from './GenericFunctions';
|
|
|
|
|
|
|
|
export async function createDatapoint(this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions, data: IDataObject) {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('beeminderApi');
|
2021-01-12 03:40:49 -08:00
|
|
|
|
|
|
|
const endpoint = `/users/${credentials.user}/goals/${data.goalName}/datapoints.json`;
|
|
|
|
|
|
|
|
return await beeminderApiRequest.call(this, 'POST', endpoint, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getAllDatapoints(this: IExecuteFunctions | IHookFunctions | ILoadOptionsFunctions, data: IDataObject) {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('beeminderApi');
|
2021-01-12 03:40:49 -08:00
|
|
|
|
|
|
|
const endpoint = `/users/${credentials.user}/goals/${data.goalName}/datapoints.json`;
|
|
|
|
|
|
|
|
if (data.count !== undefined) {
|
|
|
|
return beeminderApiRequest.call(this, 'GET', endpoint, {}, data);
|
|
|
|
}
|
|
|
|
|
2021-01-13 10:34:29 -08:00
|
|
|
return await beeminderApiRequestAllItems.call(this, 'GET', endpoint, {}, data);
|
2021-01-12 03:40:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function updateDatapoint(this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions, data: IDataObject) {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('beeminderApi');
|
2021-01-12 03:40:49 -08:00
|
|
|
|
|
|
|
const endpoint = `/users/${credentials.user}/goals/${data.goalName}/datapoints/${data.datapointId}.json`;
|
|
|
|
|
|
|
|
return await beeminderApiRequest.call(this, 'PUT', endpoint, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function deleteDatapoint(this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions, data: IDataObject) {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('beeminderApi');
|
2021-01-12 03:40:49 -08:00
|
|
|
|
|
|
|
const endpoint = `/users/${credentials.user}/goals/${data.goalName}/datapoints/${data.datapointId}.json`;
|
|
|
|
|
|
|
|
return await beeminderApiRequest.call(this, 'DELETE', endpoint);
|
|
|
|
}
|
|
|
|
|