2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IExecuteFunctions,
|
2021-06-04 20:39:39 -07:00
|
|
|
IDataObject,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodePropertyOptions,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeOperationError } from 'n8n-workflow';
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { microsoftApiRequest, microsoftApiRequestAllItems } from './GenericFunctions';
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { linkedResourceFields, linkedResourceOperations } from './LinkedResourceDescription';
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { taskFields, taskOperations } from './TaskDescription';
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { listFields, listOperations } from './ListDescription';
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import moment from 'moment-timezone';
|
2021-06-04 20:39:39 -07:00
|
|
|
|
|
|
|
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',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-06-04 20:39:39 -07:00
|
|
|
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();
|
2022-08-30 08:55:33 -07:00
|
|
|
const returnData: INodeExecutionData[] = [];
|
2022-04-22 09:29:51 -07:00
|
|
|
const length = items.length;
|
2021-06-04 20:39:39 -07:00
|
|
|
const qs: IDataObject = {};
|
|
|
|
let responseData;
|
|
|
|
const timezone = this.getTimezone();
|
2022-12-02 03:53:59 -08:00
|
|
|
const resource = this.getNodeParameter('resource', 0);
|
|
|
|
const operation = this.getNodeParameter('operation', 0);
|
2021-06-04 20:39:39 -07:00
|
|
|
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,
|
2022-11-22 04:43:28 -08:00
|
|
|
...this.getNodeParameter('additionalFields', i),
|
2021-06-04 20:39:39 -07:00
|
|
|
};
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}/linkedResources`,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'DELETE',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}/linkedResources/${linkedResourceId}`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
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;
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}/linkedResources/${linkedResourceId}`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
|
|
|
// 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;
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
if (returnAll) {
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'value',
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}/linkedResources`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
} else {
|
2022-12-02 12:54:28 -08:00
|
|
|
qs.$top = this.getNodeParameter('limit', i);
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}/linkedResources`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
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 = {
|
2022-11-18 07:29:44 -08:00
|
|
|
...this.getNodeParameter('updateFields', i),
|
2021-06-04 20:39:39 -07:00
|
|
|
};
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'PATCH',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}/linkedResources/${linkedResourceId}`,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
} else {
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`The operation "${operation}" is not supported!`,
|
|
|
|
{ itemIndex: i },
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
}
|
|
|
|
} 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,
|
2022-11-18 07:29:44 -08:00
|
|
|
...this.getNodeParameter('additionalFields', i),
|
2021-06-04 20:39:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
if (body.content) {
|
|
|
|
body.body = {
|
|
|
|
content: body.content,
|
|
|
|
contentType: 'html',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (body.dueDateTime) {
|
|
|
|
body.dueDateTime = {
|
|
|
|
dateTime: moment.tz(body.dueDateTime, timezone).format(),
|
|
|
|
timeZone: timezone,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'POST',
|
|
|
|
`/todo/lists/${taskListId}/tasks`,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'DELETE',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
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;
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
|
|
|
// 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;
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
if (returnAll) {
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'value',
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${taskListId}/tasks/`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
} else {
|
2022-12-02 12:54:28 -08:00
|
|
|
qs.$top = this.getNodeParameter('limit', i);
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${taskListId}/tasks/`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
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 = {
|
2022-11-18 07:29:44 -08:00
|
|
|
...this.getNodeParameter('updateFields', i),
|
2021-06-04 20:39:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
if (body.content) {
|
|
|
|
body.body = {
|
|
|
|
content: body.content,
|
|
|
|
contentType: 'html',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (body.dueDateTime) {
|
|
|
|
body.dueDateTime = {
|
|
|
|
dateTime: moment.tz(body.dueDateTime, timezone).format(),
|
|
|
|
timeZone: timezone,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'PATCH',
|
|
|
|
`/todo/lists/${taskListId}/tasks/${taskId}`,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
} else {
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`The operation "${operation}" is not supported!`,
|
|
|
|
{ itemIndex: i },
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
}
|
|
|
|
} 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;
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'DELETE',
|
|
|
|
`/todo/lists/${listId}`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
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;
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
`/todo/lists/${listId}`,
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
|
|
|
|
// https://docs.microsoft.com/en-us/graph/api/todo-list-lists?view=graph-rest-1.0&tabs=http
|
|
|
|
} else if (operation === 'getAll') {
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
2022-12-02 12:54:28 -08:00
|
|
|
if (returnAll) {
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
'value',
|
|
|
|
'GET',
|
|
|
|
'/todo/lists',
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
} else {
|
2022-12-02 12:54:28 -08:00
|
|
|
qs.$top = this.getNodeParameter('limit', i);
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'GET',
|
|
|
|
'/todo/lists',
|
|
|
|
undefined,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await microsoftApiRequest.call(
|
|
|
|
this,
|
|
|
|
'PATCH',
|
|
|
|
`/todo/lists/${listId}`,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
} else {
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`The operation "${operation}" is not supported!`,
|
|
|
|
{ itemIndex: i },
|
|
|
|
);
|
2021-06-04 20:39:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
if (this.continueOnFail()) {
|
2022-08-30 08:55:33 -07:00
|
|
|
const executionErrorData = this.helpers.constructExecutionMetaData(
|
|
|
|
this.helpers.returnJsonArray({ error: error.message }),
|
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
|
|
|
returnData.push(...executionErrorData);
|
2021-06-04 20:39:39 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
2022-08-30 08:55:33 -07:00
|
|
|
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
2023-02-27 19:39:43 -08:00
|
|
|
this.helpers.returnJsonArray(responseData as IDataObject),
|
2022-08-30 08:55:33 -07:00
|
|
|
{ itemData: { item: i } },
|
|
|
|
);
|
|
|
|
|
|
|
|
returnData.push(...executionData);
|
2021-06-04 20:39:39 -07:00
|
|
|
}
|
2022-08-30 08:55:33 -07:00
|
|
|
return this.prepareOutputData(returnData);
|
2021-06-04 20:39:39 -07:00
|
|
|
}
|
|
|
|
}
|