Skip to content

Commit

Permalink
✨ Add Jenkins Node (#2345)
Browse files Browse the repository at this point in the history
* feat: initial jenkins setup

* feat: trigger job functionality

* feat: copy a job

* feat: basic Jenkins instance operations

* feat: create job from xml

* feat: trigger with params

* feat: basic build list

* feat: list build with params

* feat: basic credentials test

* chore: linting fixes

* feat: use baseUrl from credentials

* chore: naming fixes

* feat: filters collection for getall buils

* fix: better ui and credentials

* chore: alphabetize params and fix typos

* ⚡ Small changes

* ⚡ Improvements

* ⚡ Improvements

* ⚡ Improvements

* ⚡ Improvements

* ⚡ Improvements

* ⚡ Improvements

* ⚡ Some improvements

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
  • Loading branch information
3 people authored Jan 15, 2022
1 parent f788422 commit add9c30
Show file tree
Hide file tree
Showing 6 changed files with 851 additions and 0 deletions.
30 changes: 30 additions & 0 deletions packages/nodes-base/credentials/JenkinsApi.credentials.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';

export class JenkinsApi implements ICredentialType {
name = 'jenkinsApi';
displayName = 'Jenkins API';
documentationUrl = 'jenkins';
properties: INodeProperties[] = [
{
displayName: 'Jenking Username',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'Personal API Token',
name: 'apiKey',
type: 'string',
default: '',
},
{
displayName: 'Jenkins Instance URL',
name: 'baseUrl',
type: 'string',
default: '',
},
];
}
45 changes: 45 additions & 0 deletions packages/nodes-base/nodes/Jenkins/GenericFunctions.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import {
OptionsWithUri,
} from 'request';

import {
IExecuteFunctions,
IExecuteSingleFunctions,
IHookFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';

import {
IDataObject,
NodeApiError,
} from 'n8n-workflow';

export async function jenkinsApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, uri: string, qs: IDataObject = {}, body: any = '', option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
const credentials = await this.getCredentials('jenkinsApi') as IDataObject;
let options: OptionsWithUri = {
headers: {
'Accept': 'application/json',
},
method,
auth: {
username: credentials.username as string,
password: credentials.apiKey as string,
},
uri: `${tolerateTrailingSlash(credentials.baseUrl as string)}${uri}`,
json: true,
qs,
body,
};
options = Object.assign({}, options, option);
try {
return await this.helpers.request!(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}

export function tolerateTrailingSlash(baseUrl: string) {
return baseUrl.endsWith('/')
? baseUrl.substr(0, baseUrl.length - 1)
: baseUrl;
}
20 changes: 20 additions & 0 deletions packages/nodes-base/nodes/Jenkins/Jenkins.node.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"node": "n8n-nodes-base.jenkins",
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": [
"Development"
],
"resources": {
"credentialDocumentation": [
{
"url": "https://docs.n8n.io/credentials/jenkins"
}
],
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/nodes/n8n-nodes-base.jenkins/"
}
]
}
}
Loading

0 comments on commit add9c30

Please sign in to comment.