mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
9a1cc56806
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
import type { OptionsWithUri } from 'request';
|
|
import type { IDataObject, IExecuteFunctions, JsonObject } from 'n8n-workflow';
|
|
import { 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 credentialType = 'rundeckApi';
|
|
|
|
const options: OptionsWithUri = {
|
|
rejectUnauthorized: false,
|
|
method,
|
|
qs: query,
|
|
uri: (this.credentials?.url as string) + endpoint,
|
|
body,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.executeFunctions.helpers.requestWithAuthentication.call(
|
|
this.executeFunctions,
|
|
credentialType,
|
|
options,
|
|
);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.executeFunctions.getNode(), error as JsonObject);
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
async executeJob(jobId: string, args: IDataObject[], filter?: string): Promise<IDataObject> {
|
|
let params = '';
|
|
|
|
if (args) {
|
|
for (const arg of args) {
|
|
params += '-' + (arg.name as string) + ' ' + (arg.value as string) + ' ';
|
|
}
|
|
}
|
|
|
|
const body = {
|
|
argString: params,
|
|
};
|
|
|
|
const query: IDataObject = {};
|
|
if (filter) {
|
|
query.filter = filter;
|
|
}
|
|
|
|
return await this.request('POST', `/api/14/job/${jobId}/run`, body, query);
|
|
}
|
|
|
|
async getJobMetadata(jobId: string): Promise<IDataObject> {
|
|
return await this.request('GET', `/api/18/job/${jobId}/info`, {}, {});
|
|
}
|
|
}
|