2020-01-28 06:46:38 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeTypeDescription,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-01-28 23:57:54 -08:00
|
|
|
import { harvestApiRequest, harvestApiRequestAllItems } from './GenericFunctions';
|
2020-01-28 06:46:38 -08:00
|
|
|
import { timeEntryOperations, timeEntryFields } from './TimeEntryDescription';
|
2020-01-28 23:04:52 -08:00
|
|
|
import { clientOperations, clientFields } from './ClientDescription';
|
|
|
|
import { companyOperations } from './CompanyDescription';
|
|
|
|
import { contactOperations, contactFields } from './ContactDescription';
|
|
|
|
import { expenseOperations, expenseFields } from './ExpenseDescription';
|
|
|
|
import { invoiceOperations, invoiceFields } from './InvoiceDescription';
|
|
|
|
import { projectOperations, projectFields } from './ProjectDescription';
|
|
|
|
import { taskOperations, taskFields } from './TaskDescription';
|
|
|
|
import { userOperations, userFields } from './UserDescription';
|
|
|
|
import { estimateOperations, estimateFields } from './EstimateDescription';
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-28 23:57:54 -08:00
|
|
|
/**
|
|
|
|
* fetch All resource using paginated calls
|
|
|
|
*/
|
|
|
|
async function getAllResource(this: IExecuteFunctions, resource: string, i: number) {
|
|
|
|
const endpoint = resource;
|
2020-01-29 15:51:14 -08:00
|
|
|
const qs: IDataObject = {};
|
|
|
|
const requestMethod = 'GET';
|
2020-01-28 23:57:54 -08:00
|
|
|
|
|
|
|
qs.per_page = 100;
|
|
|
|
|
|
|
|
const additionalFields = this.getNodeParameter('filters', i) as IDataObject;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
Object.assign(qs, additionalFields);
|
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
let responseData: IDataObject = {};
|
|
|
|
if(returnAll) {
|
|
|
|
responseData[resource] = await harvestApiRequestAllItems.call(this, requestMethod, qs, endpoint, resource);
|
|
|
|
} else {
|
|
|
|
const limit = this.getNodeParameter('limit', i) as string;
|
|
|
|
qs.per_page = limit;
|
|
|
|
responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
2020-01-28 23:57:54 -08:00
|
|
|
}
|
2020-01-29 15:51:14 -08:00
|
|
|
return responseData[resource] as IDataObject[];
|
2020-01-28 23:57:54 -08:00
|
|
|
}
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
export class Harvest implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Harvest',
|
|
|
|
name: 'harvest',
|
|
|
|
icon: 'file:harvest.png',
|
|
|
|
group: ['input'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Access data on Harvest',
|
|
|
|
defaults: {
|
|
|
|
name: 'Harvest',
|
|
|
|
color: '#22BB44',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'harvestApi',
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
2020-01-29 15:51:14 -08:00
|
|
|
|
2020-01-28 06:46:38 -08:00
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Client',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'clients',
|
2020-01-28 06:46:38 -08:00
|
|
|
},
|
2020-01-28 07:50:15 -08:00
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Company',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'companies',
|
2020-01-28 07:50:15 -08:00
|
|
|
},
|
2020-01-28 23:04:52 -08:00
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Contact',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'contacts',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Estimates',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'estimates',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Expense',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'expenses',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Invoice',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'invoices',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Project',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'projects',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Task',
|
2020-01-31 05:43:40 -08:00
|
|
|
value: 'tasks',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'Time Entries',
|
2020-01-31 05:32:14 -08:00
|
|
|
value: 'time_entries',
|
2020-01-28 23:04:52 -08:00
|
|
|
},
|
|
|
|
{
|
2020-01-29 15:51:14 -08:00
|
|
|
name: 'User',
|
2020-01-31 05:19:16 -08:00
|
|
|
value: 'users',
|
2020-01-29 15:51:14 -08:00
|
|
|
},
|
2020-01-28 06:46:38 -08:00
|
|
|
],
|
2020-01-31 05:43:40 -08:00
|
|
|
default: 'tasks',
|
2020-01-28 06:46:38 -08:00
|
|
|
description: 'The resource to operate on.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// operations
|
2020-01-28 23:04:52 -08:00
|
|
|
...clientOperations,
|
|
|
|
...companyOperations,
|
|
|
|
...contactOperations,
|
|
|
|
...estimateOperations,
|
|
|
|
...expenseOperations,
|
|
|
|
...invoiceOperations,
|
|
|
|
...projectOperations,
|
|
|
|
...taskOperations,
|
2020-01-28 06:46:38 -08:00
|
|
|
...timeEntryOperations,
|
2020-01-28 23:04:52 -08:00
|
|
|
...userOperations,
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
// fields
|
2020-01-28 23:04:52 -08:00
|
|
|
...clientFields,
|
|
|
|
...contactFields,
|
|
|
|
...estimateFields,
|
|
|
|
...expenseFields,
|
|
|
|
...invoiceFields,
|
|
|
|
...projectFields,
|
|
|
|
...taskFields,
|
|
|
|
...timeEntryFields,
|
|
|
|
...userFields
|
2020-01-28 06:46:38 -08:00
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
|
|
|
|
let endpoint = '';
|
|
|
|
let requestMethod = '';
|
|
|
|
let body: IDataObject | Buffer;
|
|
|
|
let qs: IDataObject;
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
body = {};
|
|
|
|
qs = {};
|
|
|
|
|
2020-01-31 05:32:14 -08:00
|
|
|
if (resource === 'time_entries') {
|
2020-01-28 06:46:38 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
2020-01-31 05:32:14 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'createByStartEnd') {
|
|
|
|
// ----------------------------------
|
|
|
|
// createByStartEnd
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'POST';
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = resource;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
body.project_id = this.getNodeParameter('projectId', i) as string;
|
|
|
|
body.task_id = this.getNodeParameter('taskId', i) as string;
|
|
|
|
body.spent_date = this.getNodeParameter('spentDate', i) as string;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
Object.assign(body, additionalFields);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'createByDuration') {
|
|
|
|
// ----------------------------------
|
|
|
|
// createByDuration
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'POST';
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = resource;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
body.project_id = this.getNodeParameter('projectId', i) as string;
|
|
|
|
body.task_id = this.getNodeParameter('taskId', i) as string;
|
|
|
|
body.spent_date = this.getNodeParameter('spentDate', i) as string;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
Object.assign(body, additionalFields);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
} else if (operation === 'deleteExternal') {
|
|
|
|
// ----------------------------------
|
|
|
|
// deleteExternal
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = `${resource}/${id}/external_reference`;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'restartTime') {
|
|
|
|
// ----------------------------------
|
|
|
|
// restartTime
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'PATCH';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = `${resource}/${id}/restart`;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'stopTime') {
|
|
|
|
// ----------------------------------
|
|
|
|
// stopTime
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'PATCH';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = `${resource}/${id}/stop`;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else if (operation === 'update') {
|
|
|
|
// ----------------------------------
|
|
|
|
// update
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'PATCH';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:32:14 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
Object.assign(body, updateFields);
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 06:46:38 -08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
throw new Error(`The operation "${operation}" is not known!`);
|
|
|
|
}
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'clients') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 04:47:20 -08:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
} else {
|
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'projects') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 04:47:20 -08:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
} else {
|
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:19:16 -08:00
|
|
|
} else if (resource === 'users') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:19:16 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:19:16 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'me') {
|
|
|
|
// ----------------------------------
|
2020-01-28 23:04:52 -08:00
|
|
|
// me
|
2020-01-28 07:50:15 -08:00
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
|
2020-01-31 05:19:16 -08:00
|
|
|
endpoint = `${resource}/me`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 05:19:16 -08:00
|
|
|
} else if (operation === 'create') {
|
|
|
|
// ----------------------------------
|
|
|
|
// createByDuration
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'POST';
|
|
|
|
endpoint = resource;
|
2020-01-31 05:32:14 -08:00
|
|
|
|
|
|
|
body.first_name = this.getNodeParameter('first_name', i) as string;
|
|
|
|
body.last_name = this.getNodeParameter('last_name', i) as string;
|
|
|
|
body.email = this.getNodeParameter('email', i) as string;
|
2020-01-31 05:19:16 -08:00
|
|
|
|
|
|
|
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
2020-01-31 05:24:42 -08:00
|
|
|
returnData.push(responseData);
|
|
|
|
|
|
|
|
} else if (operation === 'update') {
|
|
|
|
// ----------------------------------
|
|
|
|
// createByDuration
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'POST';
|
|
|
|
endpoint = resource;
|
|
|
|
|
2020-01-31 05:32:14 -08:00
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
Object.assign(qs, updateFields);
|
2020-01-31 05:24:42 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
2020-01-31 05:19:16 -08:00
|
|
|
returnData.push(responseData);
|
|
|
|
|
|
|
|
} else if (operation === 'delete') {
|
2020-01-31 04:47:20 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
2020-01-28 07:50:15 -08:00
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'contacts') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 04:47:20 -08:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
2020-01-28 07:50:15 -08:00
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'companies') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
endpoint = `company`;
|
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'tasks') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 04:47:20 -08:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
} else {
|
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'invoices') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 06:06:10 -08:00
|
|
|
} else if (operation === 'create') {
|
|
|
|
// ----------------------------------
|
|
|
|
// create
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'POST';
|
|
|
|
endpoint = resource;
|
|
|
|
|
|
|
|
body.name = this.getNodeParameter('name', i) as string;
|
|
|
|
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
|
|
returnData.push(responseData);
|
|
|
|
|
|
|
|
} else if (operation === 'update') {
|
|
|
|
// ----------------------------------
|
|
|
|
// createByDuration
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'POST';
|
|
|
|
endpoint = resource;
|
|
|
|
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
Object.assign(qs, updateFields);
|
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
|
|
returnData.push(responseData);
|
|
|
|
|
|
|
|
} else if (operation === 'delete') {
|
2020-01-31 04:47:20 -08:00
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
2020-01-28 07:50:15 -08:00
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'expenses') {
|
2020-01-28 07:50:15 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 23:04:52 -08:00
|
|
|
|
2020-01-31 04:47:20 -08:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
2020-01-28 23:04:52 -08:00
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-31 05:43:40 -08:00
|
|
|
} else if (resource === 'estimates') {
|
2020-01-28 23:04:52 -08:00
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
|
|
// get
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-28 23:04:52 -08:00
|
|
|
|
2020-01-29 15:51:14 -08:00
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
2020-01-28 23:04:52 -08:00
|
|
|
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
|
|
// getAll
|
|
|
|
// ----------------------------------
|
|
|
|
|
2020-01-31 05:43:40 -08:00
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, resource, i);
|
2020-01-28 23:57:54 -08:00
|
|
|
returnData.push.apply(returnData, responseData);
|
2020-01-28 07:50:15 -08:00
|
|
|
|
2020-01-31 04:47:20 -08:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'DELETE';
|
|
|
|
const id = this.getNodeParameter('id', i) as string;
|
2020-01-31 05:43:40 -08:00
|
|
|
endpoint = `${resource}/${id}`;
|
2020-01-31 04:47:20 -08:00
|
|
|
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
2020-01-28 07:50:15 -08:00
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
2020-01-28 06:46:38 -08:00
|
|
|
} else {
|
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|