2020-08-26 00:09:07 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
2019-11-05 07:17:06 -08:00
|
|
|
} from 'n8n-core';
|
2020-08-26 00:09:07 -07:00
|
|
|
|
2019-11-05 07:17:06 -08:00
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
ILoadOptionsFunctions,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeExecutionData,
|
2019-11-05 07:17:06 -08:00
|
|
|
INodePropertyOptions,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
2019-11-05 07:17:06 -08:00
|
|
|
} from 'n8n-workflow';
|
2020-08-26 00:09:07 -07:00
|
|
|
|
2019-11-05 07:17:06 -08:00
|
|
|
import {
|
2019-11-06 23:40:12 -08:00
|
|
|
todoistApiRequest,
|
2019-11-05 07:17:06 -08:00
|
|
|
} from './GenericFunctions';
|
|
|
|
|
2019-11-06 23:40:12 -08:00
|
|
|
interface IBodyCreateTask {
|
|
|
|
content: string;
|
2021-06-08 16:55:36 -07:00
|
|
|
description?: string;
|
2019-11-06 23:40:12 -08:00
|
|
|
project_id?: number;
|
2021-01-31 10:09:24 -08:00
|
|
|
section_id?: number;
|
2019-11-06 23:40:12 -08:00
|
|
|
parent?: number;
|
|
|
|
order?: number;
|
|
|
|
label_ids?: number[];
|
|
|
|
priority?: number;
|
|
|
|
due_string?: string;
|
|
|
|
due_datetime?: string;
|
|
|
|
due_date?: string;
|
|
|
|
due_lang?: string;
|
|
|
|
}
|
2019-11-05 07:17:06 -08:00
|
|
|
|
2019-11-05 12:56:10 -08:00
|
|
|
export class Todoist implements INodeType {
|
2019-11-05 07:17:06 -08:00
|
|
|
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Todoist',
|
|
|
|
name: 'todoist',
|
|
|
|
icon: 'file:todoist.png',
|
|
|
|
group: ['output'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Consume Todoist API',
|
|
|
|
defaults: {
|
|
|
|
name: 'Todoist',
|
|
|
|
color: '#c02428',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'todoistApi',
|
|
|
|
required: true,
|
2020-08-26 00:09:07 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
authentication: [
|
|
|
|
'apiKey',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'todoistOAuth2Api',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
authentication: [
|
|
|
|
'oAuth2',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-11-06 23:40:12 -08:00
|
|
|
],
|
2019-11-05 07:17:06 -08:00
|
|
|
properties: [
|
2020-08-26 00:09:07 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'API Key',
|
|
|
|
value: 'apiKey',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'OAuth2',
|
|
|
|
value: 'oAuth2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'apiKey',
|
|
|
|
description: 'The resource to operate on.',
|
|
|
|
},
|
2019-11-06 23:40:12 -08:00
|
|
|
{
|
2019-11-05 12:56:10 -08:00
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Task',
|
|
|
|
value: 'task',
|
|
|
|
description: 'Task resource.',
|
|
|
|
},
|
|
|
|
],
|
2019-11-06 23:40:12 -08:00
|
|
|
default: 'task',
|
2019-11-05 12:56:10 -08:00
|
|
|
required: true,
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
2019-11-05 07:17:06 -08:00
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
2019-11-05 12:56:10 -08:00
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a new task',
|
2019-11-05 07:17:06 -08:00
|
|
|
},
|
2020-08-17 13:41:05 -07:00
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
name: 'Close',
|
|
|
|
value: 'close',
|
|
|
|
description: 'Close a task',
|
2020-08-17 13:41:05 -07:00
|
|
|
},
|
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a task',
|
2020-08-17 13:41:05 -07:00
|
|
|
},
|
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a task',
|
2020-08-17 13:41:05 -07:00
|
|
|
},
|
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
|
|
|
description: 'Get all tasks',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Reopen',
|
|
|
|
value: 'reopen',
|
|
|
|
description: 'Reopen a task',
|
2020-08-17 13:41:05 -07:00
|
|
|
},
|
2019-11-05 07:17:06 -08:00
|
|
|
],
|
2019-11-05 12:56:10 -08:00
|
|
|
default: 'create',
|
|
|
|
description: 'The operation to perform.',
|
2019-11-06 23:40:12 -08:00
|
|
|
},
|
|
|
|
{
|
2019-11-05 12:56:10 -08:00
|
|
|
displayName: 'Project',
|
|
|
|
name: 'project',
|
2019-11-06 23:40:12 -08:00
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
2019-11-05 12:56:10 -08:00
|
|
|
loadOptionsMethod: 'getProjects',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
2019-11-06 23:40:12 -08:00
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
2020-08-26 00:09:07 -07:00
|
|
|
],
|
2019-11-05 12:56:10 -08:00
|
|
|
},
|
|
|
|
},
|
2020-01-04 20:19:10 -08:00
|
|
|
default: '',
|
2020-08-17 13:41:05 -07:00
|
|
|
description: 'The project you want to operate on.',
|
2019-11-05 15:50:55 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Labels',
|
|
|
|
name: 'labels',
|
|
|
|
type: 'multiOptions',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getLabels',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
2019-11-06 23:40:12 -08:00
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
2020-08-26 00:09:07 -07:00
|
|
|
],
|
2019-11-05 15:50:55 -08:00
|
|
|
},
|
|
|
|
},
|
2019-11-06 23:40:12 -08:00
|
|
|
default: [],
|
|
|
|
required: false,
|
2019-11-05 15:50:55 -08:00
|
|
|
description: 'Labels',
|
2019-11-06 23:40:12 -08:00
|
|
|
},
|
|
|
|
{
|
2019-11-05 12:56:10 -08:00
|
|
|
displayName: 'Content',
|
|
|
|
name: 'content',
|
2019-11-06 23:40:12 -08:00
|
|
|
type: 'string',
|
|
|
|
typeOptions: {
|
2019-11-05 12:56:10 -08:00
|
|
|
rows: 5,
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
2019-11-06 23:40:12 -08:00
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
2020-08-26 00:09:07 -07:00
|
|
|
],
|
2019-11-05 12:56:10 -08:00
|
|
|
},
|
|
|
|
},
|
2020-01-04 20:19:10 -08:00
|
|
|
default: '',
|
2019-11-06 23:40:12 -08:00
|
|
|
required: true,
|
2019-11-05 12:56:10 -08:00
|
|
|
description: 'Task content',
|
2019-11-05 15:50:55 -08:00
|
|
|
},
|
2020-08-17 13:41:05 -07:00
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
displayName: 'Task ID',
|
|
|
|
name: 'taskId',
|
2020-08-17 13:41:05 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2020-08-26 00:09:07 -07:00
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
'close',
|
|
|
|
'get',
|
|
|
|
'reopen',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2020-08-17 13:41:05 -07:00
|
|
|
},
|
2019-11-06 23:40:12 -08:00
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
displayName: 'Additional Fields',
|
2019-11-05 12:56:10 -08:00
|
|
|
name: 'options',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Option',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
2019-11-06 23:40:12 -08:00
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
2020-08-26 00:09:07 -07:00
|
|
|
],
|
2019-11-05 12:56:10 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
2021-06-08 16:55:36 -07:00
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'A description for the task.',
|
|
|
|
},
|
2020-08-26 00:09:07 -07:00
|
|
|
{
|
|
|
|
displayName: 'Due Date Time',
|
|
|
|
name: 'dueDateTime',
|
|
|
|
type: 'dateTime',
|
|
|
|
default: '',
|
|
|
|
description: 'Specific date and time in RFC3339 format in UTC.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Due String',
|
|
|
|
name: 'dueString',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Human defined task due date (ex.: “next Monday”, “Tomorrow”). Value is set using local (not UTC) time.',
|
|
|
|
},
|
2019-11-05 12:56:10 -08:00
|
|
|
{
|
|
|
|
displayName: 'Priority',
|
|
|
|
name: 'priority',
|
2019-11-06 23:40:12 -08:00
|
|
|
type: 'number',
|
|
|
|
typeOptions: {
|
|
|
|
numberStepSize: 1,
|
|
|
|
maxValue: 4,
|
|
|
|
minValue: 1,
|
|
|
|
},
|
2019-11-05 12:56:10 -08:00
|
|
|
default: 1,
|
|
|
|
description: 'Task priority from 1 (normal) to 4 (urgent).',
|
2019-11-06 23:40:12 -08:00
|
|
|
},
|
2021-01-31 10:09:24 -08:00
|
|
|
{
|
|
|
|
displayName: 'Section',
|
|
|
|
name: 'section',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getSections',
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'project',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
description: 'The section you want to operate on.',
|
|
|
|
},
|
2020-08-26 00:09:07 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
|
|
|
description: 'If all results should be returned or only up to a given limit.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
|
|
|
default: 100,
|
|
|
|
description: 'How many results to return.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Filters',
|
|
|
|
name: 'filters',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Option',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'task',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
2019-11-06 23:40:12 -08:00
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
displayName: 'Filter',
|
|
|
|
name: 'filter',
|
|
|
|
type: 'string',
|
2019-11-05 12:56:10 -08:00
|
|
|
default: '',
|
2020-08-26 00:09:07 -07:00
|
|
|
description: 'Filter by any <a href="https://get.todoist.help/hc/en-us/articles/205248842">supported filter.</a>',
|
2019-11-05 12:56:10 -08:00
|
|
|
},
|
|
|
|
{
|
2020-08-26 00:09:07 -07:00
|
|
|
displayName: 'IDs',
|
|
|
|
name: 'ids',
|
2019-11-06 23:40:12 -08:00
|
|
|
type: 'string',
|
2019-11-05 12:56:10 -08:00
|
|
|
default: '',
|
2020-08-26 00:09:07 -07:00
|
|
|
description: 'A list of the task IDs to retrieve, this should be a comma separated list.',
|
2019-11-05 12:56:10 -08:00
|
|
|
},
|
2020-08-26 00:09:07 -07:00
|
|
|
{
|
|
|
|
displayName: 'Label ID',
|
|
|
|
name: 'labelId',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getLabels',
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
description: 'Filter tasks by label.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Lang',
|
|
|
|
name: 'lang',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'IETF language tag defining what language filter is written in, if differs from default English',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Project ID',
|
|
|
|
name: 'projectId',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getProjects',
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Filter tasks by project id.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2019-11-06 23:40:12 -08:00
|
|
|
};
|
2019-11-05 07:17:06 -08:00
|
|
|
|
2019-11-06 23:40:12 -08:00
|
|
|
methods = {
|
2019-11-05 12:56:10 -08:00
|
|
|
loadOptions: {
|
|
|
|
// Get all the available projects to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
2020-08-26 00:09:07 -07:00
|
|
|
const projects = await todoistApiRequest.call(this, 'GET', '/projects');
|
2019-11-05 12:56:10 -08:00
|
|
|
for (const project of projects) {
|
|
|
|
const projectName = project.name;
|
|
|
|
const projectId = project.id;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: projectName,
|
|
|
|
value: projectId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-06 23:40:12 -08:00
|
|
|
return returnData;
|
2019-11-05 15:50:55 -08:00
|
|
|
},
|
|
|
|
|
2021-01-31 10:09:24 -08:00
|
|
|
// Get all the available sections in the selected project, to display them
|
|
|
|
// to user so that he can select one easily
|
|
|
|
async getSections(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
|
|
|
|
const projectId = this.getCurrentNodeParameter('project') as number;
|
|
|
|
if (projectId) {
|
|
|
|
const qs: IDataObject = {project_id: projectId};
|
|
|
|
const sections = await todoistApiRequest.call(this, 'GET', '/sections', {}, qs);
|
|
|
|
for (const section of sections) {
|
|
|
|
const sectionName = section.name;
|
|
|
|
const sectionId = section.id;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: sectionName,
|
|
|
|
value: sectionId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
|
2019-11-05 15:50:55 -08:00
|
|
|
// Get all the available labels to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
2020-08-26 00:09:07 -07:00
|
|
|
const labels = await todoistApiRequest.call(this, 'GET', '/labels');
|
|
|
|
|
2019-11-05 15:50:55 -08:00
|
|
|
for (const label of labels) {
|
|
|
|
const labelName = label.name;
|
|
|
|
const labelId = label.id;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: labelName,
|
|
|
|
value: labelId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-06 23:40:12 -08:00
|
|
|
return returnData;
|
2020-10-22 06:46:03 -07:00
|
|
|
},
|
|
|
|
},
|
2019-11-06 23:40:12 -08:00
|
|
|
};
|
|
|
|
|
2020-08-26 00:09:07 -07:00
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
const length = items.length as unknown as number;
|
|
|
|
const qs: IDataObject = {};
|
|
|
|
let responseData;
|
2020-08-26 00:28:39 -07:00
|
|
|
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
|
2020-08-26 00:09:07 -07:00
|
|
|
for (let i = 0; i < length; i++) {
|
2019-11-05 12:56:10 -08:00
|
|
|
|
2020-08-26 00:09:07 -07:00
|
|
|
if (resource === 'task') {
|
|
|
|
if (operation === 'create') {
|
2020-08-26 00:28:39 -07:00
|
|
|
//https://developer.todoist.com/rest/v1/#create-a-new-task
|
|
|
|
const content = this.getNodeParameter('content', i) as string;
|
|
|
|
const projectId = this.getNodeParameter('project', i) as number;
|
|
|
|
const labels = this.getNodeParameter('labels', i) as number[];
|
|
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
2019-11-05 12:56:10 -08:00
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
const body: IBodyCreateTask = {
|
|
|
|
content,
|
|
|
|
project_id: projectId,
|
|
|
|
priority: (options.priority!) ? parseInt(options.priority as string, 10) : 1,
|
|
|
|
};
|
2019-11-05 15:50:55 -08:00
|
|
|
|
2021-06-08 16:55:36 -07:00
|
|
|
if (options.description) {
|
|
|
|
body.description = options.description as string;
|
|
|
|
}
|
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
if (options.dueDateTime) {
|
|
|
|
body.due_datetime = options.dueDateTime as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.dueString) {
|
|
|
|
body.due_string = options.dueString as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (labels !== undefined && labels.length !== 0) {
|
|
|
|
body.label_ids = labels;
|
|
|
|
}
|
2019-11-05 12:56:10 -08:00
|
|
|
|
2021-01-31 10:09:24 -08:00
|
|
|
if (options.section) {
|
|
|
|
body.section_id = options.section as number;
|
|
|
|
}
|
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
responseData = await todoistApiRequest.call(this, 'POST', '/tasks', body);
|
2020-08-26 00:09:07 -07:00
|
|
|
}
|
|
|
|
if (operation === 'close') {
|
2020-08-26 00:28:39 -07:00
|
|
|
//https://developer.todoist.com/rest/v1/#close-a-task
|
2020-08-26 00:09:07 -07:00
|
|
|
const id = this.getNodeParameter('taskId', i) as string;
|
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
responseData = await todoistApiRequest.call(this, 'POST', `/tasks/${id}/close`);
|
2020-08-26 00:09:07 -07:00
|
|
|
|
|
|
|
responseData = { success: true };
|
|
|
|
|
|
|
|
}
|
|
|
|
if (operation === 'delete') {
|
2020-08-26 00:28:39 -07:00
|
|
|
//https://developer.todoist.com/rest/v1/#delete-a-task
|
2020-08-26 00:09:07 -07:00
|
|
|
const id = this.getNodeParameter('taskId', i) as string;
|
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
responseData = await todoistApiRequest.call(this, 'DELETE', `/tasks/${id}`);
|
2020-08-26 00:09:07 -07:00
|
|
|
|
|
|
|
responseData = { success: true };
|
|
|
|
|
|
|
|
}
|
|
|
|
if (operation === 'get') {
|
|
|
|
//https://developer.todoist.com/rest/v1/#get-an-active-task
|
|
|
|
const id = this.getNodeParameter('taskId', i) as string;
|
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
responseData = await todoistApiRequest.call(this, 'GET', `/tasks/${id}`);
|
2020-08-26 00:09:07 -07:00
|
|
|
}
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
//https://developer.todoist.com/rest/v1/#get-active-tasks
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
const filters = this.getNodeParameter('filters', i) as IDataObject;
|
|
|
|
if (filters.projectId) {
|
|
|
|
qs.project_id = filters.projectId as string;
|
|
|
|
}
|
|
|
|
if (filters.labelId) {
|
|
|
|
qs.label_id = filters.labelId as string;
|
|
|
|
}
|
|
|
|
if (filters.filter) {
|
|
|
|
qs.filter = filters.filter as string;
|
|
|
|
}
|
|
|
|
if (filters.lang) {
|
|
|
|
qs.lang = filters.lang as string;
|
|
|
|
}
|
|
|
|
if (filters.ids) {
|
|
|
|
qs.ids = filters.ids as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await todoistApiRequest.call(this, 'GET', '/tasks', {}, qs);
|
|
|
|
|
|
|
|
if (!returnAll) {
|
|
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
responseData = responseData.splice(0, limit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (operation === 'reopen') {
|
|
|
|
//https://developer.todoist.com/rest/v1/#get-an-active-task
|
|
|
|
const id = this.getNodeParameter('taskId', i) as string;
|
|
|
|
|
2020-08-26 00:28:39 -07:00
|
|
|
responseData = await todoistApiRequest.call(this, 'POST', `/tasks/${id}/reopen`);
|
2020-08-26 00:09:07 -07:00
|
|
|
|
|
|
|
responseData = { success: true };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Array.isArray(responseData)) {
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
} else {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
2019-11-05 12:56:10 -08:00
|
|
|
}
|
2020-08-26 00:09:07 -07:00
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
2019-11-05 07:17:06 -08:00
|
|
|
}
|
2020-08-26 00:09:07 -07:00
|
|
|
}
|