mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-02-20 00:10:09 -05:00
* Auth: Add method `assertColumnRestrictions` * ObjectSuggestions: Do not suggest protected variables `assertColumnRestrictions` does not allow to use them anymore, hence we should not suggest them in searches as well to not to let the user run into an error by accepting a suggestion. Though, when fetching values as well, we still have to obfuscate, otherwise protected vars won't show up in details anymore. * Introduce Icinga\Module\Icingadb\Common\Model Must be used as base for all models, to ensure column restrictions are asserted on filters. * Utilize `Icinga\Module\Icingadb\Common\Model` where applicable
77 lines
2 KiB
PHP
77 lines
2 KiB
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2024 Icinga GmbH | GPLv2 */
|
|
|
|
namespace Icinga\Module\Icingadb\Model;
|
|
|
|
use ipl\Orm\Behavior\Binary;
|
|
use ipl\Orm\Behaviors;
|
|
use Icinga\Module\Icingadb\Common\Model;
|
|
use ipl\Orm\Query;
|
|
use ipl\Orm\Relations;
|
|
|
|
/**
|
|
* Dependency edge model.
|
|
*
|
|
* @property string $id
|
|
* @property string $environment_id
|
|
* @property string $to_node_id
|
|
* @property string $from_node_id
|
|
* @property string $display_name
|
|
* @property string $dependency_edge_state_id
|
|
*
|
|
* @property DependencyNode|Query $child
|
|
* @property DependencyNode|Query $parent
|
|
* @property DependencyEdgeState|Query $state
|
|
*/
|
|
class DependencyEdge extends Model
|
|
{
|
|
public function getTableName(): string
|
|
{
|
|
return 'dependency_edge';
|
|
}
|
|
|
|
public function getKeyName(): string
|
|
{
|
|
return 'id';
|
|
}
|
|
|
|
public function getColumns(): array
|
|
{
|
|
return [
|
|
'environment_id',
|
|
'to_node_id',
|
|
'from_node_id',
|
|
'display_name',
|
|
'dependency_edge_state_id'
|
|
];
|
|
}
|
|
|
|
public function createBehaviors(Behaviors $behaviors): void
|
|
{
|
|
$behaviors->add(new Binary([
|
|
'id',
|
|
'environment_id',
|
|
'to_node_id',
|
|
'from_node_id',
|
|
'dependency_edge_state_id'
|
|
]));
|
|
}
|
|
|
|
public function createRelations(Relations $relations): void
|
|
{
|
|
$relations->belongsTo('child', DependencyNode::class)
|
|
->setCandidateKey('from_node_id');
|
|
$relations->belongsTo('parent', DependencyNode::class)
|
|
->setCandidateKey('to_node_id');
|
|
$relations->hasOne('state', DependencyEdgeState::class)
|
|
->setCandidateKey('dependency_edge_state_id')
|
|
->setForeignKey('id');
|
|
|
|
// "from" and "to" are only necessary for sub-query filters.
|
|
$relations->belongsTo('from', DependencyNode::class)
|
|
->setCandidateKey('from_node_id');
|
|
$relations->belongsTo('to', DependencyNode::class)
|
|
->setCandidateKey('to_node_id');
|
|
}
|
|
}
|