2019-11-26 12:38:38 -08:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeTypeDescription,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
INodePropertyOptions,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
|
|
jiraApiRequest,
|
|
|
|
jiraApiRequestAllItems,
|
|
|
|
validateJSON,
|
|
|
|
} from './GenericFunctions';
|
2019-11-27 14:42:28 -08:00
|
|
|
import {
|
|
|
|
issueOpeations,
|
|
|
|
issueFields,
|
|
|
|
} from './IssueDescription';
|
2019-11-26 12:38:38 -08:00
|
|
|
|
|
|
|
export class Jira implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'Jira',
|
|
|
|
name: 'Jira',
|
|
|
|
icon: 'file:jira.png',
|
|
|
|
group: ['output'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Consume Jira API',
|
|
|
|
defaults: {
|
|
|
|
name: 'Jira',
|
|
|
|
color: '#c02428',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'jiraApi',
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Issue',
|
|
|
|
value: 'issue',
|
|
|
|
description: 'Creates an issue or, where the option to create subtasks is enabled in Jira, a subtask',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'issue',
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
2019-11-27 14:42:28 -08:00
|
|
|
...issueOpeations,
|
|
|
|
...issueFields,
|
2019-11-26 12:38:38 -08:00
|
|
|
],
|
|
|
|
};
|
|
|
|
|
2019-11-27 14:42:28 -08:00
|
|
|
methods = {
|
|
|
|
loadOptions: {
|
|
|
|
// Get all the projects to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
let projects;
|
|
|
|
try {
|
|
|
|
projects = await jiraApiRequest.call(this, '/project/search', 'GET');
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Jira Error: ${err}`);
|
|
|
|
}
|
|
|
|
for (const project of projects.values) {
|
|
|
|
const projectName = project.name;
|
|
|
|
const projectId = project.id;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: projectName,
|
|
|
|
value: projectId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Get all the issue types to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getIssueTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
let issueTypes;
|
|
|
|
try {
|
|
|
|
issueTypes = await jiraApiRequest.call(this, '/issuetype', 'GET');
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Jira Error: ${err}`);
|
|
|
|
}
|
|
|
|
for (const issueType of issueTypes) {
|
|
|
|
const issueTypeName = issueType.name;
|
|
|
|
const issueTypeId = issueType.id;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: issueTypeName,
|
|
|
|
value: issueTypeId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Get all the labels to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
let labels;
|
|
|
|
try {
|
|
|
|
labels = await jiraApiRequest.call(this, '/label', 'GET');
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Jira Error: ${err}`);
|
|
|
|
}
|
|
|
|
for (const label of labels.values) {
|
|
|
|
const labelName = label;
|
|
|
|
const labelId = label;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: labelName,
|
|
|
|
value: labelId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Get all the priorities to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getPriorities(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
let priorities;
|
|
|
|
try {
|
|
|
|
priorities = await jiraApiRequest.call(this, '/priority', 'GET');
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Jira Error: ${err}`);
|
|
|
|
}
|
|
|
|
for (const priority of priorities) {
|
|
|
|
const priorityName = priority.name;
|
|
|
|
const priorityId = priority.id;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: priorityName,
|
|
|
|
value: priorityId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Get all the users to display them to user so that he can
|
|
|
|
// select them easily
|
|
|
|
async getUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
let users;
|
|
|
|
try {
|
|
|
|
users = await jiraApiRequest.call(this, '/users/search', 'GET');
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Jira Error: ${err}`);
|
|
|
|
}
|
|
|
|
for (const user of users) {
|
|
|
|
const userName = user.displayName;
|
|
|
|
const userId = user.accountId;
|
|
|
|
|
|
|
|
returnData.push({
|
|
|
|
name: userName,
|
|
|
|
value: userId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-11-26 12:38:38 -08:00
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
2019-11-27 14:42:28 -08:00
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
const length = items.length as unknown as number;
|
|
|
|
let responseData;
|
|
|
|
let qs: IDataObject = {};
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
if (resource === 'issue') {
|
|
|
|
if (operation === 'create') {
|
|
|
|
const summary = this.getNodeParameter('summary', i) as string;
|
|
|
|
const projectId = this.getNodeParameter('project', i) as string;
|
|
|
|
const issueTypeId = this.getNodeParameter('issueType', i) as string;
|
|
|
|
const parentIssueId = this.getNodeParameter('parentIssueId', i) as string;
|
|
|
|
const parentIssueIdValue = this.getNodeParameter('parentIssueIdValue', i) as string;
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
const body = {
|
|
|
|
fields: {
|
|
|
|
summary,
|
|
|
|
project: {
|
|
|
|
id: projectId,
|
|
|
|
},
|
|
|
|
issuetype: {
|
|
|
|
id: issueTypeId
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (additionalFields.labels) {
|
|
|
|
body.fields.labels = additionalFields.labels as string[];
|
|
|
|
}
|
|
|
|
if (additionalFields.priority) {
|
|
|
|
body.fields.priority = {
|
|
|
|
id: additionalFields.priority as string,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (additionalFields.assignee) {
|
|
|
|
body.fields.assignee = {
|
|
|
|
id: additionalFields.assignee as string,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (!parentIssueIdValue && issueTypeId === 'sub-task') {
|
|
|
|
throw new Error('You must define a Parent ID/Key when Issue type is sub-task');
|
|
|
|
|
|
|
|
} else if (parentIssueIdValue && issueTypeId === 'sub-task') {
|
|
|
|
if (parentIssueId === 'id') {
|
|
|
|
body.fields.parent = {
|
|
|
|
id: parentIssueIdValue,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (parentIssueId === 'key') {
|
|
|
|
body.fields.parent = {
|
|
|
|
key: parentIssueIdValue,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
responseData = await jiraApiRequest.call(this, '/issue', 'POST', body);
|
|
|
|
} catch (err) {
|
|
|
|
throw new Error(`Jira Error: ${JSON.stringify(err)}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Array.isArray(responseData)) {
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
} else {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
2019-11-26 12:38:38 -08:00
|
|
|
}
|
|
|
|
}
|