first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,143 @@
|
||||
import * as nacl_factory from 'js-nacl';
|
||||
import get from 'lodash/get';
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
ILoadOptionsFunctions,
|
||||
IDataObject,
|
||||
IHookFunctions,
|
||||
JsonObject,
|
||||
IHttpRequestMethods,
|
||||
IRequestOptions,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeApiError } from 'n8n-workflow';
|
||||
|
||||
export async function venafiApiRequest(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
||||
method: IHttpRequestMethods,
|
||||
resource: string,
|
||||
body = {},
|
||||
qs: IDataObject = {},
|
||||
option: IDataObject = {},
|
||||
): Promise<any> {
|
||||
const operation = this.getNodeParameter('operation', 0);
|
||||
const credentials = await this.getCredentials('venafiTlsProtectCloudApi');
|
||||
|
||||
const region = credentials.region ?? 'cloud';
|
||||
|
||||
const options: IRequestOptions = {
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
'content-type': 'application/json',
|
||||
},
|
||||
method,
|
||||
body,
|
||||
qs,
|
||||
uri: `https://api.venafi.${region}${resource}`,
|
||||
json: true,
|
||||
};
|
||||
|
||||
if (Object.keys(option).length) {
|
||||
Object.assign(options, option);
|
||||
}
|
||||
|
||||
// For cert download we don't need any headers
|
||||
// If we remove for everything the key fetch fails
|
||||
if (operation === 'download') {
|
||||
// We need content-type for keystore
|
||||
if (!resource.endsWith('keystore')) {
|
||||
delete options.headers!.Accept;
|
||||
delete options.headers!['content-type'];
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
if (Object.keys(body).length === 0) {
|
||||
delete options.body;
|
||||
}
|
||||
return await this.helpers.requestWithAuthentication.call(
|
||||
this,
|
||||
'venafiTlsProtectCloudApi',
|
||||
options,
|
||||
);
|
||||
} catch (error) {
|
||||
throw new NodeApiError(this.getNode(), error as JsonObject);
|
||||
}
|
||||
}
|
||||
|
||||
export async function venafiApiRequestAllItems(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
propertyName: string,
|
||||
method: IHttpRequestMethods,
|
||||
endpoint: string,
|
||||
|
||||
body: IDataObject = {},
|
||||
query: IDataObject = {},
|
||||
) {
|
||||
const returnData: IDataObject[] = [];
|
||||
|
||||
let responseData;
|
||||
|
||||
do {
|
||||
responseData = await venafiApiRequest.call(this, method, endpoint, body, query);
|
||||
endpoint = get(responseData, '_links[0].Next');
|
||||
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
||||
} while (responseData._links?.[0].Next);
|
||||
|
||||
return returnData;
|
||||
}
|
||||
|
||||
export async function encryptPassphrase(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions,
|
||||
certificateId: string,
|
||||
passphrase: string,
|
||||
storePassphrase: string,
|
||||
) {
|
||||
let dekHash = '';
|
||||
const dekResponse = await venafiApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/outagedetection/v1/certificates/${certificateId}`,
|
||||
);
|
||||
|
||||
if (dekResponse.dekHash) {
|
||||
dekHash = dekResponse.dekHash;
|
||||
}
|
||||
|
||||
let pubKey = '';
|
||||
const pubKeyResponse = await venafiApiRequest.call(
|
||||
this,
|
||||
'GET',
|
||||
`/v1/edgeencryptionkeys/${dekHash}`,
|
||||
);
|
||||
|
||||
if (pubKeyResponse.key) {
|
||||
pubKey = pubKeyResponse.key;
|
||||
}
|
||||
|
||||
let encryptedKeyPass = '';
|
||||
let encryptedKeyStorePass = '';
|
||||
|
||||
const promise = async () => {
|
||||
return await new Promise((resolve, reject) => {
|
||||
nacl_factory.instantiate((nacl: any) => {
|
||||
try {
|
||||
const passphraseUTF8 = nacl.encode_utf8(passphrase) as string;
|
||||
const keyPassBuffer = nacl.crypto_box_seal(passphraseUTF8, Buffer.from(pubKey, 'base64'));
|
||||
encryptedKeyPass = Buffer.from(keyPassBuffer as Buffer).toString('base64');
|
||||
|
||||
const storePassphraseUTF8 = nacl.encode_utf8(storePassphrase) as string;
|
||||
const keyStorePassBuffer = nacl.crypto_box_seal(
|
||||
storePassphraseUTF8,
|
||||
Buffer.from(pubKey, 'base64'),
|
||||
);
|
||||
encryptedKeyStorePass = Buffer.from(keyStorePassBuffer as Buffer).toString('base64');
|
||||
|
||||
return resolve([encryptedKeyPass, encryptedKeyStorePass]);
|
||||
} catch (error) {
|
||||
return reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
return await promise();
|
||||
}
|
||||
Reference in New Issue
Block a user