mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 21:37:32 -08:00
🔀 Merge branch 'feature/cricle-ci' of https://github.com/RicardoE105/n8n into RicardoE105-feature/cricle-ci
This commit is contained in:
commit
3fb5f3af13
17
packages/nodes-base/credentials/CircleCiApi.credentials.ts
Normal file
17
packages/nodes-base/credentials/CircleCiApi.credentials.ts
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
import {
|
||||||
|
ICredentialType,
|
||||||
|
NodePropertyTypes,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export class CircleCiApi implements ICredentialType {
|
||||||
|
name = 'circleCiApi';
|
||||||
|
displayName = 'CircleCI API';
|
||||||
|
properties = [
|
||||||
|
{
|
||||||
|
displayName: 'Personal API Token',
|
||||||
|
name: 'apiKey',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
140
packages/nodes-base/nodes/CircleCi/CircleCi.node.ts
Normal file
140
packages/nodes-base/nodes/CircleCi/CircleCi.node.ts
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
import {
|
||||||
|
IExecuteFunctions,
|
||||||
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
import {
|
||||||
|
IDataObject,
|
||||||
|
INodeTypeDescription,
|
||||||
|
INodeExecutionData,
|
||||||
|
INodeType,
|
||||||
|
} 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,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
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++) {
|
||||||
|
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;
|
||||||
|
|
||||||
|
slug = slug.replace(new RegExp(/\//g), '%2F');
|
||||||
|
|
||||||
|
const endpoint = `/project/${vcs}/${slug}/pipeline/${pipelineNumber}`;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
slug = slug.replace(new RegExp(/\//g), '%2F');
|
||||||
|
|
||||||
|
if (filters.branch) {
|
||||||
|
qs.branch = filters.branch;
|
||||||
|
}
|
||||||
|
|
||||||
|
const endpoint = `/project/${vcs}/${slug}/pipeline`;
|
||||||
|
|
||||||
|
if (returnAll === true) {
|
||||||
|
responseData = await circleciApiRequestAllItems.call(this, 'items', 'GET', endpoint, {}, qs);
|
||||||
|
|
||||||
|
} 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (operation === 'trigger') {
|
||||||
|
const vcs = this.getNodeParameter('vcs', i) as string;
|
||||||
|
let slug = this.getNodeParameter('projectSlug', i) as string;
|
||||||
|
|
||||||
|
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||||
|
|
||||||
|
slug = slug.replace(new RegExp(/\//g), '%2F');
|
||||||
|
|
||||||
|
const endpoint = `/project/${vcs}/${slug}/pipeline`;
|
||||||
|
|
||||||
|
const body: IDataObject = {};
|
||||||
|
|
||||||
|
if (additionalFields.branch) {
|
||||||
|
body.branch = additionalFields.branch as string;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (additionalFields.tag) {
|
||||||
|
body.tag = additionalFields.tag as string;
|
||||||
|
}
|
||||||
|
|
||||||
|
responseData = await circleciApiRequest.call(this, 'POST', endpoint, body, qs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (Array.isArray(responseData)) {
|
||||||
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
||||||
|
} else {
|
||||||
|
returnData.push(responseData as IDataObject);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [this.helpers.returnJsonArray(returnData)];
|
||||||
|
}
|
||||||
|
}
|
67
packages/nodes-base/nodes/CircleCi/GenericFunctions.ts
Normal file
67
packages/nodes-base/nodes/CircleCi/GenericFunctions.ts
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
import {
|
||||||
|
OptionsWithUri,
|
||||||
|
} from 'request';
|
||||||
|
|
||||||
|
import {
|
||||||
|
IExecuteFunctions,
|
||||||
|
IExecuteSingleFunctions,
|
||||||
|
IHookFunctions,
|
||||||
|
ILoadOptionsFunctions,
|
||||||
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
import {
|
||||||
|
IDataObject,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export async function circleciApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
|
const credentials = this.getCredentials('circleCiApi');
|
||||||
|
if (credentials === undefined) {
|
||||||
|
throw new Error('No credentials got returned!');
|
||||||
|
}
|
||||||
|
let options: OptionsWithUri = {
|
||||||
|
headers: {
|
||||||
|
'Circle-Token': credentials.apiKey,
|
||||||
|
'Accept': 'application/json',
|
||||||
|
},
|
||||||
|
method,
|
||||||
|
qs,
|
||||||
|
body,
|
||||||
|
uri: uri ||`https://circleci.com/api/v2${resource}`,
|
||||||
|
json: true
|
||||||
|
};
|
||||||
|
options = Object.assign({}, options, option);
|
||||||
|
if (Object.keys(options.body).length === 0) {
|
||||||
|
delete options.body;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
return await this.helpers.request!(options);
|
||||||
|
} catch (err) {
|
||||||
|
if (err.response && err.response.body && err.response.body.message) {
|
||||||
|
// Try to return the error prettier
|
||||||
|
throw new Error(`CircleCI error response [${err.statusCode}]: ${err.response.body.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If that data does not exist for some reason return the actual error
|
||||||
|
throw err; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make an API request to paginated CircleCI endpoint
|
||||||
|
* and return all results
|
||||||
|
*/
|
||||||
|
export async function circleciApiRequestAllItems(this: IHookFunctions | IExecuteFunctions| ILoadOptionsFunctions, propertyName: string, method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
|
|
||||||
|
const returnData: IDataObject[] = [];
|
||||||
|
|
||||||
|
let responseData;
|
||||||
|
|
||||||
|
do {
|
||||||
|
responseData = await circleciApiRequest.call(this, method, resource, body, query);
|
||||||
|
returnData.push.apply(returnData, responseData[propertyName]);
|
||||||
|
query['page-token'] = responseData.next_page_token;
|
||||||
|
} while (
|
||||||
|
responseData.next_page_token !== undefined &&
|
||||||
|
responseData.next_page_token !== null
|
||||||
|
);
|
||||||
|
return returnData;
|
||||||
|
}
|
306
packages/nodes-base/nodes/CircleCi/PipelineDescription.ts
Normal file
306
packages/nodes-base/nodes/CircleCi/PipelineDescription.ts
Normal file
|
@ -0,0 +1,306 @@
|
||||||
|
import {
|
||||||
|
INodeProperties,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export const pipelineOperations = [
|
||||||
|
{
|
||||||
|
displayName: 'Operation',
|
||||||
|
name: 'operation',
|
||||||
|
type: 'options',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Get',
|
||||||
|
value: 'get',
|
||||||
|
description: 'Get a pipeline',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Get All',
|
||||||
|
value: 'getAll',
|
||||||
|
description: 'Get all pipelines',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Trigger',
|
||||||
|
value: 'trigger',
|
||||||
|
description: 'Trigger a pipeline',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'get',
|
||||||
|
description: 'The operation to perform.',
|
||||||
|
},
|
||||||
|
] as INodeProperties[];
|
||||||
|
|
||||||
|
export const pipelineFields = [
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* pipeline:get */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'VCS',
|
||||||
|
name: 'vcs',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Github',
|
||||||
|
value: 'github',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Bitbucket',
|
||||||
|
value: 'bitbucket',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'get',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Version control system',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Project Slug',
|
||||||
|
name: 'projectSlug',
|
||||||
|
type: 'string',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'get',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Project slug in the form org-name/repo-name',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Pipeline Number',
|
||||||
|
name: 'pipelineNumber',
|
||||||
|
type: 'number',
|
||||||
|
typeOptions: {
|
||||||
|
minValue: 1,
|
||||||
|
},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'get',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: 1,
|
||||||
|
description: 'The number of the pipeline',
|
||||||
|
},
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* pipeline:getAll */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'VCS',
|
||||||
|
name: 'vcs',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Github',
|
||||||
|
value: 'github',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Bitbucket',
|
||||||
|
value: 'bitbucket',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Version control system',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Project Slug',
|
||||||
|
name: 'projectSlug',
|
||||||
|
type: 'string',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Project slug in the form org-name/repo-name',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Return All',
|
||||||
|
name: 'returnAll',
|
||||||
|
type: 'boolean',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
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: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
returnAll: [
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
typeOptions: {
|
||||||
|
minValue: 1,
|
||||||
|
maxValue: 500,
|
||||||
|
},
|
||||||
|
default: 100,
|
||||||
|
description: 'How many results to return.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Filters',
|
||||||
|
name: 'filters',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Filter',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Branch',
|
||||||
|
name: 'branch',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The name of a vcs branch.',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* pipeline:trigger */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'VCS',
|
||||||
|
name: 'vcs',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Github',
|
||||||
|
value: 'github',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Bitbucket',
|
||||||
|
value: 'bitbucket',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'trigger',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Version control system',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Project Slug',
|
||||||
|
name: 'projectSlug',
|
||||||
|
type: 'string',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'trigger',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Project slug in the form org-name/repo-name',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Additional Fields',
|
||||||
|
name: 'additionalFields',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Field',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'pipeline',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'trigger',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Branch',
|
||||||
|
name: 'branch',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: `The branch where the pipeline ran.<br/>
|
||||||
|
The HEAD commit on this branch was used for the pipeline.<br/>
|
||||||
|
Note that branch and tag are mutually exclusive.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Tag',
|
||||||
|
name: 'tag',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: `The tag used by the pipeline.<br/>
|
||||||
|
The commit that this tag points to was used for the pipeline.<br/>
|
||||||
|
Note that branch and tag are mutually exclusive`,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as INodeProperties[];
|
BIN
packages/nodes-base/nodes/CircleCi/circleCi.png
Normal file
BIN
packages/nodes-base/nodes/CircleCi/circleCi.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
|
@ -37,6 +37,7 @@
|
||||||
"dist/credentials/BannerbearApi.credentials.js",
|
"dist/credentials/BannerbearApi.credentials.js",
|
||||||
"dist/credentials/BitbucketApi.credentials.js",
|
"dist/credentials/BitbucketApi.credentials.js",
|
||||||
"dist/credentials/BitlyApi.credentials.js",
|
"dist/credentials/BitlyApi.credentials.js",
|
||||||
|
"dist/credentials/CircleCiApi.credentials.js",
|
||||||
"dist/credentials/ChargebeeApi.credentials.js",
|
"dist/credentials/ChargebeeApi.credentials.js",
|
||||||
"dist/credentials/ClearbitApi.credentials.js",
|
"dist/credentials/ClearbitApi.credentials.js",
|
||||||
"dist/credentials/ClickUpApi.credentials.js",
|
"dist/credentials/ClickUpApi.credentials.js",
|
||||||
|
@ -167,6 +168,7 @@
|
||||||
"dist/nodes/Bitbucket/BitbucketTrigger.node.js",
|
"dist/nodes/Bitbucket/BitbucketTrigger.node.js",
|
||||||
"dist/nodes/Bitly/Bitly.node.js",
|
"dist/nodes/Bitly/Bitly.node.js",
|
||||||
"dist/nodes/Calendly/CalendlyTrigger.node.js",
|
"dist/nodes/Calendly/CalendlyTrigger.node.js",
|
||||||
|
"dist/nodes/CircleCi/CircleCi.node.js",
|
||||||
"dist/nodes/Chargebee/Chargebee.node.js",
|
"dist/nodes/Chargebee/Chargebee.node.js",
|
||||||
"dist/nodes/Chargebee/ChargebeeTrigger.node.js",
|
"dist/nodes/Chargebee/ChargebeeTrigger.node.js",
|
||||||
"dist/nodes/Clearbit/Clearbit.node.js",
|
"dist/nodes/Clearbit/Clearbit.node.js",
|
||||||
|
|
Loading…
Reference in a new issue