mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
334 lines
12 KiB
TypeScript
334 lines
12 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
INodeExecutionData,
|
|
INodePropertyOptions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
microsoftApiRequest,
|
|
microsoftApiRequestAllItems,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
linkedResourceFields,
|
|
linkedResourceOperations,
|
|
} from './LinkedResourceDescription';
|
|
|
|
import {
|
|
taskFields,
|
|
taskOperations,
|
|
} from './TaskDescription';
|
|
|
|
import {
|
|
listFields,
|
|
listOperations,
|
|
} from './ListDescription';
|
|
|
|
import moment from 'moment-timezone';
|
|
|
|
export class MicrosoftToDo implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Microsoft To Do',
|
|
name: 'microsoftToDo',
|
|
icon: 'file:todo.svg',
|
|
group: ['input'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Microsoft To Do API.',
|
|
defaults: {
|
|
name: 'Microsoft To Do',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'microsoftToDoOAuth2Api',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Linked Resource',
|
|
value: 'linkedResource',
|
|
},
|
|
{
|
|
name: 'List',
|
|
value: 'list',
|
|
},
|
|
{
|
|
name: 'Task',
|
|
value: 'task',
|
|
},
|
|
],
|
|
default: 'task',
|
|
},
|
|
...linkedResourceOperations,
|
|
...linkedResourceFields,
|
|
...taskOperations,
|
|
...taskFields,
|
|
...listOperations,
|
|
...listFields,
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
loadOptions: {
|
|
// Get all the team's channels to display them to user so that he can
|
|
// select them easily
|
|
async getTaskLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const lists = await microsoftApiRequestAllItems.call(this, 'value', 'GET', '/todo/lists');
|
|
for (const list of lists) {
|
|
returnData.push({
|
|
name: list.displayName as string,
|
|
value: list.id as string,
|
|
});
|
|
}
|
|
return returnData;
|
|
},
|
|
},
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
const length = items.length;
|
|
const qs: IDataObject = {};
|
|
let responseData;
|
|
const timezone = this.getTimezone();
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
for (let i = 0; i < length; i++) {
|
|
try {
|
|
|
|
if (resource === 'linkedResource') {
|
|
// https://docs.microsoft.com/en-us/graph/api/todotask-post-linkedresources?view=graph-rest-1.0&tabs=http
|
|
if (operation === 'create') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
const body: IDataObject = {
|
|
applicationName: this.getNodeParameter('applicationName', i) as string,
|
|
displayName: this.getNodeParameter('displayName', i) as string,
|
|
...this.getNodeParameter('additionalFields', i) as IDataObject[],
|
|
};
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'POST', `/todo/lists/${taskListId}/tasks/${taskId}/linkedResources`, body, qs);
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/linkedresource-delete?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'delete') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
const linkedResourceId = this.getNodeParameter('linkedResourceId', i) as string;
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'DELETE', `/todo/lists/${taskListId}/tasks/${taskId}/linkedResources/${linkedResourceId}`, undefined, qs);
|
|
responseData = { success: true };
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/linkedresource-get?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'get') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
const linkedResourceId = this.getNodeParameter('linkedResourceId', i) as string;
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'GET', `/todo/lists/${taskListId}/tasks/${taskId}/linkedResources/${linkedResourceId}`, undefined, qs);
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotask-list-linkedresources?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'getAll') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
if (returnAll === true) {
|
|
responseData = await microsoftApiRequestAllItems.call(this, 'value', 'GET', `/todo/lists/${taskListId}/tasks/${taskId}/linkedResources`, undefined, qs);
|
|
} else {
|
|
qs['$top'] = this.getNodeParameter('limit', i) as number;
|
|
responseData = await microsoftApiRequest.call(this, 'GET', `/todo/lists/${taskListId}/tasks/${taskId}/linkedResources`, undefined, qs);
|
|
responseData = responseData.value;
|
|
}
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/linkedresource-update?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'update') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
const linkedResourceId = this.getNodeParameter('linkedResourceId', i) as string;
|
|
|
|
const body: IDataObject = {
|
|
...this.getNodeParameter('updateFields', i) as IDataObject[],
|
|
};
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'PATCH', `/todo/lists/${taskListId}/tasks/${taskId}/linkedResources/${linkedResourceId}`, body, qs);
|
|
|
|
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The operation "${operation}" is not supported!`);
|
|
}
|
|
} else if (resource === 'task') {
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotasklist-post-tasks?view=graph-rest-1.0&tabs=http
|
|
if (operation === 'create') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const body: IDataObject = {
|
|
title: this.getNodeParameter('title', i) as string,
|
|
...this.getNodeParameter('additionalFields', i) as IDataObject[],
|
|
};
|
|
|
|
if (body.content) {
|
|
body.body = {
|
|
content: body.content,
|
|
contentType: 'html',
|
|
};
|
|
}
|
|
|
|
if (body.dueDateTime) {
|
|
body.dueDateTime = {
|
|
dateTime: moment.tz(body.dueDateTime, timezone).format(),
|
|
timeZone: timezone,
|
|
};
|
|
}
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'POST', `/todo/lists/${taskListId}/tasks`, body, qs);
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotask-delete?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'delete') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'DELETE', `/todo/lists/${taskListId}/tasks/${taskId}`, undefined, qs);
|
|
responseData = { success: true };
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotask-get?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'get') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'GET', `/todo/lists/${taskListId}/tasks/${taskId}`, undefined, qs);
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotasklist-list-tasks?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'getAll') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
if (returnAll === true) {
|
|
responseData = await microsoftApiRequestAllItems.call(this, 'value', 'GET', `/todo/lists/${taskListId}/tasks/`, undefined, qs);
|
|
} else {
|
|
qs['$top'] = this.getNodeParameter('limit', i) as number;
|
|
responseData = await microsoftApiRequest.call(this, 'GET', `/todo/lists/${taskListId}/tasks/`, undefined, qs);
|
|
responseData = responseData.value;
|
|
}
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotask-update?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'update') {
|
|
|
|
const taskListId = this.getNodeParameter('taskListId', i) as string;
|
|
const taskId = this.getNodeParameter('taskId', i) as string;
|
|
const body: IDataObject = {
|
|
...this.getNodeParameter('updateFields', i) as IDataObject[],
|
|
};
|
|
|
|
if (body.content) {
|
|
body.body = {
|
|
content: body.content,
|
|
contentType: 'html',
|
|
};
|
|
}
|
|
|
|
if (body.dueDateTime) {
|
|
body.dueDateTime = {
|
|
dateTime: moment.tz(body.dueDateTime, timezone).format(),
|
|
timeZone: timezone,
|
|
};
|
|
}
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'PATCH', `/todo/lists/${taskListId}/tasks/${taskId}`, body, qs);
|
|
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The operation "${operation}" is not supported!`);
|
|
}
|
|
|
|
} else if (resource === 'list') {
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todo-post-lists?view=graph-rest-1.0&tabs=http
|
|
if (operation === 'create') {
|
|
|
|
const body = {
|
|
displayName: this.getNodeParameter('displayName', i) as string,
|
|
};
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'POST', '/todo/lists/', body, qs);
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotasklist-delete?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'delete') {
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
responseData = await microsoftApiRequest.call(this, 'DELETE', `/todo/lists/${listId}`, undefined, qs);
|
|
responseData = { success: true };
|
|
|
|
//https://docs.microsoft.com/en-us/graph/api/todotasklist-get?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'get') {
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
responseData = await microsoftApiRequest.call(this, 'GET', `/todo/lists/${listId}`, undefined, qs);
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todo-list-lists?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'getAll') {
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
if (returnAll === true) {
|
|
responseData = await microsoftApiRequestAllItems.call(this, 'value', 'GET', '/todo/lists', undefined, qs);
|
|
} else {
|
|
qs['$top'] = this.getNodeParameter('limit', i) as number;
|
|
responseData = await microsoftApiRequest.call(this, 'GET', '/todo/lists', undefined, qs);
|
|
responseData = responseData.value;
|
|
}
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todotasklist-update?view=graph-rest-1.0&tabs=http
|
|
} else if (operation === 'update') {
|
|
|
|
const listId = this.getNodeParameter('listId', i) as string;
|
|
const body = {
|
|
displayName: this.getNodeParameter('displayName', i) as string,
|
|
};
|
|
|
|
responseData = await microsoftApiRequest.call(this, 'PATCH', `/todo/lists/${listId}`, body, qs);
|
|
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), `The operation "${operation}" is not supported!`);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
returnData.push({ error: error.message });
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
Array.isArray(responseData)
|
|
? returnData.push(...responseData)
|
|
: returnData.push(responseData);
|
|
}
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|