From 068e07109beb571438b2a37ac7a9a8ff49e74499 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 7 May 2014 09:40:23 +0200 Subject: [PATCH] Monitoring/ListController: Operate on the `hostStatus' view instead of the query The monitoring module's ListController should only operate on data views instead of queries. Thus the applyRestrictions() method now expects a data view instead of a query. Further since filters are subject to change the applyRestrictions() method now does nothing. The `hostsAction()' no longer uses `DataView::fromRequest()' but selects the data view from a monitoring backend. `DataView::fromRequest()' orders the underlying query which must be reworked in the current scenario. --- .../controllers/ListController.php | 32 ++++++++----------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index 9ffc6c498..d12a8caf6 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -114,8 +114,8 @@ class Monitoring_ListController extends Controller $this->view->query = $this->_request->getQuery(); $this->view->title = 'Host Status'; $this->compactView = 'hosts-compact'; - $dataview = HostStatusView::fromRequest( - $this->_request, + $dataView = $this->backend->select()->from( + 'hostStatus', array( 'host_icon_image', 'host_name', @@ -141,10 +141,10 @@ class Monitoring_ListController extends Controller 'host_max_check_attempts' ) ); - $query = $dataview->getQuery(); - $this->applyRestrictions($query); + $query = $dataView->getQuery(); + $this->applyRestrictions($dataView); - $this->setupFilterControl($dataview, 'host'); + $this->setupFilterControl($dataView, 'host'); $this->setupSortControl(array( 'host_last_check' => 'Last Host Check', @@ -155,7 +155,7 @@ class Monitoring_ListController extends Controller 'host_state' => 'Hard State' )); $this->handleFormatRequest($query); - $this->view->hosts = $query->paginate(); + $this->view->hosts = $dataView->paginate(); } @@ -499,24 +499,18 @@ class Monitoring_ListController extends Controller } /** - * Apply current users monitoring/filter restrictions to the given query + * Apply current user's `monitoring/filter' restrictions on the given data view * - * @param $query Filterable Query that should be filtered - * @return Filterable + * @param DataView $dataView + * + * @return DataView */ - protected function applyRestrictions(Filterable $query) + protected function applyRestrictions(DataView $dataView) { foreach ($this->getRestrictions('monitoring/filter') as $restriction) { - parse_str($restriction, $filter); - foreach ($filter as $k => $v) { - if ($query->isValidFilterTarget($k)) { - // TODO: This is NOT enough. We need to fix filters and get - // applyAuthFilters back. - $query->where($k, $v); - } - } + // TODO(el): Apply restrictions } - return $query; + return $dataView; } /**