2020-06-30 15:46:45 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
2020-10-01 05:01:39 -07:00
|
|
|
INodeTypeDescription,
|
2020-06-30 15:46:45 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
pipelineFields,
|
|
|
|
pipelineOperations,
|
|
|
|
} from './PipelineDescription';
|
|
|
|
|
|
|
|
import {
|
|
|
|
circleciApiRequest,
|
|
|
|
circleciApiRequestAllItems,
|
|
|
|
} from './GenericFunctions';
|
|
|
|
|
|
|
|
export class CircleCi implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'CircleCI',
|
|
|
|
name: 'circleCi',
|
|
|
|
icon: 'file:circleCi.png',
|
|
|
|
group: ['output'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
|
|
description: 'Consume CircleCI API',
|
|
|
|
defaults: {
|
|
|
|
name: 'CircleCI',
|
|
|
|
color: '#04AA51',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'circleCiApi',
|
|
|
|
required: true,
|
2020-10-22 06:46:03 -07:00
|
|
|
},
|
2020-06-30 15:46:45 -07:00
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: ' Pipeline',
|
|
|
|
value: 'pipeline',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'pipeline',
|
|
|
|
description: 'Resource to consume.',
|
|
|
|
},
|
|
|
|
...pipelineOperations,
|
|
|
|
...pipelineFields,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
|
|
|
|
for (let i = 0; i < length; i++) {
|
2021-07-19 23:58:54 -07:00
|
|
|
try {
|
|
|
|
if (resource === 'pipeline') {
|
|
|
|
if (operation === 'get') {
|
|
|
|
const vcs = this.getNodeParameter('vcs', i) as string;
|
|
|
|
let slug = this.getNodeParameter('projectSlug', i) as string;
|
|
|
|
const pipelineNumber = this.getNodeParameter('pipelineNumber', i) as number;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
slug = slug.replace(new RegExp(/\//g), '%2F');
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
const endpoint = `/project/${vcs}/${slug}/pipeline/${pipelineNumber}`;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
responseData = await circleciApiRequest.call(this, 'GET', endpoint, {}, qs);
|
|
|
|
}
|
|
|
|
if (operation === 'getAll') {
|
|
|
|
const vcs = this.getNodeParameter('vcs', i) as string;
|
|
|
|
const filters = this.getNodeParameter('filters', i) as IDataObject;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
|
|
|
let slug = this.getNodeParameter('projectSlug', i) as string;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
slug = slug.replace(new RegExp(/\//g), '%2F');
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
if (filters.branch) {
|
|
|
|
qs.branch = filters.branch;
|
|
|
|
}
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
const endpoint = `/project/${vcs}/${slug}/pipeline`;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
if (returnAll === true) {
|
|
|
|
responseData = await circleciApiRequestAllItems.call(this, 'items', 'GET', endpoint, {}, qs);
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
} else {
|
|
|
|
qs.limit = this.getNodeParameter('limit', i) as number;
|
|
|
|
responseData = await circleciApiRequest.call(this, 'GET', endpoint, {}, qs);
|
|
|
|
responseData = responseData.items;
|
|
|
|
responseData = responseData.splice(0, qs.limit);
|
|
|
|
}
|
2020-06-30 15:46:45 -07:00
|
|
|
}
|
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
if (operation === 'trigger') {
|
|
|
|
const vcs = this.getNodeParameter('vcs', i) as string;
|
|
|
|
let slug = this.getNodeParameter('projectSlug', i) as string;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
slug = slug.replace(new RegExp(/\//g), '%2F');
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
const endpoint = `/project/${vcs}/${slug}/pipeline`;
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
const body: IDataObject = {};
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
if (additionalFields.branch) {
|
|
|
|
body.branch = additionalFields.branch as string;
|
|
|
|
}
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
if (additionalFields.tag) {
|
|
|
|
body.tag = additionalFields.tag as string;
|
|
|
|
}
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
responseData = await circleciApiRequest.call(this, 'POST', endpoint, body, qs);
|
|
|
|
}
|
2020-06-30 15:46:45 -07:00
|
|
|
}
|
2021-07-19 23:58:54 -07:00
|
|
|
if (Array.isArray(responseData)) {
|
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
|
|
} else {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
if (this.continueOnFail()) {
|
|
|
|
returnData.push({ error: error.message });
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
throw error;
|
2020-06-30 15:46:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|