mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
0da398b0e4
* ✨ change FE to handle new object type * 🚸 improve UX of handling invalid credentials * 🚧 WIP * 🎨 fix typescript issues * 🐘 add migrations for all supported dbs * ✏️ add description to migrations * ⚡ add credential update on import * ⚡ resolve after merge issues * 👕 fix lint issues * ⚡ check credentials on workflow create/update * update interface * 👕 fix ts issues * ⚡ adaption to new credentials UI * 🐛 intialize cache on BE for credentials check * 🐛 fix undefined oldCredentials * 🐛 fix deleting credential * 🐛 fix check for undefined keys * 🐛 fix disabling edit in execution * 🎨 just show credential name on execution view * ✏️ remove TODO * ⚡ implement review suggestions * ⚡ add cache to getCredentialsByType * ⏪ use getter instead of cache * ✏️ fix variable name typo * 🐘 include waiting nodes to migrations * 🐛 fix reverting migrations command * ⚡ update typeorm command * ✨ create db:revert command * 👕 fix lint error * ✨ Add optional authenticate method to credentials * ⚡ Simplify code and add authentication support to MattermostApi * 👕 Fix lint issue * ⚡ Add support to own-mode * 👕 Fix lint issue * ✨ Add support for predefined auth types bearer and headerAuth * ⚡ Make sure that DateTime Node always returns strings * ⚡ Add support for moment types to If Node * ⚡ Make it possible for HTTP Request Node to use all credential types * ✨ Add basicAuth support * Add a new dropcontact node * ✨ First basic implementation of mainly JSON based nodes * ✨ Add fixedCollection support, added value parameter and expression support for value and property * Improvements to #2389 * ⚡ Add credentials verification * ⚡ Small improvement * ⚡ set default time to 45 seconds * ✨ Add support for preSend and postReceive methods * ➕ Add lodash merge and set depedency to workflow * 👕 Fix lint issue * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * 🐛 Set siren and language correctly * ⚡ Add support for requestDefaults * ⚡ Add support for baseURL to httpRequest * ⚡ Move baseURL to correct location * ✨ Add support for options loading * 🐛 Fix error with fullAccess nodes * ✨ Add credential test functionality * 🐛 Fix issue with OAuth autentication and lint issue * ⚡ Fix build issue * 🐛 Fix issue that url got always overwritten to empty * ✨ Add pagination support * ⚡ Code fix required after merge * ⚡ Remove not needed imports * ⚡ Fix credential test * ✨ Add expression support for request properties and $self support on properties * ⚡ Rename $self to $value * 👕 Fix lint issue * ⚡ Add example how to send data in path * ✨ Make it possible to not sent in dot notation * ✨ Add support for postReceive:rootProperty * ⚡ Fix typo * ✨ Add support for postReceive:set * ⚡ Some fixes * ⚡ Small improvement * ;zap: Separate RoutingNode code * ⚡ Simplify code and fix bug * ⚡ Remove unused code * ✨ Make it possible to define "request" and "requestProperty" on options * 👕 Fix lint issue * ⚡ Change $credentials variables name * ✨ Enable expressions and access to credentials in requestDefaults * ⚡ Make parameter option loading use RoutingNode.makeRoutingRequest * ✨ Allow requestOperations overwrite on LoadOptions * ✨ Make it possible to access current node parameters in loadOptions * ⚡ Rename parameters variable to make future proof * ⚡ Make it possible to use offset-pagination with body * ✨ Add support for queryAuth * ⚡ Never return more items than requested * ✨ Make it possible to overwrite requestOperations on parameter and option level * 👕 Fix lint issue * ✨ Allow simplified auth also with regular nodes * ✨ Add support for receiving binary data * 🐛 Fix example node * ⚡ Rename property "name" to "displayName" in loadOptions * ⚡ Send data by default as "query" if nothing is set * ⚡ Rename $self to $parent * ⚡ Change to work with INodeExecutionData instead of IDataObject * ⚡ Improve binaryData handling * ⚡ Property design improvements * ⚡ Fix property name * 🚨 Add some tests * ⚡ Add also test for request * ⚡ Improve test and fix issues * ⚡ Improvements to loadOptions * ⚡ Normalize loadOptions with rest of code * ⚡ Add info text * ✨ Add support for $value in postReceive * 🚨 Add tests for RoutingNode.runNode * ⚡ Remove TODOs and make url property optional * ⚡ Fix bug and lint issue * 🐛 Fix bug that not the correct property got used * 🚨 Add tests for CredentialsHelper.authenticate * ⚡ Improve code and resolve expressions also everywhere for loadOptions and credential test requests * ✨ Make it possible to define multiple preSend and postReceive actions * ✨ Allow to define tests on credentials * ⚡ Remove test data * ⬆️ Update package-lock.json file * ⚡ Remove old not longer used code Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Mutasem <mutdmour@gmail.com> Co-authored-by: PaulineDropcontact <pauline@dropcontact.io> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
1115 lines
38 KiB
TypeScript
1115 lines
38 KiB
TypeScript
import {
|
|
OptionsWithUri,
|
|
} from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IBinaryData,
|
|
IBinaryKeyData,
|
|
ICredentialsDecrypted,
|
|
ICredentialTestFunctions,
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
INodeCredentialTestResult,
|
|
INodeExecutionData,
|
|
INodePropertyOptions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
jiraSoftwareCloudApiRequest,
|
|
jiraSoftwareCloudApiRequestAllItems,
|
|
validateJSON,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
issueAttachmentFields,
|
|
issueAttachmentOperations,
|
|
} from './IssueAttachmentDescription';
|
|
|
|
import {
|
|
issueCommentFields,
|
|
issueCommentOperations,
|
|
} from './IssueCommentDescription';
|
|
|
|
import {
|
|
issueFields,
|
|
issueOperations,
|
|
} from './IssueDescription';
|
|
|
|
import {
|
|
IFields,
|
|
IIssue,
|
|
INotificationRecipients,
|
|
INotify,
|
|
NotificationRecipientsRestrictions,
|
|
} from './IssueInterface';
|
|
|
|
import {
|
|
userFields,
|
|
userOperations,
|
|
} from './UserDescription';
|
|
|
|
export class Jira implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Jira Software',
|
|
name: 'jira',
|
|
icon: 'file:jira.svg',
|
|
group: ['output'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume Jira Software API',
|
|
defaults: {
|
|
name: 'Jira',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'jiraSoftwareCloudApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
jiraVersion: [
|
|
'cloud',
|
|
],
|
|
},
|
|
},
|
|
testedBy: 'jiraSoftwareApiTest',
|
|
},
|
|
{
|
|
name: 'jiraSoftwareServerApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
jiraVersion: [
|
|
'server',
|
|
],
|
|
},
|
|
},
|
|
testedBy: 'jiraSoftwareApiTest',
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Jira Version',
|
|
name: 'jiraVersion',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Cloud',
|
|
value: 'cloud',
|
|
},
|
|
{
|
|
name: 'Server (Self Hosted)',
|
|
value: 'server',
|
|
},
|
|
],
|
|
default: 'cloud',
|
|
},
|
|
{
|
|
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',
|
|
},
|
|
{
|
|
name: 'Issue Attachment',
|
|
value: 'issueAttachment',
|
|
description: 'Add, remove, and get an attachment from an issue.',
|
|
},
|
|
{
|
|
name: 'Issue Comment',
|
|
value: 'issueComment',
|
|
description: 'Get, create, update, and delete a comment from an issue.',
|
|
},
|
|
{
|
|
name: 'User',
|
|
value: 'user',
|
|
description: 'Get, create and delete a user.',
|
|
},
|
|
],
|
|
default: 'issue',
|
|
description: 'Resource to consume.',
|
|
},
|
|
...issueOperations,
|
|
...issueFields,
|
|
...issueAttachmentOperations,
|
|
...issueAttachmentFields,
|
|
...issueCommentOperations,
|
|
...issueCommentFields,
|
|
...userOperations,
|
|
...userFields,
|
|
],
|
|
};
|
|
|
|
methods = {
|
|
credentialTest: {
|
|
async jiraSoftwareApiTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult> {
|
|
const credentials = credential.data;
|
|
const data = Buffer.from(`${credentials!.email}:${credentials!.password || credentials!.apiToken}`).toString('base64');
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
Authorization: `Basic ${data}`,
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
'X-Atlassian-Token': 'no-check',
|
|
},
|
|
method: 'GET',
|
|
uri: `${credentials!.domain}/rest/api/2/project`,
|
|
qs: {
|
|
recent: 0,
|
|
},
|
|
json: true,
|
|
timeout: 5000,
|
|
};
|
|
try {
|
|
await this.helpers.request!(options);
|
|
} catch (err) {
|
|
return {
|
|
status: 'Error',
|
|
message: `Connection details not valid: ${err.message}`,
|
|
};
|
|
}
|
|
return {
|
|
status: 'OK',
|
|
message: 'Authentication successful!',
|
|
};
|
|
},
|
|
},
|
|
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[] = [];
|
|
const jiraVersion = this.getCurrentNodeParameter('jiraVersion') as string;
|
|
let endpoint = '';
|
|
let projects;
|
|
|
|
if (jiraVersion === 'server') {
|
|
endpoint = '/api/2/project';
|
|
projects = await jiraSoftwareCloudApiRequest.call(this, endpoint, 'GET');
|
|
} else {
|
|
endpoint = '/api/2/project/search';
|
|
projects = await jiraSoftwareCloudApiRequestAllItems.call(this, 'values', endpoint, 'GET');
|
|
}
|
|
|
|
if (projects.values && Array.isArray(projects.values)) {
|
|
projects = projects.values;
|
|
}
|
|
for (const project of projects) {
|
|
const projectName = project.name;
|
|
const projectId = project.id;
|
|
returnData.push({
|
|
name: projectName,
|
|
value: projectId,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
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 projectId = this.getCurrentNodeParameter('project');
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const { issueTypes } = await jiraSoftwareCloudApiRequest.call(this, `/api/2/project/${projectId}`, 'GET');
|
|
for (const issueType of issueTypes) {
|
|
const issueTypeName = issueType.name;
|
|
const issueTypeId = issueType.id;
|
|
returnData.push({
|
|
name: issueTypeName,
|
|
value: issueTypeId,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
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[] = [];
|
|
|
|
const labels = await jiraSoftwareCloudApiRequest.call(this, '/api/2/label', 'GET');
|
|
|
|
for (const label of labels.values) {
|
|
const labelName = label;
|
|
const labelId = label;
|
|
|
|
returnData.push({
|
|
name: labelName,
|
|
value: labelId,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
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[] = [];
|
|
|
|
const priorities = await jiraSoftwareCloudApiRequest.call(this, '/api/2/priority', 'GET');
|
|
|
|
for (const priority of priorities) {
|
|
const priorityName = priority.name;
|
|
const priorityId = priority.id;
|
|
|
|
returnData.push({
|
|
name: priorityName,
|
|
value: priorityId,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
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[] = [];
|
|
const jiraVersion = this.getCurrentNodeParameter('jiraVersion') as string;
|
|
if (jiraVersion === 'server') {
|
|
// the interface call must bring username
|
|
const users = await jiraSoftwareCloudApiRequest.call(this, '/api/2/user/search', 'GET', {},
|
|
{
|
|
username: '\'',
|
|
},
|
|
);
|
|
for (const user of users) {
|
|
const userName = user.displayName;
|
|
const userId = user.name;
|
|
|
|
returnData.push({
|
|
name: userName,
|
|
value: userId,
|
|
});
|
|
}
|
|
} else {
|
|
const users = await jiraSoftwareCloudApiRequest.call(this, '/api/2/users/search', 'GET');
|
|
|
|
for (const user of users) {
|
|
const userName = user.displayName;
|
|
const userId = user.accountId;
|
|
|
|
returnData.push({
|
|
name: userName,
|
|
value: userId,
|
|
});
|
|
}
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
return returnData;
|
|
},
|
|
|
|
// 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 jiraSoftwareCloudApiRequest.call(this, '/api/2/groups/picker', 'GET');
|
|
|
|
for (const group of groups.groups) {
|
|
const groupName = group.name;
|
|
const groupId = group.name;
|
|
|
|
returnData.push({
|
|
name: groupName,
|
|
value: groupId,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
return returnData;
|
|
},
|
|
|
|
// Get all the groups to display them to user so that he can
|
|
// select them easily
|
|
async getTransitions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const issueKey = this.getCurrentNodeParameter('issueKey');
|
|
const transitions = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}/transitions`, 'GET');
|
|
|
|
for (const transition of transitions.transitions) {
|
|
returnData.push({
|
|
name: transition.name,
|
|
value: transition.id,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
return returnData;
|
|
},
|
|
|
|
// 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 operation = this.getCurrentNodeParameter('operation') as string;
|
|
let projectId: string;
|
|
let issueTypeId: string;
|
|
if (operation === 'create') {
|
|
projectId = this.getCurrentNodeParameter('project') as string;
|
|
issueTypeId = this.getCurrentNodeParameter('issueType') as string;
|
|
} else {
|
|
const issueKey = this.getCurrentNodeParameter('issueKey') as string;
|
|
const res = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}`, 'GET', {}, {});
|
|
projectId = res.fields.project.id;
|
|
issueTypeId = res.fields.issuetype.id;
|
|
}
|
|
|
|
const res = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/createmeta?projectIds=${projectId}&issueTypeIds=${issueTypeId}&expand=projects.issuetypes.fields`, 'GET');
|
|
|
|
// tslint:disable-next-line: no-any
|
|
const fields = res.projects.find((o: any) => o.id === projectId).issuetypes.find((o: any) => o.id === issueTypeId).fields;
|
|
for (const key of Object.keys(fields)) {
|
|
const field = fields[key];
|
|
if (field.schema && Object.keys(field.schema).includes('customId')) {
|
|
returnData.push({
|
|
name: field.name,
|
|
value: field.key || field.fieldId,
|
|
});
|
|
}
|
|
}
|
|
return returnData;
|
|
},
|
|
|
|
// Get all the components to display them to user so that he can
|
|
// select them easily
|
|
async getProjectComponents(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
|
|
const project = this.getCurrentNodeParameter('project');
|
|
const { values: components } = await jiraSoftwareCloudApiRequest.call(this, `/api/2/project/${project}/component`, 'GET');
|
|
|
|
for (const component of components) {
|
|
returnData.push({
|
|
name: component.name,
|
|
value: component.id,
|
|
});
|
|
}
|
|
|
|
returnData.sort((a, b) => {
|
|
if (a.name < b.name) { return -1; }
|
|
if (a.name > b.name) { return 1; }
|
|
return 0;
|
|
});
|
|
|
|
return returnData;
|
|
},
|
|
},
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
const length = items.length as unknown as number;
|
|
let responseData;
|
|
const qs: IDataObject = {};
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
const jiraVersion = this.getNodeParameter('jiraVersion', 0) as string;
|
|
|
|
if (resource === 'issue') {
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-post
|
|
if (operation === 'create') {
|
|
for (let i = 0; i < length; i++) {
|
|
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 additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
const body: IIssue = {};
|
|
const fields: IFields = {
|
|
summary,
|
|
project: {
|
|
id: projectId,
|
|
},
|
|
issuetype: {
|
|
id: issueTypeId,
|
|
},
|
|
};
|
|
if (additionalFields.labels) {
|
|
fields.labels = additionalFields.labels as string[];
|
|
}
|
|
if (additionalFields.serverLabels) {
|
|
fields.labels = additionalFields.serverLabels as string[];
|
|
}
|
|
if (additionalFields.priority) {
|
|
fields.priority = {
|
|
id: additionalFields.priority as string,
|
|
};
|
|
}
|
|
if (additionalFields.assignee) {
|
|
if (jiraVersion === 'server') {
|
|
fields.assignee = {
|
|
name: additionalFields.assignee as string,
|
|
};
|
|
} else {
|
|
fields.assignee = {
|
|
id: additionalFields.assignee as string,
|
|
};
|
|
}
|
|
}
|
|
if (additionalFields.reporter) {
|
|
if (jiraVersion === 'server') {
|
|
fields.reporter = {
|
|
name: additionalFields.reporter as string,
|
|
};
|
|
} else {
|
|
fields.reporter = {
|
|
id: additionalFields.reporter as string,
|
|
};
|
|
}
|
|
}
|
|
if (additionalFields.description) {
|
|
fields.description = additionalFields.description as string;
|
|
}
|
|
if (additionalFields.updateHistory) {
|
|
qs.updateHistory = additionalFields.updateHistory as boolean;
|
|
}
|
|
if (additionalFields.componentIds) {
|
|
fields.components = (additionalFields.componentIds as string[]).map(id => ({ id }));
|
|
}
|
|
if (additionalFields.customFieldsUi) {
|
|
const customFields = (additionalFields.customFieldsUi as IDataObject).customFieldsValues as IDataObject[];
|
|
if (customFields) {
|
|
const data = customFields.reduce((obj, value) => Object.assign(obj, { [`${value.fieldId}`]: value.fieldValue }), {});
|
|
Object.assign(fields, data);
|
|
}
|
|
}
|
|
const issueTypes = await jiraSoftwareCloudApiRequest.call(this, '/api/2/issuetype', 'GET', body, qs);
|
|
const subtaskIssues = [];
|
|
for (const issueType of issueTypes) {
|
|
if (issueType.subtask) {
|
|
subtaskIssues.push(issueType.id);
|
|
}
|
|
}
|
|
if (!additionalFields.parentIssueKey
|
|
&& subtaskIssues.includes(issueTypeId)) {
|
|
throw new NodeOperationError(this.getNode(), 'You must define a Parent Issue Key when Issue type is sub-task');
|
|
|
|
} else if (additionalFields.parentIssueKey
|
|
&& subtaskIssues.includes(issueTypeId)) {
|
|
fields.parent = {
|
|
key: (additionalFields.parentIssueKey as string).toUpperCase(),
|
|
};
|
|
}
|
|
body.fields = fields;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, '/api/2/issue', 'POST', body);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-put
|
|
if (operation === 'update') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
|
const body: IIssue = {};
|
|
const fields: IFields = {};
|
|
if (updateFields.summary) {
|
|
fields.summary = updateFields.summary as string;
|
|
}
|
|
if (updateFields.issueType) {
|
|
fields.issuetype = {
|
|
id: updateFields.issueType as string,
|
|
};
|
|
}
|
|
if (updateFields.labels) {
|
|
fields.labels = updateFields.labels as string[];
|
|
}
|
|
if (updateFields.serverLabels) {
|
|
fields.labels = updateFields.serverLabels as string[];
|
|
}
|
|
if (updateFields.priority) {
|
|
fields.priority = {
|
|
id: updateFields.priority as string,
|
|
};
|
|
}
|
|
if (updateFields.assignee) {
|
|
if (jiraVersion === 'server') {
|
|
fields.assignee = {
|
|
name: updateFields.assignee as string,
|
|
};
|
|
} else {
|
|
fields.assignee = {
|
|
id: updateFields.assignee as string,
|
|
};
|
|
}
|
|
}
|
|
if (updateFields.reporter) {
|
|
if (jiraVersion === 'server') {
|
|
fields.reporter = {
|
|
name: updateFields.reporter as string,
|
|
};
|
|
} else {
|
|
fields.reporter = {
|
|
id: updateFields.reporter as string,
|
|
};
|
|
}
|
|
}
|
|
if (updateFields.description) {
|
|
fields.description = updateFields.description as string;
|
|
}
|
|
if (updateFields.customFieldsUi) {
|
|
const customFields = (updateFields.customFieldsUi as IDataObject).customFieldsValues as IDataObject[];
|
|
if (customFields) {
|
|
const data = customFields.reduce((obj, value) => Object.assign(obj, { [`${value.fieldId}`]: value.fieldValue }), {});
|
|
Object.assign(fields, data);
|
|
}
|
|
}
|
|
const issueTypes = await jiraSoftwareCloudApiRequest.call(this, '/api/2/issuetype', 'GET', body);
|
|
const subtaskIssues = [];
|
|
for (const issueType of issueTypes) {
|
|
if (issueType.subtask) {
|
|
subtaskIssues.push(issueType.id);
|
|
}
|
|
}
|
|
if (!updateFields.parentIssueKey
|
|
&& subtaskIssues.includes(updateFields.issueType)) {
|
|
throw new NodeOperationError(this.getNode(), 'You must define a Parent Issue Key when Issue type is sub-task');
|
|
|
|
} else if (updateFields.parentIssueKey
|
|
&& subtaskIssues.includes(updateFields.issueType)) {
|
|
fields.parent = {
|
|
key: (updateFields.parentIssueKey as string).toUpperCase(),
|
|
};
|
|
}
|
|
body.fields = fields;
|
|
|
|
if (updateFields.statusId) {
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}/transitions`, 'POST', { transition: { id: updateFields.statusId } });
|
|
}
|
|
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}`, 'PUT', body);
|
|
returnData.push({ success: true });
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-get
|
|
if (operation === 'get') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
if (additionalFields.fields) {
|
|
qs.fields = additionalFields.fields as string;
|
|
}
|
|
if (additionalFields.fieldsByKey) {
|
|
qs.fieldsByKey = additionalFields.fieldsByKey as boolean;
|
|
}
|
|
if (additionalFields.expand) {
|
|
qs.expand = additionalFields.expand as string;
|
|
}
|
|
if (additionalFields.properties) {
|
|
qs.properties = additionalFields.properties as string;
|
|
}
|
|
if (additionalFields.updateHistory) {
|
|
qs.updateHistory = additionalFields.updateHistory as string;
|
|
}
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}`, 'GET', {}, qs);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-search-post
|
|
if (operation === 'getAll') {
|
|
for (let i = 0; i < length; i++) {
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
const body: IDataObject = {};
|
|
if (options.fields) {
|
|
body.fields = (options.fields as string).split(',') as string[];
|
|
}
|
|
if (options.jql) {
|
|
body.jql = options.jql as string;
|
|
}
|
|
if (options.expand) {
|
|
if (typeof options.expand === 'string') {
|
|
body.expand = options.expand.split(',');
|
|
} else {
|
|
body.expand = options.expand;
|
|
}
|
|
}
|
|
if (returnAll) {
|
|
responseData = await jiraSoftwareCloudApiRequestAllItems.call(this, 'issues', `/api/2/search`, 'POST', body);
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
body.maxResults = limit;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/search`, 'POST', body);
|
|
responseData = responseData.issues;
|
|
}
|
|
returnData.push.apply(returnData, responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-changelog-get
|
|
if (operation === 'changelog') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
if (returnAll) {
|
|
responseData = await jiraSoftwareCloudApiRequestAllItems.call(this, 'values', `/api/2/issue/${issueKey}/changelog`, 'GET');
|
|
} else {
|
|
qs.maxResults = this.getNodeParameter('limit', i) as number;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}/changelog`, 'GET', {}, qs);
|
|
responseData = responseData.values;
|
|
}
|
|
returnData.push.apply(returnData, responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-notify-post
|
|
if (operation === 'notify') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
const jsonActive = this.getNodeParameter('jsonParameters', 0) as boolean;
|
|
const body: INotify = {};
|
|
if (additionalFields.textBody) {
|
|
body.textBody = additionalFields.textBody as string;
|
|
}
|
|
if (additionalFields.htmlBody) {
|
|
body.htmlBody = additionalFields.htmlBody as string;
|
|
}
|
|
if (!jsonActive) {
|
|
const notificationRecipientsValues = (this.getNodeParameter('notificationRecipientsUi', i) as IDataObject).notificationRecipientsValues as IDataObject[];
|
|
const notificationRecipients: INotificationRecipients = {};
|
|
if (notificationRecipientsValues) {
|
|
// @ts-ignore
|
|
if (notificationRecipientsValues.reporter) {
|
|
// @ts-ignore
|
|
notificationRecipients.reporter = notificationRecipientsValues.reporter as boolean;
|
|
}
|
|
// @ts-ignore
|
|
if (notificationRecipientsValues.assignee) {
|
|
// @ts-ignore
|
|
notificationRecipients.assignee = notificationRecipientsValues.assignee as boolean;
|
|
}
|
|
// @ts-ignore
|
|
if (notificationRecipientsValues.assignee) {
|
|
// @ts-ignore
|
|
notificationRecipients.watchers = notificationRecipientsValues.watchers as boolean;
|
|
}
|
|
// @ts-ignore
|
|
if (notificationRecipientsValues.voters) {
|
|
// @ts-ignore
|
|
notificationRecipients.watchers = notificationRecipientsValues.voters as boolean;
|
|
}
|
|
// @ts-ignore
|
|
if (notificationRecipientsValues.users.length > 0) {
|
|
// @ts-ignore
|
|
notificationRecipients.users = notificationRecipientsValues.users.map(user => {
|
|
return {
|
|
accountId: user,
|
|
};
|
|
});
|
|
}
|
|
// @ts-ignore
|
|
if (notificationRecipientsValues.groups.length > 0) {
|
|
// @ts-ignore
|
|
notificationRecipients.groups = notificationRecipientsValues.groups.map(group => {
|
|
return {
|
|
name: group,
|
|
};
|
|
});
|
|
}
|
|
}
|
|
body.to = notificationRecipients;
|
|
const notificationRecipientsRestrictionsValues = (this.getNodeParameter('notificationRecipientsRestrictionsUi', i) as IDataObject).notificationRecipientsRestrictionsValues as IDataObject[];
|
|
const notificationRecipientsRestrictions: NotificationRecipientsRestrictions = {};
|
|
if (notificationRecipientsRestrictionsValues) {
|
|
// @ts-ignore
|
|
if (notificationRecipientsRestrictionsValues.groups.length > 0) {
|
|
// @ts-ignore
|
|
notificationRecipientsRestrictions.groups = notificationRecipientsRestrictionsValues.groups.map(group => {
|
|
return {
|
|
name: group,
|
|
};
|
|
});
|
|
}
|
|
}
|
|
body.restrict = notificationRecipientsRestrictions;
|
|
} else {
|
|
const notificationRecipientsJson = validateJSON(this.getNodeParameter('notificationRecipientsJson', i) as string);
|
|
if (notificationRecipientsJson) {
|
|
body.to = notificationRecipientsJson;
|
|
}
|
|
const notificationRecipientsRestrictionsJson = validateJSON(this.getNodeParameter('notificationRecipientsRestrictionsJson', i) as string);
|
|
if (notificationRecipientsRestrictionsJson) {
|
|
body.restrict = notificationRecipientsRestrictionsJson;
|
|
}
|
|
}
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}/notify`, 'POST', body, qs);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-transitions-get
|
|
if (operation === 'transitions') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
if (additionalFields.transitionId) {
|
|
qs.transitionId = additionalFields.transitionId as string;
|
|
}
|
|
if (additionalFields.expand) {
|
|
qs.expand = additionalFields.expand as string;
|
|
}
|
|
if (additionalFields.skipRemoteOnlyCondition) {
|
|
qs.skipRemoteOnlyCondition = additionalFields.skipRemoteOnlyCondition as boolean;
|
|
}
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}/transitions`, 'GET', {}, qs);
|
|
responseData = responseData.transitions;
|
|
returnData.push.apply(returnData, responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-delete
|
|
if (operation === 'delete') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const deleteSubtasks = this.getNodeParameter('deleteSubtasks', i) as boolean;
|
|
qs.deleteSubtasks = deleteSubtasks;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}`, 'DELETE', {}, qs);
|
|
returnData.push({ success: true });
|
|
}
|
|
}
|
|
}
|
|
if (resource === 'issueAttachment') {
|
|
const apiVersion = jiraVersion === 'server' ? '2' : '3' as string;
|
|
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post
|
|
if (operation === 'add') {
|
|
for (let i = 0; i < length; i++) {
|
|
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', i) as string;
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
|
|
if (items[i].binary === undefined) {
|
|
throw new NodeOperationError(this.getNode(), 'No binary data exists on item!');
|
|
}
|
|
|
|
const item = items[i].binary as IBinaryKeyData;
|
|
|
|
const binaryData = item[binaryPropertyName] as IBinaryData;
|
|
const binaryDataBuffer = await this.helpers.getBinaryDataBuffer(i, binaryPropertyName);
|
|
|
|
if (binaryData === undefined) {
|
|
throw new NodeOperationError(this.getNode(), `No binary data property "${binaryPropertyName}" does not exists on item!`);
|
|
}
|
|
|
|
responseData = await jiraSoftwareCloudApiRequest.call(
|
|
this,
|
|
`/api/${apiVersion}/issue/${issueKey}/attachments`,
|
|
'POST',
|
|
{},
|
|
{},
|
|
undefined,
|
|
{
|
|
formData: {
|
|
file: {
|
|
value: binaryDataBuffer,
|
|
options: {
|
|
filename: binaryData.fileName,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
);
|
|
returnData.push.apply(returnData, responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-attachment-id-delete
|
|
if (operation === 'remove') {
|
|
for (let i = 0; i < length; i++) {
|
|
const attachmentId = this.getNodeParameter('attachmentId', i) as string;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/attachment/${attachmentId}`, 'DELETE', {}, qs);
|
|
returnData.push({ success: true });
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-attachment-id-get
|
|
if (operation === 'get') {
|
|
const download = this.getNodeParameter('download', 0) as boolean;
|
|
for (let i = 0; i < length; i++) {
|
|
const attachmentId = this.getNodeParameter('attachmentId', i) as string;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/attachment/${attachmentId}`, 'GET', {}, qs);
|
|
returnData.push({ json: responseData });
|
|
}
|
|
if (download) {
|
|
const binaryPropertyName = this.getNodeParameter('binaryProperty', 0) as string;
|
|
for (const [index, attachment] of returnData.entries()) {
|
|
returnData[index]['binary'] = {};
|
|
//@ts-ignore
|
|
const buffer = await jiraSoftwareCloudApiRequest.call(this, '', 'GET', {}, {}, attachment?.json!.content, { json: false, encoding: null });
|
|
//@ts-ignore
|
|
returnData[index]['binary'][binaryPropertyName] = await this.helpers.prepareBinaryData(buffer, attachment.json.filename, attachment.json.mimeType);
|
|
}
|
|
}
|
|
}
|
|
if (operation === 'getAll') {
|
|
const download = this.getNodeParameter('download', 0) as boolean;
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
const { fields: { attachment } } = await jiraSoftwareCloudApiRequest.call(this, `/api/2/issue/${issueKey}`, 'GET', {}, qs);
|
|
responseData = attachment;
|
|
if (returnAll === false) {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
responseData = responseData.slice(0, limit);
|
|
}
|
|
responseData = responseData.map((data: IDataObject) => ({ json: data }));
|
|
returnData.push.apply(returnData, responseData);
|
|
}
|
|
if (download) {
|
|
const binaryPropertyName = this.getNodeParameter('binaryProperty', 0) as string;
|
|
for (const [index, attachment] of returnData.entries()) {
|
|
returnData[index]['binary'] = {};
|
|
//@ts-ignore
|
|
const buffer = await jiraSoftwareCloudApiRequest.call(this, '', 'GET', {}, {}, attachment.json.content, { json: false, encoding: null });
|
|
//@ts-ignore
|
|
returnData[index]['binary'][binaryPropertyName] = await this.helpers.prepareBinaryData(buffer, attachment.json.filename, attachment.json.mimeType);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (resource === 'issueComment') {
|
|
const apiVersion = jiraVersion === 'server' ? '2' : '3' as string;
|
|
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-post
|
|
if (operation === 'add') {
|
|
for (let i = 0; i < length; i++) {
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', 0) as boolean;
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
const body: IDataObject = {};
|
|
if (options.expand) {
|
|
qs.expand = options.expand as string;
|
|
delete options.expand;
|
|
}
|
|
|
|
Object.assign(body, options);
|
|
if (jsonParameters === false) {
|
|
const comment = this.getNodeParameter('comment', i) as string;
|
|
if (jiraVersion === 'server') {
|
|
Object.assign(body, { body: comment });
|
|
} else {
|
|
Object.assign(body, {
|
|
body: {
|
|
type: 'doc',
|
|
version: 1,
|
|
content: [
|
|
{
|
|
type: 'paragraph',
|
|
content: [
|
|
{
|
|
type: 'text',
|
|
text: comment,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
}
|
|
} else {
|
|
const commentJson = this.getNodeParameter('commentJson', i) as string;
|
|
const json = validateJSON(commentJson);
|
|
if (json === '') {
|
|
throw new NodeOperationError(this.getNode(), 'Document Format must be a valid JSON');
|
|
}
|
|
|
|
Object.assign(body, { body: json });
|
|
}
|
|
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/issue/${issueKey}/comment`, 'POST', body, qs);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-get
|
|
if (operation === 'get') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const commentId = this.getNodeParameter('commentId', i) as string;
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
Object.assign(qs, options);
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/issue/${issueKey}/comment/${commentId}`, 'GET', {}, qs);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-get
|
|
if (operation === 'getAll') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
const body: IDataObject = {};
|
|
Object.assign(qs, options);
|
|
if (returnAll) {
|
|
responseData = await jiraSoftwareCloudApiRequestAllItems.call(this, 'comments', `/api/${apiVersion}/issue/${issueKey}/comment`, 'GET', body, qs);
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', i) as number;
|
|
body.maxResults = limit;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/issue/${issueKey}/comment`, 'GET', body, qs);
|
|
responseData = responseData.comments;
|
|
}
|
|
returnData.push.apply(returnData, responseData);
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-id-delete
|
|
if (operation === 'remove') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const commentId = this.getNodeParameter('commentId', i) as string;
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/issue/${issueKey}/comment/${commentId}`, 'DELETE', {}, qs);
|
|
returnData.push({ success: true });
|
|
}
|
|
}
|
|
//https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-id-put
|
|
if (operation === 'update') {
|
|
for (let i = 0; i < length; i++) {
|
|
const issueKey = this.getNodeParameter('issueKey', i) as string;
|
|
const commentId = this.getNodeParameter('commentId', i) as string;
|
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', 0) as boolean;
|
|
const body: IDataObject = {};
|
|
if (options.expand) {
|
|
qs.expand = options.expand as string;
|
|
delete options.expand;
|
|
}
|
|
Object.assign(qs, options);
|
|
if (jsonParameters === false) {
|
|
const comment = this.getNodeParameter('comment', i) as string;
|
|
if (jiraVersion === 'server') {
|
|
Object.assign(body, { body: comment });
|
|
} else {
|
|
Object.assign(body, {
|
|
body: {
|
|
type: 'doc',
|
|
version: 1,
|
|
content: [
|
|
{
|
|
type: 'paragraph',
|
|
content: [
|
|
{
|
|
type: 'text',
|
|
text: comment,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
}
|
|
} else {
|
|
const commentJson = this.getNodeParameter('commentJson', i) as string;
|
|
const json = validateJSON(commentJson);
|
|
if (json === '') {
|
|
throw new NodeOperationError(this.getNode(), 'Document Format must be a valid JSON');
|
|
}
|
|
|
|
Object.assign(body, { body: json });
|
|
}
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/issue/${issueKey}/comment/${commentId}`, 'PUT', body, qs);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (resource === 'user') {
|
|
const apiVersion = jiraVersion === 'server' ? '2' : '3' as string;
|
|
|
|
if (operation === 'create') {
|
|
// https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-post
|
|
for (let i = 0; i < length; i++) {
|
|
const body = {
|
|
name: this.getNodeParameter('username', i),
|
|
emailAddress: this.getNodeParameter('emailAddress', i),
|
|
displayName: this.getNodeParameter('displayName', i),
|
|
};
|
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
Object.assign(body, additionalFields);
|
|
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/user`, 'POST', body, {});
|
|
returnData.push(responseData);
|
|
}
|
|
} else if (operation === 'delete') {
|
|
// https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-delete
|
|
for (let i = 0; i < length; i++) {
|
|
qs.accountId = this.getNodeParameter('accountId', i);
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/user`, 'DELETE', {}, qs);
|
|
returnData.push({ success: true });
|
|
}
|
|
} else if (operation === 'get') {
|
|
// https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-users/#api-rest-api-3-user-get
|
|
for (let i = 0; i < length; i++) {
|
|
qs.accountId = this.getNodeParameter('accountId', i);
|
|
|
|
const { expand } = this.getNodeParameter('additionalFields', i) as { expand: string[] };
|
|
|
|
if (expand) {
|
|
qs.expand = expand.join(',');
|
|
}
|
|
|
|
responseData = await jiraSoftwareCloudApiRequest.call(this, `/api/${apiVersion}/user`, 'GET', {}, qs);
|
|
returnData.push(responseData);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (resource === 'issueAttachment' && (operation === 'getAll' || operation === 'get')) {
|
|
return this.prepareOutputData(returnData as unknown as INodeExecutionData[]);
|
|
} else {
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|
|
}
|