<?php declare(strict_types = 0);
class CControllerProblemView extends CControllerProblem {
protected function init(): void {
$this->disableCsrfValidation();
}
protected function checkInput(): bool {
$fields = [
'show' => 'in '.TRIGGERS_OPTION_RECENT_PROBLEM.','.TRIGGERS_OPTION_IN_PROBLEM.','.TRIGGERS_OPTION_ALL,
'groupids' => 'array_id',
'hostids' => 'array_id',
'triggerids' => 'array_id',
'name' => 'string',
'severities' => 'array',
'age_state' => 'in 0,1',
'age' => 'int32',
'inventory' => 'array',
'evaltype' => 'in '.TAG_EVAL_TYPE_AND_OR.','.TAG_EVAL_TYPE_OR,
'tags' => 'array',
'show_tags' => 'in '.SHOW_TAGS_NONE.','.SHOW_TAGS_1.','.SHOW_TAGS_2.','.SHOW_TAGS_3,
'show_symptoms' => 'in 0,1',
'show_suppressed' => 'in 0,1',
'acknowledgement_status' => 'in '.ZBX_ACK_STATUS_ALL.','.ZBX_ACK_STATUS_UNACK.','.ZBX_ACK_STATUS_ACK,
'acknowledged_by_me' => 'in 0,1',
'compact_view' => 'in 0,1',
'show_timeline' => 'in '.ZBX_TIMELINE_OFF.','.ZBX_TIMELINE_ON,
'details' => 'in 0,1',
'highlight_row' => 'in 0,1',
'show_opdata' => 'in '.OPERATIONAL_DATA_SHOW_NONE.','.OPERATIONAL_DATA_SHOW_SEPARATELY.','.OPERATIONAL_DATA_SHOW_WITH_PROBLEM,
'tag_name_format' => 'in '.TAG_NAME_FULL.','.TAG_NAME_SHORTENED.','.TAG_NAME_NONE,
'tag_priority' => 'string',
'from' => 'range_time',
'to' => 'range_time',
'sort' => 'in clock,host,severity,name',
'sortorder' => 'in '.ZBX_SORT_DOWN.','.ZBX_SORT_UP,
'page' => 'ge 1',
'uncheck' => 'in 1',
'filter_name' => 'string',
'filter_custom_time' => 'in 1,0',
'filter_show_counter' => 'in 1,0',
'filter_counters' => 'in 1',
'filter_set' => 'in 1',
'filter_reset' => 'in 1',
'counter_index' => 'ge 0'
];
$ret = $this->validateInput($fields) && $this->validateTimeSelectorPeriod() && $this->validateInventory()
&& $this->validateTags();
if (!$ret) {
$this->setResponse(new CControllerResponseFatal());
}
return $ret;
}
protected function checkPermissions(): bool {
return $this->checkAccess(CRoleHelper::UI_MONITORING_PROBLEMS);
}
protected function doAction(): void {
$filter_tabs = [];
$profile = (new CTabFilterProfile(static::FILTER_IDX, static::FILTER_FIELDS_DEFAULT))->read();
if ($this->hasInput('filter_reset')) {
$profile->reset();
}
elseif ($this->hasInput('filter_set')) {
$profile->setTabFilter(0, ['filter_name' => ''] + $this->cleanInput($this->getInputAll()));
$profile->update();
}
else {