mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
d6239d5bfb
* Update Compression node * Update Crypto node * Update DateTime node * Update EditImage node * Update EmailSend node * Update ExecuteWorkflow node * Update FTP node * Update Function node * Update FunctionItem node * Update ExecuteCommand node * Update OpenWeatherMap node * Update ReadBinaryFile node * Update ReadPdf node * Update RssFeedRead node & add URL validation * Update SpreadsheetFile node * Update Switch node * Update WriteBinaryFile node * Update Xml node * Update ActiveCampaign node * Update Airtable node * Update ApiTemplateIo node * Update Asana node * Update AwsLambda node * Update AwsSns node * Update AwsComprehend node * Update AwsRekognition node * Update AwsS3 node * Fix Error item * Update AwsSes node * Update AwsSqs node * Update Amqp node * Update Bitly node * Update Box node * Update Brandfetch node * Update CircleCi node * Update Clearbit node * Update ClickUp node * Update Cockpit node * Update CoinGecko node * Update Contentful node * Update ConvertKit node * Update Cortex node * Update CustomerIo node * Update DeepL node * Update Demio node * Update Disqus node * Update Drift node * Update Dropbox node * Update GetResponse node * Refactor & Update Ghost node * Update Github node * Update Gitlab node * Update GoogleAnalytics node * Update GoogleBooks node * Update GoogleCalendar node * Update GoogleDrive node * Update Gmail node * Update GoogleSheets node * Update GoogleSlides node * Update GoogleTasks node * Update Gotify node * Update GraphQL node * Update HackerNews node * Update Harvest node * Update HtmlExtract node * Update Hubspot node * Update Hunter node * Update Intercom node * Update Kafka node * Refactor & update Line node * Update LinkedIn node * Update Mailchimp node * Update Mandrill node * Update Matrix node * Update Mautic node * Update Medium node * Update MessageBird node * Update Mindee node * Update Mocean node * Update MondayCom node * Update MicrosoftExcel node * Update MicrosoftOneDrive node * Update MicrosoftOutlook node * Update Affinity node * Update Chargebee node * Update Discourse node * Update Freshdesk node * Update YouTube node * Update InvoiceNinja node * Update MailerLite node * Update Mailgun node * Update Mailjet node * Update Mattermost node * Update Nasa node * Update NextCloud node * Update OpenThesaurus node * Update Orbit node * Update PagerDuty node * Update PayPal node * Update Peekalink node * Update Phantombuster node * Update PostHog node * Update ProfitWell node * Refactor & Update Pushbullet node * Update QuickBooks node * Update Raindrop node * Update Reddit node * Update Rocketchat node * Update S3 node * Update Salesforce node * Update SendGrid node * Update SentryIo node * Update Shopify node * Update Signl4 node * Update Slack node * Update Spontit node * Update Spotify node * Update Storyblok node * Refactor & Update Strapi node * Refactor & Update Strava node * Update Taiga node * Refactor & update Tapfiliate node * Update Telegram node * Update TheHive node * Update Todoist node * Update TravisCi node * Update Trello node * Update Twilio node * Update Twist node * Update Twitter node * Update Uplead node * Update UProc node * Update Vero node * Update Webflow node * Update Wekan node * Update Wordpress node * Update Xero node * Update Yourls node * Update Zendesk node * Update ZohoCrm node * Refactor & Update Zoom node * Update Zulip node * Update Clockify node * Update MongoDb node * Update MySql node * Update MicrosoftTeams node * Update Stackby node * Refactor Discourse node * Support corner-case in Github node update * Support corner-case in Gitlab node update * Refactor & Update GoogleContacts node * Refactor Mindee node * Update Coda node * Lint fixes * Update Beeminder node * Update Google Firebase RealtimeDatabase node * Update HelpScout node * Update Mailcheck node * Update Paddle node * Update Pipedrive node * Update Pushover node * Update Segment node * Refactor & Update Vonage node * Added new conditions to warnings on execute batch cmd * Added keep only properties flag * Fixed code for keep only props * Added dependencies for image editing Co-authored-by: dali <servfrdali@yahoo.fr>
963 lines
29 KiB
TypeScript
963 lines
29 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodePropertyOptions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
clientFields,
|
|
clientOperations,
|
|
} from './ClientDescription';
|
|
|
|
import {
|
|
contactFields,
|
|
contactOperations,
|
|
} from './ContactDescription';
|
|
|
|
import {
|
|
companyOperations,
|
|
} from './CompanyDescription';
|
|
|
|
import {
|
|
estimateFields,
|
|
estimateOperations,
|
|
} from './EstimateDescription';
|
|
|
|
import {
|
|
expenseFields,
|
|
expenseOperations,
|
|
} from './ExpenseDescription';
|
|
|
|
import {
|
|
getAllResource,
|
|
harvestApiRequest,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
invoiceFields,
|
|
invoiceOperations,
|
|
} from './InvoiceDescription';
|
|
|
|
import {
|
|
projectFields,
|
|
projectOperations,
|
|
} from './ProjectDescription';
|
|
|
|
import {
|
|
taskFields,
|
|
taskOperations,
|
|
} from './TaskDescription';
|
|
|
|
import {
|
|
timeEntryFields,
|
|
timeEntryOperations,
|
|
} from './TimeEntryDescription';
|
|
|
|
import {
|
|
userFields,
|
|
userOperations,
|
|
} from './UserDescription';
|
|
|
|
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: '#e7863f',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'harvestApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: [
|
|
'accessToken',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'harvestOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: [
|
|
'oAuth2',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Authentication',
|
|
name: 'authentication',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Access Token',
|
|
value: 'accessToken',
|
|
},
|
|
{
|
|
name: 'OAuth2',
|
|
value: 'oAuth2',
|
|
},
|
|
],
|
|
default: 'accessToken',
|
|
description: 'Method of authentication.',
|
|
},
|
|
|
|
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
options: [
|
|
|
|
{
|
|
name: 'Client',
|
|
value: 'client',
|
|
},
|
|
{
|
|
name: 'Company',
|
|
value: 'company',
|
|
},
|
|
{
|
|
name: 'Contact',
|
|
value: 'contact',
|
|
},
|
|
{
|
|
name: 'Estimate',
|
|
value: 'estimate',
|
|
},
|
|
{
|
|
name: 'Expense',
|
|
value: 'expense',
|
|
},
|
|
{
|
|
name: 'Invoice',
|
|
value: 'invoice',
|
|
},
|
|
{
|
|
name: 'Project',
|
|
value: 'project',
|
|
},
|
|
{
|
|
name: 'Task',
|
|
value: 'task',
|
|
},
|
|
{
|
|
name: 'Time Entries',
|
|
value: 'timeEntry',
|
|
},
|
|
{
|
|
name: 'User',
|
|
value: 'user',
|
|
},
|
|
],
|
|
default: 'task',
|
|
description: 'The resource to operate on.',
|
|
},
|
|
|
|
// operations
|
|
...clientOperations,
|
|
...companyOperations,
|
|
...contactOperations,
|
|
...estimateOperations,
|
|
...expenseOperations,
|
|
...invoiceOperations,
|
|
...projectOperations,
|
|
...taskOperations,
|
|
...timeEntryOperations,
|
|
...userOperations,
|
|
|
|
{
|
|
displayName: 'Account ID',
|
|
name: 'accountId',
|
|
type: 'options',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getAccounts',
|
|
},
|
|
default: '',
|
|
},
|
|
|
|
// fields
|
|
...clientFields,
|
|
...contactFields,
|
|
...estimateFields,
|
|
...expenseFields,
|
|
...invoiceFields,
|
|
...projectFields,
|
|
...taskFields,
|
|
...timeEntryFields,
|
|
...userFields,
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
loadOptions: {
|
|
// Get all the available accounts to display them to user so that he can
|
|
// select them easily
|
|
async getAccounts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const { accounts } = await harvestApiRequest.call(this, 'GET', {}, '', {}, {}, 'https://id.getharvest.com/api/v2/accounts');
|
|
for (const account of accounts) {
|
|
const accountName = account.name;
|
|
const accountId = account.id;
|
|
returnData.push({
|
|
name: accountName,
|
|
value: accountId,
|
|
});
|
|
}
|
|
return returnData;
|
|
},
|
|
},
|
|
};
|
|
|
|
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++) {
|
|
try {
|
|
body = {};
|
|
qs = {};
|
|
|
|
if (resource === 'timeEntry') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `time_entries/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'time_entries', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'createByStartEnd') {
|
|
// ----------------------------------
|
|
// createByStartEnd
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'time_entries';
|
|
|
|
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;
|
|
|
|
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 === 'createByDuration') {
|
|
// ----------------------------------
|
|
// createByDuration
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'time_entries';
|
|
|
|
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;
|
|
|
|
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 === 'delete') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `time_entries/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else if (operation === 'deleteExternal') {
|
|
// ----------------------------------
|
|
// deleteExternal
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `time_entries/${id}/external_reference`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'restartTime') {
|
|
// ----------------------------------
|
|
// restartTime
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `time_entries/${id}/restart`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'stopTime') {
|
|
// ----------------------------------
|
|
// stopTime
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `time_entries/${id}/stop`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'update') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `time_entries/${id}`;
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
Object.assign(body, updateFields);
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The operation "${operation}" is not known!`);
|
|
}
|
|
|
|
} else if (resource === 'client') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `clients/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'clients', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'clients';
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `clients/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `clients/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'project') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `projects/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'projects', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'projects';
|
|
|
|
body.client_id = this.getNodeParameter('clientId', i) as string;
|
|
body.name = this.getNodeParameter('name', i) as string;
|
|
body.is_billable = this.getNodeParameter('isBillable', i) as string;
|
|
body.bill_by = this.getNodeParameter('billBy', i) as string;
|
|
body.budget_by = this.getNodeParameter('budgetBy', 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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `projects/${id}`;
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
Object.assign(body, updateFields);
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint, body);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'delete') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `projects/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'user') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `users/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'users', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'me') {
|
|
// ----------------------------------
|
|
// me
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
|
|
endpoint = `users/me`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'users';
|
|
|
|
body.first_name = this.getNodeParameter('firstName', i) as string;
|
|
body.last_name = this.getNodeParameter('lastName', i) as string;
|
|
body.email = this.getNodeParameter('email', 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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `users/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `users/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'contact') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `contacts/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'contacts', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'contacts';
|
|
|
|
body.client_id = this.getNodeParameter('clientId', i) as string;
|
|
body.first_name = this.getNodeParameter('firstName', 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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `contacts/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `contacts/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'company') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
endpoint = `company`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'task') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `tasks/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'tasks', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'tasks';
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `tasks/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `tasks/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'invoice') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `invoices/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'invoices', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'invoices';
|
|
|
|
body.client_id = this.getNodeParameter('clientId', 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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `invoices/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `invoices/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'expense') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `expenses/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'expenses', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'expenses';
|
|
|
|
body.project_id = this.getNodeParameter('projectId', i) as string;
|
|
body.expense_category_id = this.getNodeParameter('expenseCategoryId', i) as string;
|
|
body.spent_date = this.getNodeParameter('spentDate', 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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `expenses/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `expenses/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else if (resource === 'estimate') {
|
|
if (operation === 'get') {
|
|
// ----------------------------------
|
|
// get
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'GET';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
|
|
endpoint = `estimates/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
|
|
} else if (operation === 'getAll') {
|
|
// ----------------------------------
|
|
// getAll
|
|
// ----------------------------------
|
|
|
|
const responseData: IDataObject[] = await getAllResource.call(this, 'estimates', i);
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
} else if (operation === 'create') {
|
|
// ----------------------------------
|
|
// create
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'POST';
|
|
endpoint = 'estimates';
|
|
|
|
body.client_id = this.getNodeParameter('clientId', 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') {
|
|
// ----------------------------------
|
|
// update
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'PATCH';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `estimates/${id}`;
|
|
|
|
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') {
|
|
// ----------------------------------
|
|
// delete
|
|
// ----------------------------------
|
|
|
|
requestMethod = 'DELETE';
|
|
const id = this.getNodeParameter('id', i) as string;
|
|
endpoint = `estimates/${id}`;
|
|
|
|
const responseData = await harvestApiRequest.call(this, requestMethod, qs, endpoint);
|
|
returnData.push(responseData);
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`);
|
|
}
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
returnData.push({ error: error.message });
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
|
|
}
|