CommentsController: Restrict display of comments

refs #9009
This commit is contained in:
Johannes Meyer 2015-06-15 15:58:54 +02:00
parent b83abc4dbc
commit 8187135564
1 changed files with 4 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class Monitoring_CommentsController extends Controller
'comment_internal_id',
(string)$this->params
));
$this->comments = $this->backend->select()->from('comment', array(
$query = $this->backend->select()->from('comment', array(
'id' => 'comment_internal_id',
'objecttype' => 'object_type',
'comment' => 'comment_data',
@ -43,8 +43,10 @@ class Monitoring_CommentsController extends Controller
'service_description',
'host_display_name',
'service_display_name'
))->addFilter($this->filter)->getQuery()->fetchAll();
))->addFilter($this->filter);
$this->applyRestriction('monitoring/filter/objects', $query);
$this->comments = $query->getQuery()->fetchAll();
if (false === $this->comments) {
throw new Zend_Controller_Action_Exception($this->translate('Comment not found'));
}