n8n/packages/nodes-base/credentials/CiscoSecureEndpointApi.credentials.ts
Elias Meire 14035e1244
feat(editor): Add HTTP request nodes for credentials without a node (#7157)
Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2023-11-13 12:11:16 +01:00

124 lines
2.6 KiB
TypeScript

import type {
ICredentialDataDecryptedObject,
ICredentialTestRequest,
ICredentialType,
IHttpRequestOptions,
INodeProperties,
} from 'n8n-workflow';
import axios from 'axios';
export class CiscoSecureEndpointApi implements ICredentialType {
name = 'ciscoSecureEndpointApi';
displayName = 'Cisco Secure Endpoint (AMP) API';
documentationUrl = 'ciscosecureendpoint';
icon = 'file:icons/Cisco.svg';
httpRequestNode = {
name: 'Cisco Secure Endpoint',
docsUrl: 'https://developer.cisco.com/docs/secure-endpoint/',
apiBaseUrl: '',
};
properties: INodeProperties[] = [
{
displayName: 'Region',
name: 'region',
type: 'options',
options: [
{
name: 'Asia Pacific, Japan, and China',
value: 'apjc.amp',
},
{
name: 'Europe',
value: 'eu.amp',
},
{
name: 'North America',
value: 'amp',
},
],
default: 'amp',
},
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
default: '',
required: true,
},
{
displayName: 'Client Secret',
name: 'clientSecret',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
},
];
async authenticate(
credentials: ICredentialDataDecryptedObject,
requestOptions: IHttpRequestOptions,
): Promise<IHttpRequestOptions> {
const clientId = credentials.clientId as string;
const clientSecret = credentials.clientSecret as string;
const region = credentials.region as string;
const secureXToken = await axios({
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
Accept: 'application/json',
},
auth: {
username: clientId,
password: clientSecret,
},
method: 'POST',
data: new URLSearchParams({
grant_type: 'client_credentials',
}).toString(),
url: `https://visibility.${region}.cisco.com/iroh/oauth2/token`,
});
const secureEndpointToken = await axios({
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
Accept: 'application/json',
Authorization: `Bearer ${secureXToken.data.access_token}`,
},
method: 'POST',
data: new URLSearchParams({
grant_type: 'client_credentials',
}).toString(),
url: `https://api.${region}.cisco.com/v3/access_tokens`,
});
const requestOptionsWithAuth: IHttpRequestOptions = {
...requestOptions,
headers: {
...requestOptions.headers,
Authorization: `Bearer ${secureEndpointToken.data.access_token}`,
},
};
return requestOptionsWithAuth;
}
test: ICredentialTestRequest = {
request: {
baseURL: '=https://api.{{$credentials.region}}.cisco.com',
url: '/v3/organizations',
qs: {
size: 10,
},
},
};
}