2020-01-07 11:56:42 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from 'n8n-core';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
2020-01-07 11:56:42 -08:00
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeTypeDescription,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
INodePropertyOptions,
|
|
|
|
} from 'n8n-workflow';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
2020-01-07 11:56:42 -08:00
|
|
|
import {
|
2020-04-09 13:13:14 -07:00
|
|
|
validateJSON,
|
2020-01-07 11:56:42 -08:00
|
|
|
zendeskApiRequest,
|
|
|
|
zendeskApiRequestAllItems,
|
|
|
|
} from './GenericFunctions';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
2020-01-07 11:56:42 -08:00
|
|
|
import {
|
|
|
|
ticketFields,
|
|
|
|
ticketOperations
|
|
|
|
} from './TicketDescription';
|
2020-04-06 16:11:50 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
ticketFieldFields,
|
|
|
|
ticketFieldOperations
|
|
|
|
} from './TicketFieldDescription';
|
|
|
|
|
2020-01-07 11:56:42 -08:00
|
|
|
import {
|
|
|
|
ITicket,
|
|
|
|
IComment,
|
|
|
|
} from './TicketInterface';
|
2020-04-09 13:13:14 -07:00
|
|
|
import { response } from 'express';
|
2020-01-07 11:56:42 -08:00
|
|
|
|
|
|
|
export class Zendesk implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Zendesk',
|
|
|
|
name: 'zendesk',
|
|
|
|
icon: 'file:zendesk.png',
|
|
|
|
group: ['output'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Consume Zendesk API',
|
|
|
|
defaults: {
|
|
|
|
name: 'Zendesk',
|
|
|
|
color: '#13353c',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'zendeskApi',
|
|
|
|
required: true,
|
2020-06-09 05:00:41 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
authentication: [
|
|
|
|
'accessToken',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'zendeskOAuth2Api',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
authentication: [
|
|
|
|
'oAuth2',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-01-07 11:56:42 -08:00
|
|
|
],
|
|
|
|
properties: [
|
2020-06-09 05:00:41 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Access Token',
|
|
|
|
value: 'accessToken',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'OAuth2',
|
|
|
|
value: 'oAuth2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'accessToken',
|
|
|
|
description: 'The resource to operate on.',
|
|
|
|
},
|
2020-01-07 11:56:42 -08:00
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Ticket',
|
|
|
|
value: 'ticket',
|
|
|
|
description: 'Tickets are the means through which your end users (customers) communicate with agents in Zendesk Support.',
|
|
|
|
},
|
2020-04-06 16:11:50 -07:00
|
|
|
{
|
|
|
|
name: 'Ticket Field',
|
|
|
|
value: 'ticketField',
|
|
|
|
description: 'Manage system and custom ticket fields',
|
|
|
|
},
|
2020-01-07 11:56:42 -08:00
|
|
|
],
|
|
|
|
default: 'ticket',
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
2020-04-06 16:11:50 -07:00
|
|
|
// TICKET
|
2020-01-07 11:56:42 -08:00
|
|
|
...ticketOperations,
|
|
|
|
...ticketFields,
|
2020-04-06 16:11:50 -07:00
|
|
|
// TICKET FIELDS
|
|
|
|
...ticketFieldOperations,
|
|
|
|
...ticketFieldFields,
|
2020-01-07 11:56:42 -08:00
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
methods = {
|
|
|
|
loadOptions: {
|
2020-04-09 13:13:14 -07:00
|
|
|
// Get all the custom fields to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const customFields = [
|
|
|
|
'text',
|
|
|
|
'textarea',
|
|
|
|
'date',
|
|
|
|
'integer',
|
|
|
|
'decimal',
|
|
|
|
'regexp',
|
|
|
|
'multiselect',
|
|
|
|
'tagger',
|
|
|
|
];
|
|
|
|
const fields = await zendeskApiRequestAllItems.call(this, 'ticket_fields', 'GET', '/ticket_fields');
|
|
|
|
for (const field of fields) {
|
|
|
|
if (customFields.includes(field.type)) {
|
|
|
|
const fieldName = field.title;
|
|
|
|
const fieldId = field.id;
|
|
|
|
returnData.push({
|
|
|
|
name: fieldName,
|
|
|
|
value: fieldId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
2020-01-07 11:56:42 -08:00
|
|
|
// Get all the groups to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getGroups(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const groups = await zendeskApiRequestAllItems.call(this, 'groups', 'GET', '/groups');
|
|
|
|
for (const group of groups) {
|
|
|
|
const groupName = group.name;
|
|
|
|
const groupId = group.id;
|
|
|
|
returnData.push({
|
|
|
|
name: groupName,
|
|
|
|
value: groupId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
// Get all the tags to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const tags = await zendeskApiRequestAllItems.call(this, 'tags', 'GET', '/tags');
|
|
|
|
for (const tag of tags) {
|
|
|
|
const tagName = tag.name;
|
|
|
|
const tagId = tag.name;
|
|
|
|
returnData.push({
|
|
|
|
name: tagName,
|
|
|
|
value: tagId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
const length = items.length as unknown as number;
|
2020-01-07 19:15:37 -08:00
|
|
|
const qs: IDataObject = {};
|
2020-01-07 11:56:42 -08:00
|
|
|
let responseData;
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/introduction
|
|
|
|
if (resource === 'ticket') {
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/tickets
|
|
|
|
if (operation === 'create') {
|
|
|
|
const description = this.getNodeParameter('description', i) as string;
|
2020-04-06 16:11:50 -07:00
|
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
2020-01-07 11:56:42 -08:00
|
|
|
const comment: IComment = {
|
|
|
|
body: description,
|
|
|
|
};
|
|
|
|
const body: ITicket = {
|
|
|
|
comment,
|
|
|
|
};
|
2020-04-06 16:11:50 -07:00
|
|
|
if (jsonParameters) {
|
2020-04-09 13:13:14 -07:00
|
|
|
const additionalFieldsJson = this.getNodeParameter('additionalFieldsJson', i) as string;
|
|
|
|
|
|
|
|
if (additionalFieldsJson !== '' ) {
|
|
|
|
|
|
|
|
if (validateJSON(additionalFieldsJson) !== undefined) {
|
|
|
|
|
|
|
|
Object.assign(body, JSON.parse(additionalFieldsJson));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
throw new Error('Additional fields must be a valid JSON');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
|
|
|
|
if (additionalFields.type) {
|
|
|
|
body.type = additionalFields.type as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.externalId) {
|
|
|
|
body.external_id = additionalFields.externalId as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.subject) {
|
|
|
|
body.subject = additionalFields.subject as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.status) {
|
|
|
|
body.status = additionalFields.status as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.recipient) {
|
|
|
|
body.recipient = additionalFields.recipient as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.group) {
|
|
|
|
body.group = additionalFields.group as string;
|
|
|
|
}
|
|
|
|
if (additionalFields.tags) {
|
|
|
|
body.tags = additionalFields.tags as string[];
|
|
|
|
}
|
2020-04-11 05:56:25 -07:00
|
|
|
if (additionalFields.customFieldsUi) {
|
|
|
|
body.custom_fields = (additionalFields.customFieldsUi as IDataObject).customFieldsValues as IDataObject[];
|
2020-04-06 16:11:50 -07:00
|
|
|
}
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
2020-04-06 16:11:50 -07:00
|
|
|
responseData = await zendeskApiRequest.call(this, 'POST', '/tickets', { ticket: body });
|
|
|
|
responseData = responseData.ticket;
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/tickets#update-ticket
|
|
|
|
if (operation === 'update') {
|
|
|
|
const ticketId = this.getNodeParameter('id', i) as string;
|
2020-04-06 16:11:50 -07:00
|
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i) as boolean;
|
2020-01-07 11:56:42 -08:00
|
|
|
const body: ITicket = {};
|
2020-04-09 13:13:14 -07:00
|
|
|
|
2020-04-06 16:11:50 -07:00
|
|
|
if (jsonParameters) {
|
2020-04-09 13:13:14 -07:00
|
|
|
const updateFieldsJson = this.getNodeParameter('updateFieldsJson', i) as string;
|
|
|
|
|
|
|
|
if (updateFieldsJson !== '' ) {
|
|
|
|
|
|
|
|
if (validateJSON(updateFieldsJson) !== undefined) {
|
|
|
|
|
|
|
|
Object.assign(body, JSON.parse(updateFieldsJson));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
throw new Error('Additional fields must be a valid JSON');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
|
|
|
|
|
|
if (updateFields.type) {
|
|
|
|
body.type = updateFields.type as string;
|
|
|
|
}
|
|
|
|
if (updateFields.externalId) {
|
|
|
|
body.external_id = updateFields.externalId as string;
|
|
|
|
}
|
|
|
|
if (updateFields.subject) {
|
|
|
|
body.subject = updateFields.subject as string;
|
|
|
|
}
|
|
|
|
if (updateFields.status) {
|
|
|
|
body.status = updateFields.status as string;
|
|
|
|
}
|
|
|
|
if (updateFields.recipient) {
|
|
|
|
body.recipient = updateFields.recipient as string;
|
|
|
|
}
|
|
|
|
if (updateFields.group) {
|
|
|
|
body.group = updateFields.group as string;
|
|
|
|
}
|
|
|
|
if (updateFields.tags) {
|
|
|
|
body.tags = updateFields.tags as string[];
|
|
|
|
}
|
2020-04-11 05:56:25 -07:00
|
|
|
if (updateFields.customFieldsUi) {
|
|
|
|
body.custom_fields = (updateFields.customFieldsUi as IDataObject).customFieldsValues as IDataObject[];
|
2020-04-06 16:11:50 -07:00
|
|
|
}
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
2020-04-06 16:11:50 -07:00
|
|
|
responseData = await zendeskApiRequest.call(this, 'PUT', `/tickets/${ticketId}`, { ticket: body });
|
|
|
|
responseData = responseData.ticket;
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/tickets#show-ticket
|
|
|
|
if (operation === 'get') {
|
|
|
|
const ticketId = this.getNodeParameter('id', i) as string;
|
2020-04-06 16:11:50 -07:00
|
|
|
responseData = await zendeskApiRequest.call(this, 'GET', `/tickets/${ticketId}`, {});
|
|
|
|
responseData = responseData.ticket;
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/search#list-search-results
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
2020-01-07 19:15:37 -08:00
|
|
|
qs.query = 'type:ticket';
|
2020-01-07 11:56:42 -08:00
|
|
|
if (options.status) {
|
2020-01-07 19:15:37 -08:00
|
|
|
qs.query += ` status:${options.status}`;
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
|
|
|
if (options.sortBy) {
|
|
|
|
qs.sort_by = options.sortBy;
|
|
|
|
}
|
|
|
|
if (options.sortOrder) {
|
|
|
|
qs.sort_order = options.sortOrder;
|
|
|
|
}
|
2020-04-06 16:11:50 -07:00
|
|
|
if (returnAll) {
|
|
|
|
responseData = await zendeskApiRequestAllItems.call(this, 'results', 'GET', `/search`, {}, qs);
|
|
|
|
} else {
|
|
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
qs.per_page = limit;
|
|
|
|
responseData = await zendeskApiRequest.call(this, 'GET', `/search`, {}, qs);
|
|
|
|
responseData = responseData.results;
|
2020-01-07 11:56:42 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/tickets#delete-ticket
|
|
|
|
if (operation === 'delete') {
|
|
|
|
const ticketId = this.getNodeParameter('id', i) as string;
|
|
|
|
try {
|
|
|
|
responseData = await zendeskApiRequest.call(this, 'DELETE', `/tickets/${ticketId}`, {});
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Zendesk Error: ${err}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 16:11:50 -07:00
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/ticket_fields
|
|
|
|
if (resource === 'ticketField') {
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/tickets#show-ticket
|
|
|
|
if (operation === 'get') {
|
|
|
|
const ticketFieldId = this.getNodeParameter('ticketFieldId', i) as string;
|
|
|
|
responseData = await zendeskApiRequest.call(this, 'GET', `/ticket_fields/${ticketFieldId}`, {});
|
|
|
|
responseData = responseData.ticket_field;
|
|
|
|
}
|
|
|
|
//https://developer.zendesk.com/rest_api/docs/support/ticket_fields#list-ticket-fields
|
|
|
|
if (operation === 'getAll') {
|
2020-04-09 13:13:14 -07:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
if (returnAll) {
|
|
|
|
responseData = await zendeskApiRequestAllItems.call(this, 'ticket_fields', 'GET', '/ticket_fields', {}, qs);
|
|
|
|
} else {
|
|
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
qs.limit = limit;
|
|
|
|
responseData = await zendeskApiRequestAllItems.call(this, 'ticket_fields', 'GET', '/ticket_fields', {}, qs);
|
|
|
|
responseData = responseData.slice(0, limit);
|
|
|
|
}
|
2020-04-06 16:11:50 -07:00
|
|
|
}
|
|
|
|
}
|
2020-01-07 11:56:42 -08:00
|
|
|
if (Array.isArray(responseData)) {
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
} else {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|