WIP cluster rebuild

This commit is contained in:
fbsanchez 2020-05-14 17:49:02 +02:00
parent 57ccd783b0
commit 585f0f011e
7 changed files with 562 additions and 2 deletions

View File

@ -0,0 +1,137 @@
/* global $ */
/**
* Add modules from available to selected.
*/
function addItems(id, noneStr) {
$("#available-select-" + id + " :selected")
.toArray()
.forEach(function(item) {
$("#selected-select-" + id).append(item);
});
keepSelectClean("available-select-" + id, noneStr);
keepSelectClean("selected-select-" + id, noneStr);
}
/**
* Mark all options for given id.
*/
function markAll(id) {
$("#" + id + " option").prop("selected", true);
}
/**
* Remove modules from selected back to available.
*/
function removeItems(id, noneStr) {
$("#selected-select-" + id + " :selected")
.toArray()
.forEach(function(item) {
$("#available-select-" + id).append(item);
});
keepSelectClean("available-select-" + id, noneStr);
keepSelectClean("selected-select-" + id, noneStr);
}
/**
* 'None' option, if needed.
*/
function keepSelectClean(id, noneStr) {
$("#" + id + " option[value=0]").remove();
if ($("#" + id + " option").length == 0) {
$("#" + id).append(new Option(noneStr, 0));
}
$("#" + id + " option").each(function() {
$(this).prop("selected", false);
});
}
function filterItems(id, str) {
// Remove option 0 - None.
$("#" + id + " option[value=0]").remove();
// Move not matching elements filtered to tmp-id.
var tmp = $("#" + id + " option:not(:contains(" + str + "))").toArray();
tmp.forEach(function(item) {
$("#tmp-" + id).append(item);
$(this).remove();
});
// Move matching filter back to id.
tmp = $("#tmp-" + id + " option:contains(" + str + ")").toArray();
tmp.forEach(function(item) {
$("#" + id).append(item);
$(this).remove();
});
}
function filterAvailableItems(txt, id, noneStr) {
filterItems("available-select-" + id, txt);
keepSelectClean("available-select-" + id, noneStr);
}
function filterSelectedItems(txt, id, noneStr) {
filterItems("selected-select-" + id, txt);
keepSelectClean("selected-select-" + id, noneStr);
}
function reloadContent(id, url, options, side, noneStr) {
var current;
var opposite;
if (side == "right") {
current = "selected-select-" + id;
opposite = "available-select-" + id;
} else if (side == "left") {
current = "available-select-" + id;
opposite = "selected-select-" + id;
} else {
console.error("reloadContent bad usage.");
return;
}
var data = JSON.parse(atob(options));
data.side = side;
data.group_recursion = $("#checkbox-id-group-recursion-" + current).prop(
"checked"
);
data.group_id = $("#id-group-" + current).val();
$.ajax({
method: "post",
url: url,
dataType: "json",
data: data,
success: function(data) {
// Cleanup previous content.
$("#" + current).empty();
for (var [value, label] of Object.entries(data)) {
if (
$("#" + opposite + " option[value=" + value + "]").length == 0 &&
$("#tmp-" + current + " option[value=" + value + "]").length == 0
) {
// Does not exist in opposite box nor is filtered.
$("#" + current).append(new Option(label, value));
}
}
keepSelectClean(current, noneStr);
},
error: function(data) {
console.error(data.responseText);
}
});
}
$(document).submit(function() {
// Force select all 'selected' items to send them on submit.
$("[id*=text-filter-item-selected-")
.val("")
.keyup();
$("[id*=selected-select-] option").prop("selected", true);
});

View File

@ -0,0 +1,129 @@
<?php
/**
* Agent entity class.
*
* @category Class
* @package Pandora FMS
* @subpackage OpenSource
* @version 1.0.0
* @license See below
*
* ______ ___ _______ _______ ________
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
*
* ============================================================================
* Copyright (c) 2005-2019 Artica Soluciones Tecnologicas
* Please see http://pandorafms.org for full contribution list
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation for version 2.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* ============================================================================
*/
// Begin.
namespace PandoraFMS;
/**
* PandoraFMS agent entity.
*/
class Agent extends Entity
{
/**
* Builds a PandoraFMS\Agent object from a agent id.
*
* @param integer $id_agent Agent Id.
*/
public function __construct(?int $id_agent=null)
{
if (is_numeric($id_agent) === true) {
parent::__construct('tagente', ['id_agente' => $id_agent]);
} else {
// Create empty skel.
parent::__construct('tagente');
}
// Customize certain fields.
$this->fields['group'] = new Group($this->fields['id_grupo']);
}
/**
* Saves current group definition to database.
*
* @param boolean $alias_as_name Use alias as agent name.
*
* @return mixed Affected rows of false in case of error.
* @throws \Exception On error.
*/
public function save(bool $alias_as_name=false)
{
if (empty($this->fields['nombre']) === true) {
if ($alias_as_name === true
&& (empty($this->fields['alias']) === true)
) {
throw new \Exception(
get_class($this).' error, nor "alias" nor "nombre" are set'
);
} else {
// Use alias instead.
$this->fields['nombre'] = $this->fields['alias'];
}
}
if ($this->fields['id_agente'] > 0) {
// Agent exists.
$updates = $this->fields;
// Remove shortcuts from values.
unset($updates['group']);
$this->fields['id_agente'] = \agents_create_agent(
$updates['nombre'],
$updates['id_grupo'],
$updates['intervalo'],
$updates['direccion'],
$updates,
$alias_as_name
);
} else {
// Agent update.
$updates = $this->fields;
// Remove shortcuts from values.
unset($updates['group']);
// Clean null fields.
foreach ($updates as $k => $v) {
if ($v === null) {
unset($updates[$k]);
}
}
$this->fields['id_agente'] = \agents_create_agent(
$updates['nombre'],
$updates['id_grupo'],
$updates['intervalo'],
$updates['direccion'],
$updates,
$alias_as_name
);
}
if ($this->fields['group']->id_grupo() === null) {
// Customize certain fields.
$this->fields['group'] = new Group($this->fields['id_grupo']);
}
return false;
}
}

View File

@ -0,0 +1,142 @@
<?php
/**
* Entity class.
*
* @category Abstract class
* @package Pandora FMS
* @subpackage OpenSource
* @version 1.0.0
* @license See below
*
* ______ ___ _______ _______ ________
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
*
* ============================================================================
* Copyright (c) 2005-2019 Artica Soluciones Tecnologicas
* Please see http://pandorafms.org for full contribution list
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation for version 2.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* ============================================================================
*/
// Begin.
namespace PandoraFMS;
/**
* Defines common methods for all PandoraFMS entity objects.
*/
abstract class Entity
{
/**
* Entity fields (from table).
*
* @var array
*/
protected $fields = [];
/**
* Target table.
*
* @var string
*/
protected $table = '';
/**
* Defines a generic constructor to extract information of the object.
*
* @param string $table Table.
* @param array $filters Filters, for instance ['id' => $id].
*
* @throws \Exception On error.
*/
public function __construct(string $table, ?array $filters=null)
{
if (empty($table) === true) {
throw new \Exception(
get_class($this).' error, table name is not defined'
);
}
$this->table = $table;
if (is_array($filters) === true) {
// New one.
$data = \db_get_row_filter($this->table, $filters);
if ($data === false) {
throw new \Exception(
get_class($this).' error, entity not found'
);
}
// Map fields.
foreach ($data as $k => $v) {
$this->fields[$k] = $v;
}
} else {
// Empty one.
$data = \db_get_all_rows_sql(
sprintf(
'SHOW COLUMNS FROM %s',
$this->table
)
);
foreach ($data as $row) {
$this->fields[$row['Field']] = null;
}
}
}
/**
* Dynamically call methods in this object.
*
* @param string $methodName Name of target method or attribute.
* @param array $params Arguments for target method.
*
* @return mixed Return of method.
* @throws \Exception On error.
*/
public function __call(string $methodName, ?array $params=null)
{
// Prioritize written methods over dynamic ones.
if (method_exists($this, $methodName) === true) {
return $this->{$methodName}($params);
}
if (array_key_exists($methodName, $this->fields) === true) {
if (empty($params) === true) {
return $this->fields[$methodName];
} else {
$this->fields[$methodName] = $params[0];
}
return null;
}
throw new \Exception(
get_class($this).' error, method '.$methodName.' does not exist'
);
}
/**
* Saves current object definition to database.
*
* @return boolean Success or not.
*/
public abstract function save();
}

View File

@ -0,0 +1,100 @@
<?php
/**
* Group entity class.
*
* @category Class
* @package Pandora FMS
* @subpackage OpenSource
* @version 1.0.0
* @license See below
*
* ______ ___ _______ _______ ________
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
*
* ============================================================================
* Copyright (c) 2005-2019 Artica Soluciones Tecnologicas
* Please see http://pandorafms.org for full contribution list
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation for version 2.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* ============================================================================
*/
// Begin.
namespace PandoraFMS;
/**
* PandoraFMS Group entity.
*/
class Group extends Entity
{
/**
* Builds a PandoraFMS\Group object from a group id.
*
* @param integer $id_group Group Id.
* @param boolean $recursive Create parents as objects.
*/
public function __construct(?int $id_group=null, bool $recursive=false)
{
if ($id_group === 0) {
parent::__construct('tgrupo');
$this->fields['id'] = 0;
$this->fields['nombre'] = 'All';
} else if (is_numeric($id_group) === true) {
parent::__construct('tgrupo', ['id_grupo' => $id_group]);
if ($recursive === true) {
// Customize certain fields.
$this->fields['parent'] = new Group($this->fields['parent']);
}
} else {
// Empty skel.
parent::__construct('tgrupo');
}
}
/**
* Saves current group definition to database.
*
* @return mixed Affected rows of false in case of error.
*/
public function save()
{
global $config;
if (isset($config['centralized_management'])
&& $config['centralized_management'] > 0
) {
throw new \Exception(
get_class($this).' error, cannot be modified in a centralized management environment.'
);
}
if ($this->fields['id_grupo'] > 0) {
$updates = $this->fields;
if (is_numeric($updates['parent']) === false) {
$updates['parent'] = $this->parent()->id_grupo();
}
return db_process_sql_update(
'tgrupo',
$this->fields,
['id_grupo' => $this->fields['id_grupo']]
);
}
return false;
}
}

View File

@ -57,8 +57,13 @@ class View
extract($data);
}
if (file_exists($config['homedir'].'/views/'.$page.'.php') === true) {
include $config['homedir'].'/views/'.$page.'.php';
$open = $config['homedir'].'/views/'.$page.'.php';
$ent = $config['homedir'].'/'.ENTERPRISE_DIR.'/views/'.$page.'.php';
if (file_exists($ent) === true) {
include $ent;
} else if (file_exists($open) === true) {
include $open;
} else {
ui_print_error_message(__('View %s not found', $page), true);
}

View File

@ -0,0 +1,3 @@
.wizard select {
min-width: 16em;
}

View File

@ -0,0 +1,44 @@
.multi-select .multi-select-container {
flex: 1 1 200px;
min-width: 200px;
}
.multi-select-container * {
flex: 1 1 auto;
}
.multi-select.flex-column {
justify-content: space-between;
}
.multi-select-container.flex-column * {
margin: 0.2em 0;
}
.multi-select-container.flex-column {
flex-wrap: nowrap;
}
.arrows-container {
width: 50px;
}
.multi-select-container .filter label,
.multi-select-container .filter input,
.multi-select-container .filter select {
font-size: 0.8em;
}
.multi-select-container .title {
text-align: center;
font-style: italic;
margin-top: 1em;
color: #424242;
}
.multi-select-container.flex-column div {
text-align: left;
}
.multi-select-container.flex-column div input {
margin-left: 1em;
}