1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model\Behavior;
use Icinga\Module\Icingadb\Common\Auth;
use Icinga\Module\Icingadb\Model\CustomvarFlat;
use ipl\Orm\AliasedExpression;
use ipl\Orm\ColumnDefinition;
use ipl\Orm\Contract\QueryAwareBehavior;
use ipl\Orm\Contract\RewriteColumnBehavior;
use ipl\Orm\Query;
use ipl\Stdlib\Filter;
class FlattenedObjectVars implements RewriteColumnBehavior, QueryAwareBehavior
{
use Auth;
/** @var Query */
protected $query;
public function setQuery(Query $query)
{
$this->query = $query;
return $this;
}
public function rewriteCondition(Filter\Condition $condition, $relation = null)
{
$column = $condition->metaData()->get('columnName');
if ($column !== null) {
$relation = substr($relation, 0, -5) . 'customvar_flat.';
$nameFilter = Filter::like($relation . 'flatname', $column);
$class = get_class($condition);
$valueFilter = new $class($relation . 'flatvalue', $condition->getValue());
return Filter::all($nameFilter, $valueFilter);
}
}
public function rewriteColumn($column, $relation = null)
{
$subQuery = $this->query->createSubQuery(new CustomvarFlat(), $relation)
->limit(1)
->columns('flatvalue')
->filter(Filter::equal('flatname', $column));
$this->applyRestrictions($subQuery);
$alias = $this->query->getDb()->quoteIdentifier([str_replace('.', '_', $relation) . "_$column"]);
list($select, $values) = $this->query->getDb()->getQueryBuilder()->assembleSelect($subQuery->assembleSelect());
return new AliasedExpression($alias, "($select)", null, ...$values);
}
public function rewriteColumnDefinition(ColumnDefinition $def, string $relation): void
{
$parts = explode('.', substr($relation, 0, -5));
$objectType = array_pop($parts);
$name = $def->getName();
if (substr($name, -3) === '[*]') {
// The suggestions also hide this from the label, so should this
$name = substr($name, 0, -3);
}
// Programmatically translated since the full definition is available in class ObjectSuggestions
$def->setLabel(sprintf(t(ucfirst($objectType) . ' %s', '..<customvar-name>'), $name));
}
public function isSelectableColumn(string $name): bool
{
return true;
}
}
|