mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { OptionsWithUri } from 'request';
|
|
import { IExecuteFunctions } from 'n8n-core';
|
|
import { IDataObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
export interface RundeckCredentials {
|
|
url: string;
|
|
token: string;
|
|
}
|
|
|
|
export class RundeckApi {
|
|
private credentials?: RundeckCredentials;
|
|
private executeFunctions: IExecuteFunctions;
|
|
|
|
constructor(executeFunctions: IExecuteFunctions) {
|
|
this.executeFunctions = executeFunctions;
|
|
}
|
|
|
|
protected async request(method: string, endpoint: string, body: IDataObject, query: object) {
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
'user-agent': 'n8n',
|
|
'X-Rundeck-Auth-Token': this.credentials?.token,
|
|
},
|
|
rejectUnauthorized: false,
|
|
method,
|
|
qs: query,
|
|
uri: this.credentials?.url + endpoint,
|
|
body,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.executeFunctions.helpers.request!(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.executeFunctions.getNode(), error);
|
|
}
|
|
}
|
|
|
|
async init() {
|
|
const credentials = await this.executeFunctions.getCredentials('rundeckApi');
|
|
|
|
if (credentials === undefined) {
|
|
throw new NodeOperationError(this.executeFunctions.getNode(), 'No credentials got returned!');
|
|
}
|
|
|
|
this.credentials = credentials as unknown as RundeckCredentials;
|
|
}
|
|
|
|
executeJob(jobId: string, args: IDataObject[]): Promise<IDataObject> {
|
|
let params = '';
|
|
|
|
if (args) {
|
|
for (const arg of args) {
|
|
params += '-' + arg.name + ' ' + arg.value + ' ';
|
|
}
|
|
}
|
|
|
|
const body = {
|
|
argString: params,
|
|
};
|
|
|
|
return this.request('POST', `/api/14/job/${jobId}/run`, body, {});
|
|
}
|
|
|
|
getJobMetadata(jobId: string): Promise<IDataObject> {
|
|
return this.request('GET', `/api/18/job/${jobId}/info`, {}, {});
|
|
}
|
|
}
|