2020-04-04 07:04:25 -07:00
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import { IDataObject } from 'n8n-workflow';
|
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
export async function cockpitApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const credentials = this.getCredentials('cockpitApi');
|
|
|
|
|
|
|
|
if (credentials === undefined) {
|
|
|
|
throw new Error('No credentials available.');
|
|
|
|
}
|
|
|
|
|
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs: {
|
2020-10-22 06:46:03 -07:00
|
|
|
token: credentials!.accessToken,
|
2020-04-04 07:04:25 -07:00
|
|
|
},
|
|
|
|
body,
|
|
|
|
uri: uri || `${credentials!.url}/api${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-04-04 07:04:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
options = Object.assign({}, options, option);
|
|
|
|
|
|
|
|
if (Object.keys(options.body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} catch (error) {
|
2020-04-05 06:49:47 -07:00
|
|
|
let errorMessage = error.message;
|
|
|
|
if (error.error) {
|
|
|
|
errorMessage = error.error.message || error.error.error;
|
|
|
|
}
|
2020-04-04 07:04:25 -07:00
|
|
|
|
2020-04-05 06:49:47 -07:00
|
|
|
throw new Error(`Cockpit error [${error.statusCode}]: ` + errorMessage);
|
2020-04-04 07:04:25 -07:00
|
|
|
}
|
|
|
|
}
|
2020-04-11 11:25:20 -07:00
|
|
|
|
|
|
|
export function createDataFromParameters(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, itemIndex: number): IDataObject {
|
|
|
|
const dataFieldsAreJson = this.getNodeParameter('jsonDataFields', itemIndex) as boolean;
|
|
|
|
|
|
|
|
if (dataFieldsAreJson) {
|
|
|
|
// Parameters are defined as JSON
|
2021-03-08 09:45:35 -08:00
|
|
|
return JSON.parse(this.getNodeParameter('dataFieldsJson', itemIndex, '') as string);
|
2020-04-11 11:25:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parameters are defined in UI
|
2020-04-11 11:30:28 -07:00
|
|
|
const uiDataFields = this.getNodeParameter('dataFieldsUi', itemIndex, {}) as IDataObject;
|
2020-04-11 11:25:20 -07:00
|
|
|
const unpacked: IDataObject = {};
|
|
|
|
|
|
|
|
if (uiDataFields.field === undefined) {
|
|
|
|
return unpacked;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const field of uiDataFields!.field as IDataObject[]) {
|
|
|
|
unpacked[field!.name as string] = field!.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return unpacked;
|
|
|
|
}
|