-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
f788422
commit add9c30
Showing
6 changed files
with
851 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: '', | ||
}, | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.