mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
docs: Branding tweaks for Cal and Citrix ADC (no-changelog) (#10042)
This commit is contained in:
253
packages/nodes-base/nodes/Netscaler/ADC/NetscalerAdc.node.ts
Normal file
253
packages/nodes-base/nodes/Netscaler/ADC/NetscalerAdc.node.ts
Normal file
@@ -0,0 +1,253 @@
|
||||
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
JsonObject,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import { netscalerADCApiRequest } from './GenericFunctions';
|
||||
|
||||
import { fileDescription } from './FileDescription';
|
||||
|
||||
import { certificateDescription } from './CertificateDescription';
|
||||
|
||||
export class NetscalerAdc implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Netscaler ADC',
|
||||
// This prevents a breaking change
|
||||
name: 'citrixAdc',
|
||||
icon: { light: 'file:netscaler.svg', dark: 'file:netscaler.dark.svg' },
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Consume Netscaler ADC API',
|
||||
defaults: {
|
||||
name: 'Netscaler ADC',
|
||||
},
|
||||
credentials: [
|
||||
{
|
||||
name: 'citrixAdcApi',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Resource',
|
||||
name: 'resource',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Certificate',
|
||||
value: 'certificate',
|
||||
},
|
||||
{
|
||||
name: 'File',
|
||||
value: 'file',
|
||||
},
|
||||
],
|
||||
default: 'file',
|
||||
},
|
||||
...certificateDescription,
|
||||
...fileDescription,
|
||||
],
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
const returnData: IDataObject[] = [];
|
||||
const resource = this.getNodeParameter('resource', 0);
|
||||
const operation = this.getNodeParameter('operation', 0);
|
||||
let responseData: IDataObject | IDataObject[] = {};
|
||||
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
try {
|
||||
if (resource === 'file') {
|
||||
if (operation === 'upload') {
|
||||
const fileLocation = this.getNodeParameter('fileLocation', i) as string;
|
||||
const binaryProperty = this.getNodeParameter('binaryProperty', i);
|
||||
const options = this.getNodeParameter('options', i);
|
||||
const endpoint = '/config/systemfile';
|
||||
|
||||
const binaryData = this.helpers.assertBinaryData(i, binaryProperty);
|
||||
const buffer = await this.helpers.getBinaryDataBuffer(i, binaryProperty);
|
||||
|
||||
const body = {
|
||||
systemfile: {
|
||||
filename: binaryData.fileName,
|
||||
filecontent: Buffer.from(buffer).toString('base64'),
|
||||
filelocation: fileLocation,
|
||||
fileencoding: 'BASE64',
|
||||
},
|
||||
};
|
||||
|
||||
if (options.fileName) {
|
||||
body.systemfile.filename = options.fileName as string;
|
||||
}
|
||||
|
||||
await netscalerADCApiRequest.call(this, 'POST', endpoint, body);
|
||||
responseData = { success: true };
|
||||
}
|
||||
if (operation === 'delete') {
|
||||
const fileName = this.getNodeParameter('fileName', i) as string;
|
||||
const fileLocation = this.getNodeParameter('fileLocation', i) as string;
|
||||
|
||||
const endpoint = `/config/systemfile?args=filename:${fileName},filelocation:${encodeURIComponent(
|
||||
fileLocation,
|
||||
)}`;
|
||||
|
||||
await netscalerADCApiRequest.call(this, 'DELETE', endpoint);
|
||||
responseData = { success: true };
|
||||
}
|
||||
if (operation === 'download') {
|
||||
const fileName = this.getNodeParameter('fileName', i) as string;
|
||||
const fileLocation = this.getNodeParameter('fileLocation', i) as string;
|
||||
const binaryProperty = this.getNodeParameter('binaryProperty', i);
|
||||
|
||||
const endpoint = `/config/systemfile?args=filename:${fileName},filelocation:${encodeURIComponent(
|
||||
fileLocation,
|
||||
)}`;
|
||||
|
||||
const { systemfile } = await netscalerADCApiRequest.call(this, 'GET', endpoint);
|
||||
|
||||
const file = systemfile[0];
|
||||
|
||||
const binaryData = await this.helpers.prepareBinaryData(
|
||||
Buffer.from(file.filecontent as string, 'base64'),
|
||||
file.filename as string,
|
||||
);
|
||||
|
||||
responseData = {
|
||||
json: file,
|
||||
binary: {
|
||||
[binaryProperty]: binaryData,
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if (resource === 'certificate') {
|
||||
if (operation === 'create') {
|
||||
const certificateFileName = this.getNodeParameter('certificateFileName', i) as string;
|
||||
const certificateFormat = this.getNodeParameter('certificateFormat', i) as string;
|
||||
const certificateType = this.getNodeParameter('certificateType', i) as string;
|
||||
const certificateRequestFileName = this.getNodeParameter(
|
||||
'certificateRequestFileName',
|
||||
i,
|
||||
) as string;
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i, {});
|
||||
|
||||
let body: IDataObject = {
|
||||
reqfile: certificateRequestFileName,
|
||||
certfile: certificateFileName,
|
||||
certform: certificateFormat,
|
||||
certType: certificateType,
|
||||
...additionalFields,
|
||||
};
|
||||
|
||||
if (certificateType === 'ROOT_CERT') {
|
||||
const privateKeyFileName = this.getNodeParameter('privateKeyFileName', i) as string;
|
||||
body = {
|
||||
...body,
|
||||
keyfile: privateKeyFileName,
|
||||
};
|
||||
} else {
|
||||
const caCertificateFileName = this.getNodeParameter(
|
||||
'caCertificateFileName',
|
||||
i,
|
||||
) as string;
|
||||
const caCertificateFileFormat = this.getNodeParameter(
|
||||
'caCertificateFileFormat',
|
||||
i,
|
||||
) as string;
|
||||
const caPrivateKeyFileFormat = this.getNodeParameter(
|
||||
'caPrivateKeyFileFormat',
|
||||
i,
|
||||
) as string;
|
||||
const caPrivateKeyFileName = this.getNodeParameter(
|
||||
'caPrivateKeyFileName',
|
||||
i,
|
||||
) as string;
|
||||
const caSerialFileNumber = this.getNodeParameter('caSerialFileNumber', i) as string;
|
||||
|
||||
body = {
|
||||
...body,
|
||||
cacert: caCertificateFileName,
|
||||
cacertform: caCertificateFileFormat,
|
||||
cakey: caPrivateKeyFileName,
|
||||
cakeyform: caPrivateKeyFileFormat,
|
||||
caserial: caSerialFileNumber,
|
||||
};
|
||||
}
|
||||
|
||||
const endpoint = '/config/sslcert?action=create';
|
||||
|
||||
await netscalerADCApiRequest.call(this, 'POST', endpoint, { sslcert: body });
|
||||
|
||||
responseData = { success: true };
|
||||
}
|
||||
|
||||
if (operation === 'install') {
|
||||
const certificateKeyPairName = this.getNodeParameter(
|
||||
'certificateKeyPairName',
|
||||
i,
|
||||
) as string;
|
||||
const certificateFileName = this.getNodeParameter('certificateFileName', i) as string;
|
||||
const privateKeyFileName = this.getNodeParameter('privateKeyFileName', i) as string;
|
||||
const certificateFormat = this.getNodeParameter('certificateFormat', i) as string;
|
||||
const notifyExpiration = this.getNodeParameter('notifyExpiration', i) as boolean;
|
||||
const body: IDataObject = {
|
||||
cert: certificateFileName,
|
||||
certkey: certificateKeyPairName,
|
||||
key: privateKeyFileName,
|
||||
inform: certificateFormat,
|
||||
};
|
||||
|
||||
if (certificateFormat === 'PEM') {
|
||||
const password = this.getNodeParameter('password', i) as string;
|
||||
const certificateBundle = this.getNodeParameter('certificateBundle', i) as boolean;
|
||||
Object.assign(body, {
|
||||
passplain: password,
|
||||
bundle: certificateBundle ? 'YES' : 'NO',
|
||||
});
|
||||
}
|
||||
|
||||
if (notifyExpiration) {
|
||||
const notificationPeriod = this.getNodeParameter('notificationPeriod', i) as number;
|
||||
Object.assign(body, {
|
||||
expirymonitor: 'ENABLED',
|
||||
notificationperiod: notificationPeriod,
|
||||
});
|
||||
}
|
||||
|
||||
const endpoint = '/config/sslcertkey';
|
||||
|
||||
await netscalerADCApiRequest.call(this, 'POST', endpoint, { sslcertkey: body });
|
||||
|
||||
responseData = { success: true };
|
||||
}
|
||||
}
|
||||
|
||||
returnData.push(
|
||||
...this.helpers.constructExecutionMetaData(this.helpers.returnJsonArray(responseData), {
|
||||
itemData: { item: i },
|
||||
}),
|
||||
);
|
||||
} catch (error) {
|
||||
if (this.continueOnFail(error)) {
|
||||
returnData.push({ error: (error as JsonObject).toString() });
|
||||
continue;
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
return [returnData as INodeExecutionData[]];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user