ObjectSetTable: search for services in branches

fixes #2738
This commit is contained in:
Thomas Gelf 2023-04-24 11:09:31 +02:00
parent 9d6a41571a
commit e98803a8e5
3 changed files with 53 additions and 2 deletions

View File

@ -16,6 +16,7 @@ This version hasn't been released yet
* FEATURE: Sort Template trees by name (#2691)
* FEATURE: Branch and Sync diff/preview now shows related host for services (#2736)
* FIX: do not fail for (some) Service Dependencies (#2669, #1142)
* FIX: Service Sets can now be searched by Service name in branches too (#2738)
### Icinga Configuration
* FIX: render Set Services to individual zones where required (#1589, #2356)

View File

@ -2,7 +2,9 @@
namespace Icinga\Module\Director\Web\Table;
use gipfl\IcingaWeb2\Zf1\Db\FilterRenderer;
use Icinga\Authentication\Auth;
use Icinga\Data\Filter\Filter;
use Icinga\Module\Director\Db;
use gipfl\IcingaWeb2\Link;
use gipfl\IcingaWeb2\Table\ZfQueryBasedTable;
@ -20,7 +22,7 @@ class ObjectSetTable extends ZfQueryBasedTable
'os.object_name',
'os.description',
'os.assign_filter',
'o.object_name',
'service_object_name',
];
private $type;
@ -28,6 +30,8 @@ class ObjectSetTable extends ZfQueryBasedTable
/** @var Auth */
private $auth;
protected $queries = [];
public static function create($type, Db $db, Auth $auth)
{
$table = new static($db);
@ -94,6 +98,7 @@ class ObjectSetTable extends ZfQueryBasedTable
'object_type' => 'os.object_type',
'assign_filter' => 'os.assign_filter',
'description' => 'os.description',
'service_object_name' => 'o.object_name',
'count_services' => 'COUNT(DISTINCT o.uuid)',
];
if ($this->branchUuid) {
@ -145,7 +150,20 @@ class ObjectSetTable extends ZfQueryBasedTable
$query->group('bos.uuid')->group('os.uuid')->group('os.id')->group('bos.branch_uuid');
$right->group('bos.uuid')->group('os.uuid')->group('os.id')->group('bos.branch_uuid');
}
$right->joinLeft(
['bo' => "branched_icinga_${type}"],
"bo.${type}_set = bos.object_name",
[]
);
$query->joinLeft(
['bo' => "branched_icinga_${type}"],
"bo.${type}_set = bos.object_name",
[]
);
$this->queries = [
$query,
$right
];
$query = $this->db()->select()->union([
'l' => new DbSelectParenthesis($query),
'r' => new DbSelectParenthesis($right),
@ -196,11 +214,40 @@ class ObjectSetTable extends ZfQueryBasedTable
->group('os.assign_filter')
->group('os.description');
};
$this->queries = [$query];
}
return $query;
}
public function search($search)
{
if (! empty($search)) {
$columns = $this->getSearchColumns();
if (strpos($search, ' ') === false) {
$filter = Filter::matchAny();
foreach ($columns as $column) {
$filter->addFilter(Filter::expression($column, '=', "*$search*"));
}
} else {
$filter = Filter::matchAll();
foreach (explode(' ', $search) as $s) {
$sub = Filter::matchAny();
foreach ($columns as $column) {
$sub->addFilter(Filter::expression($column, '=', "*$s*"));
}
$filter->addFilter($sub);
}
}
foreach ($this->queries as $query) {
FilterRenderer::applyToQuery($filter, $query);
}
}
return $this;
}
/**
* @return Db
*/

View File

@ -56,6 +56,9 @@ trait TableWithBranchSupport
$result[$alias] = $column;
}
if (isset($result['count_services'])) {
$result['count_services'] = 'COUNT(DISTINCT COALESCE(o.uuid, bo.uuid))';
}
return $result;
}