Skip to content

Commit

Permalink
feat: Add Zabbix credential only node (#11489)
Browse files Browse the repository at this point in the history
  • Loading branch information
adina-hub authored Nov 22, 2024
1 parent 0cbb46c commit fbd1ecf
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
78 changes: 78 additions & 0 deletions packages/nodes-base/credentials/ZabbixApi.credentials.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
import type {
IAuthenticateGeneric,
Icon,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';

export class ZabbixApi implements ICredentialType {
name = 'zabbixApi';

displayName = 'Zabbix API';

documentationUrl = 'zabbix';

icon: Icon = 'file:icons/Zabbix.svg';

httpRequestNode = {
name: 'Zabbix',
docsUrl: 'https://www.zabbix.com/documentation/current/en/manual/api',
apiBaseUrl: '',
};

properties: INodeProperties[] = [
{
displayName: 'URL',
name: 'url',
required: true,
type: 'string',
default: '',
},
{
displayName: 'API Token',
name: 'apiToken',
required: true,
type: 'string',
typeOptions: { password: true },
default: '',
},
];

authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiToken}}',
'Content-Type': 'application/json-rpc',
},
},
};

test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials.url}}'.replace(/\/$/, ''),
url: '/api_jsonrpc.php',
method: 'POST',
body: {
jsonrpc: '2.0',
method: 'host.get',
params: {
output: ['hostid', 'host'],
selectInterfaces: ['interfaceid', 'ip'],
},
id: 2,
},
},
rules: [
{
type: 'responseSuccessBody',
properties: {
key: 'result',
value: undefined,
message: 'Invalid access token',
},
},
],
};
}
1 change: 1 addition & 0 deletions packages/nodes-base/credentials/icons/Zabbix.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/nodes-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@
"dist/credentials/XeroOAuth2Api.credentials.js",
"dist/credentials/YourlsApi.credentials.js",
"dist/credentials/YouTubeOAuth2Api.credentials.js",
"dist/credentials/ZabbixApi.credentials.js",
"dist/credentials/ZammadBasicAuthApi.credentials.js",
"dist/credentials/ZammadTokenAuthApi.credentials.js",
"dist/credentials/ZendeskApi.credentials.js",
Expand Down

0 comments on commit fbd1ecf

Please sign in to comment.