setHost($host); $table->getAttributes()->set('data-base-target', '_self'); return $table; } public function setTitle($title) { $this->title = $title; return $this; } public function getColumnsToBeRendered() { return [$this->title]; } public function setHost(IcingaHost $host) { $this->host = $host; $this->db = $host->getDb(); return $this; } public function renderRow($row) { return $this::row([ Link::create( sprintf( $this->translate('%s (where %s)'), $row->name, $row->filter ), 'director/host/appliedservice', [ 'name' => $this->host->getObjectName(), 'service_id' => $row->id, ] ) ]); } public function prepareQuery() { $services = []; $matcher = HostApplyMatches::prepare($this->host); foreach ($this->getAllApplyRules() as $rule) { if ($matcher->matchesFilter($rule->filter)) { $services[] = $rule; } } $ds = new ArrayDatasource($services); return $ds->select()->columns([ 'id' => 'id', 'name' => 'name', 'filter' => 'filter', 'assign_filter' => 'assign_filter', ]); } protected function getAllApplyRules() { if ($this->allApplyRules === null) { $this->allApplyRules = $this->fetchAllApplyRules(); foreach ($this->allApplyRules as $rule) { $rule->filter = Filter::fromQueryString($rule->assign_filter); } } return $this->allApplyRules; } protected function fetchAllApplyRules() { $db = $this->db; $query = $db->select()->from( ['s' => 'icinga_service'], [ 'id' => 's.id', 'name' => 's.object_name', 'assign_filter' => 's.assign_filter', ] )->where('object_type = ? AND assign_filter IS NOT NULL', 'apply'); return $db->fetchAll($query); } }