diff --git a/nodes/Plutio/Plutio.node.ts b/nodes/Plutio/Plutio.node.ts
index 4d82ad6..1d3ae64 100644
--- a/nodes/Plutio/Plutio.node.ts
+++ b/nodes/Plutio/Plutio.node.ts
@@ -30,6 +30,7 @@ interface IProperyId {}
interface ICreatePlutioBody {
assignedTo?: [string];
+ followers?: [string];
title?: string;
name?: string;
taskGroupId?: string;
@@ -290,6 +291,7 @@ export class Plutio implements INodeType {
if ('task' === resource) {
if ('create' === operation) {
const assignees = this.getNodeParameter('assignees', i) as IDataObject;
+ const followedBy = this.getNodeParameter('followers', i) as IDataObject;
const options = this.getNodeParameter('options', i) as IDataObject;
if (options.projectId) {
@@ -382,7 +384,6 @@ export class Plutio implements INodeType {
const metadata = (assignees as IDataObject).assignee as IDataObject[];
let assignedTo: IProperyId[] = [];
const users: IProperyId[] = [];
-
if (metadata) {
// Push all assignees to a single array.
@@ -413,11 +414,50 @@ export class Plutio implements INodeType {
body.assignedTo = assignedTo as [string];
}
+
+ // add followers to user
+ if (followedBy) {
+ const metadata = (followedBy as IDataObject).follower as IDataObject[];
+ let followers: IProperyId[] = [];
+ const users: IProperyId[] = [];
+
+ if (metadata) {
+
+ // Push all assignees to a single array.
+ for (const data of metadata) {
+ followers.push(data.value as IDataObject);
+ }
+
+ // flatten followers array.
+ followers = followers.flatMap(a => a);
+
+ const customQs = {'status': 'active'};
+ await plutioApiRequest.call(this, 'GET', '/people', {}, customQs).then(people => {
+ for (const id of followers) {
+ for (const person of people) {
+ const userName = (person.name.last) ? `${person.name.first} ${person.name.last}` : `${person.name.first}`;
+ if (id === person._id || id === userName) {
+ users.push(person._id);
+ }
+ }
+ }
+ });
+ }
+
+ // remove duplicates.
+ followers = users.filter((c, index) => {
+ return users.indexOf(c) === index;
+ });
+
+ body.followers = followers as [string];
+ }
+
responseData = await plutioApiRequest.call(this, 'POST', '/tasks', body);
}
if ('update' === operation) {
const _id = this.getNodeParameter('_id', 0) as string;
const assignees = this.getNodeParameter('assignees', i) as IDataObject;
+ const followedBy = this.getNodeParameter('followers', i) as IDataObject;
const options = this.getNodeParameter('options', i) as IDataObject;
if (_id) {
@@ -510,25 +550,27 @@ export class Plutio implements INodeType {
let assignedTo: IProperyId[] = [];
const users: IProperyId[] = [];
- // Push all assignees to a single array.
- for (const data of metadata) {
- assignedTo.push(data.value as IDataObject);
- }
+ if (metadata) {
+ // Push all assignees to a single array.
+ for (const data of metadata) {
+ assignedTo.push(data.value as IDataObject);
+ }
- // flatten assignedTo array.
- assignedTo = assignedTo.flatMap(a => a);
+ // flatten assignedTo array.
+ assignedTo = assignedTo.flatMap(a => a);
- const customQs = {'status': 'active'};
- await plutioApiRequest.call(this, 'GET', '/people', {}, customQs).then(people => {
- for (const id of assignedTo) {
- for (const person of people) {
- const userName = (person.name.last) ? `${person.name.first} ${person.name.last}` : `${person.name.first}`;
- if (id === person._id || id === userName) {
- users.push(person._id);
+ const customQs = {'status': 'active'};
+ await plutioApiRequest.call(this, 'GET', '/people', {}, customQs).then(people => {
+ for (const id of assignedTo) {
+ for (const person of people) {
+ const userName = (person.name.last) ? `${person.name.first} ${person.name.last}` : `${person.name.first}`;
+ if (id === person._id || id === userName) {
+ users.push(person._id);
+ }
}
}
- }
- });
+ });
+ }
// remove duplicates.
assignedTo = users.filter((c, index) => {
@@ -537,8 +579,47 @@ export class Plutio implements INodeType {
body.assignedTo = assignedTo as [string];
}
+
+ // add followers to user
+ if (followedBy) {
+ const metadata = (followedBy as IDataObject).follower as IDataObject[];
+ let followers: IProperyId[] = [];
+ const users: IProperyId[] = [];
+
+ if (metadata) {
+
+ // Push all assignees to a single array.
+ for (const data of metadata) {
+ followers.push(data.value as IDataObject);
+ }
+
+ // flatten followers array.
+ followers = followers.flatMap(a => a);
+
+ const customQs = {'status': 'active'};
+ await plutioApiRequest.call(this, 'GET', '/people', {}, customQs).then(people => {
+ for (const id of followers) {
+ for (const person of people) {
+ const userName = (person.name.last) ? `${person.name.first} ${person.name.last}` : `${person.name.first}`;
+ if (id === person._id || id === userName) {
+ users.push(person._id);
+ }
+ }
+ }
+ });
+ }
+
+ // remove duplicates.
+ followers = users.filter((c, index) => {
+ return users.indexOf(c) === index;
+ });
+
+ body.followers = followers as [string];
+ }
+
responseData = await plutioApiRequest.call(this, 'PUT', '/tasks', body);
}
+
if ('get' === operation) {
const options = this.getNodeParameter('options', i) as IDataObject;
@@ -647,6 +728,8 @@ export class Plutio implements INodeType {
responseData = await plutioApiRequest.call(this, 'DELETE', '/tasks', body);
}
}
+
+ // Execute Comments.
if ('comment' === resource) {
if ('create' === operation) {
const entityId = this.getNodeParameter('entityId', i) as string;
@@ -697,6 +780,8 @@ export class Plutio implements INodeType {
responseData = await plutioApiRequest.call(this, 'DELETE', '/comments', body);
}
}
+
+ // execute Invoice.
if ('invoice' === resource) {
if ('create' === operation) {
const taxUi = this.getNodeParameter('taxUi', i) as IDataObject;
diff --git a/nodes/Plutio/descriptions/TaskDescription.ts b/nodes/Plutio/descriptions/TaskDescription.ts
index 3cb536c..2944947 100644
--- a/nodes/Plutio/descriptions/TaskDescription.ts
+++ b/nodes/Plutio/descriptions/TaskDescription.ts
@@ -242,6 +242,46 @@ export const taskDescription: INodeProperties[] = [
],
description: 'Name or ID of the user to whom the task has been assigned. Choose from the list, or specify an ID using an expression.',
},
+ {
+ displayName: 'Followers: Name or ID',
+ name: 'followers',
+ type: 'fixedCollection',
+ default: [],
+ placeholder: 'Add Person',
+ typeOptions: {
+ multipleValues: true,
+ },
+ displayOptions: {
+ show: {
+ resource: [
+ 'task',
+ ],
+ operation: [
+ 'update',
+ 'create',
+ ],
+ },
+ },
+ options: [
+ {
+ displayName: 'Follower',
+ name: 'follower',
+ values: [
+ {
+ displayName: 'Followers: Name or ID',
+ name: 'value',
+ type: 'options',
+ description: 'Choose from the list, or specify an ID using an expression',
+ default: '',
+ typeOptions: {
+ loadOptionsMethod: 'getUsers',
+ },
+ },
+ ],
+ },
+ ],
+ description: 'Name or ID of the user to who follows this task. Choose from the list, or specify an ID using an expression.',
+ },
// move & copy task operation
{
displayName: 'Task Group Name or ID',
diff --git a/package.json b/package.json
index 733e79d..02e4cce 100644
--- a/package.json
+++ b/package.json
@@ -7,19 +7,18 @@
],
"license": "MIT",
"homepage": "https://chykalophia.com",
- "contributors":
- [
- {
- "name": "Peter Krzyzek",
- "email": "peter@chykalophia.com",
- "url": "https://chykalophia.com"
- },
- {
- "name": "Joel Sanguenza",
- "email": "joel@chykalophia.com",
- "url": "https://chykalophia.com"
- }
- ],
+ "contributors": [
+ {
+ "name": "Peter Krzyzek",
+ "email": "peter@chykalophia.com",
+ "url": "https://chykalophia.com"
+ },
+ {
+ "name": "Joel Sanguenza",
+ "email": "joel@chykalophia.com",
+ "url": "https://chykalophia.com"
+ }
+ ],
"repository": {
"type": "git",
"url": "https://git.cklph.dev/Chykalophia/n8n-nodes-plutio.git"