Working on ZabbixAPIService for general api calls.
This commit is contained in:
@@ -1,99 +0,0 @@
|
|||||||
define([
|
|
||||||
'angular',
|
|
||||||
],
|
|
||||||
function (angular) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var module = angular.module('grafana.services');
|
|
||||||
|
|
||||||
module.service('ZabbixAPI', function($q, backendSrv) {
|
|
||||||
|
|
||||||
this.init = function () {};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Request data from Zabbix API
|
|
||||||
* @return {object} response.result
|
|
||||||
*/
|
|
||||||
this._request = function(url, method, params, auth) {
|
|
||||||
var options = {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json'
|
|
||||||
},
|
|
||||||
url: url,
|
|
||||||
data: {
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
method: method,
|
|
||||||
params: params,
|
|
||||||
auth: auth,
|
|
||||||
id: 1
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (this.basicAuth || this.withCredentials) {
|
|
||||||
options.withCredentials = true;
|
|
||||||
}
|
|
||||||
if (this.basicAuth) {
|
|
||||||
options.headers.Authorization = this.basicAuth;
|
|
||||||
}
|
|
||||||
|
|
||||||
var self = this;
|
|
||||||
return backendSrv.datasourceRequest(options).then(function (response) {
|
|
||||||
if (!response.data) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
// Handle Zabbix API errors
|
|
||||||
else if (response.data.error) {
|
|
||||||
|
|
||||||
// Handle auth errors
|
|
||||||
if (response.data.error.data === "Session terminated, re-login, please." ||
|
|
||||||
response.data.error.data === "Not authorised." ||
|
|
||||||
response.data.error.data === "Not authorized") {
|
|
||||||
return self.performZabbixAPILogin().then(function (response) {
|
|
||||||
self.auth = response;
|
|
||||||
return self.performZabbixAPIRequest(method, params);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return response.data.result;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get authentication token.
|
|
||||||
* @return {string} auth token
|
|
||||||
*/
|
|
||||||
this.login = function(url, username, password) {
|
|
||||||
var options = {
|
|
||||||
url : this.url,
|
|
||||||
method : 'POST',
|
|
||||||
data: {
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
method: 'user.login',
|
|
||||||
params: {
|
|
||||||
user: this.username,
|
|
||||||
password: this.password
|
|
||||||
},
|
|
||||||
auth: null,
|
|
||||||
id: 1
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (this.basicAuth || this.withCredentials) {
|
|
||||||
options.withCredentials = true;
|
|
||||||
}
|
|
||||||
if (this.basicAuth) {
|
|
||||||
options.headers = options.headers || {};
|
|
||||||
options.headers.Authorization = this.basicAuth;
|
|
||||||
}
|
|
||||||
|
|
||||||
return backendSrv.datasourceRequest(options).then(function (result) {
|
|
||||||
if (!result.data) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return result.data.result;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
});
|
|
||||||
});
|
|
||||||
89
plugins/datasource-zabbix/zabbixAPIService.js
Normal file
89
plugins/datasource-zabbix/zabbixAPIService.js
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
/**
|
||||||
|
* General Zabbix API methods
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'angular',
|
||||||
|
],
|
||||||
|
function (angular) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var module = angular.module('grafana.services');
|
||||||
|
|
||||||
|
module.service('ZabbixAPIService', function($q, backendSrv) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Request data from Zabbix API
|
||||||
|
* @return {object} response.result
|
||||||
|
*/
|
||||||
|
this._request = function(api_url, method, params, options, auth) {
|
||||||
|
var requestData = {
|
||||||
|
jsonrpc: '2.0',
|
||||||
|
method: method,
|
||||||
|
params: params,
|
||||||
|
id: 1
|
||||||
|
};
|
||||||
|
|
||||||
|
// Set auth parameter only if it needed
|
||||||
|
if (auth) {
|
||||||
|
requestData.auth = auth;
|
||||||
|
}
|
||||||
|
|
||||||
|
var requestOptions = {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
url: api_url,
|
||||||
|
data: requestData
|
||||||
|
};
|
||||||
|
|
||||||
|
// Set request options for basic auth
|
||||||
|
if (options.basicAuth || options.withCredentials) {
|
||||||
|
requestOptions.withCredentials = true;
|
||||||
|
}
|
||||||
|
if (options.basicAuth) {
|
||||||
|
requestOptions.headers.Authorization = options.basicAuth;
|
||||||
|
}
|
||||||
|
|
||||||
|
return backendSrv.datasourceRequest(requestOptions).then(function (response) {
|
||||||
|
// General connection issues
|
||||||
|
if (!response.data) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle Zabbix API errors
|
||||||
|
else if (response.data.error) {
|
||||||
|
throw new ZabbixException(response.data.error);
|
||||||
|
}
|
||||||
|
|
||||||
|
return response.data.result;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get authentication token.
|
||||||
|
* @return {string} auth token
|
||||||
|
*/
|
||||||
|
this.login = function(api_url, username, password, options) {
|
||||||
|
var params = {
|
||||||
|
user: username,
|
||||||
|
password: password
|
||||||
|
};
|
||||||
|
return this._request(api_url, 'user.login', params, options, null);
|
||||||
|
};
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// Define zabbix API exception type
|
||||||
|
function ZabbixException(error) {
|
||||||
|
this.code = error.code;
|
||||||
|
this.message = error.message;
|
||||||
|
this.data = error.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
ZabbixException.prototype.toString = function() {
|
||||||
|
return this.name + " " + this.message;
|
||||||
|
};
|
||||||
|
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user