Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2020-05-03 17:30:06 +0300
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2020-05-03 17:30:06 +0300
commit8d9be8910e07b28b4510482c0720425f8ed8233e (patch)
tree8e5ca25c795ad586db165fecff35c3f3cd61c19b /ui/app/controllers/CControllerPopupMedia.php
parente635eaceb24410622a928043971b8e9d89b1049b (diff)
A.F.I..... [ZBX-17667] moved "frontends/php" to "ui" directory
Diffstat (limited to 'ui/app/controllers/CControllerPopupMedia.php')
-rw-r--r--ui/app/controllers/CControllerPopupMedia.php183
1 files changed, 183 insertions, 0 deletions
diff --git a/ui/app/controllers/CControllerPopupMedia.php b/ui/app/controllers/CControllerPopupMedia.php
new file mode 100644
index 00000000000..667de4e07dd
--- /dev/null
+++ b/ui/app/controllers/CControllerPopupMedia.php
@@ -0,0 +1,183 @@
+<?php
+/*
+** Zabbix
+** Copyright (C) 2001-2020 Zabbix SIA
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+**/
+
+
+class CControllerPopupMedia extends CController {
+ private $severities = [];
+
+ protected function init() {
+ $this->disableSIDvalidation();
+
+ $config = select_config();
+ for ($severity = TRIGGER_SEVERITY_NOT_CLASSIFIED; $severity < TRIGGER_SEVERITY_COUNT; $severity++) {
+ $this->severities[$severity] = getSeverityName($severity, $config);
+ }
+ }
+
+ protected function checkInput() {
+ $fields = [
+ 'dstfrm' => 'string|fatal',
+ 'media' => 'int32',
+ 'mediatypeid' => 'db media_type.mediatypeid',
+ 'sendto' => 'string',
+ 'sendto_emails' => 'array',
+ 'period' => 'time_periods',
+ 'active' => 'in '.implode(',', [MEDIA_STATUS_ACTIVE, MEDIA_STATUS_DISABLED]),
+ 'severity' => '',
+ 'add' => 'in 1'
+ ];
+
+ $ret = $this->validateInput($fields);
+
+ if (!$ret) {
+ $output = [];
+ if (($messages = getMessages()) !== null) {
+ $output['errors'] = $messages->toString();
+ }
+
+ $this->setResponse(
+ (new CControllerResponseData(['main_block' => json_encode($output)]))->disableView()
+ );
+ }
+
+ return $ret;
+ }
+
+ protected function checkPermissions() {
+ if (CWebUser::getType() < USER_TYPE_ZABBIX_ADMIN
+ || (CWebUser::isGuest() && CWebUser::getType() < USER_TYPE_SUPER_ADMIN)) {
+ return false;
+ }
+
+ return true;
+ }
+
+ protected function doAction() {
+ $page_options = [
+ 'dstfrm' => $this->getInput('dstfrm'),
+ 'media' => $this->getInput('media', -1),
+ 'sendto' => $this->getInput('sendto', ''),
+ 'mediatypeid' => $this->getInput('mediatypeid', 0),
+ 'active' => $this->getInput('active', MEDIA_STATUS_ACTIVE),
+ 'period' => $this->getInput('period', ZBX_DEFAULT_INTERVAL),
+ 'sendto_emails' => array_values($this->getInput('sendto_emails', ['']))
+ ];
+
+ // Validation before adding Media to user's Media tab.
+ if ($this->hasInput('add')) {
+ $output = [];
+
+ $db_mediatypes = API::MediaType()->get([
+ 'output' => ['type'],
+ 'mediatypeids' => $page_options['mediatypeid']
+ ]);
+
+ $type = $db_mediatypes ? $db_mediatypes[0]['type'] : 0;
+
+ if ($type == MEDIA_TYPE_EMAIL) {
+ $email_validator = new CEmailValidator();
+
+ $page_options['sendto_emails'] = array_values(array_filter($page_options['sendto_emails']));
+ if (!$page_options['sendto_emails']) {
+ error(_s('Incorrect value for field "%1$s": %2$s.', 'sendto_emails', _('cannot be empty')));
+ }
+
+ foreach ($page_options['sendto_emails'] as $email) {
+ if (!$email_validator->validate($email)) {
+ error($email_validator->getError());
+ break;
+ }
+ }
+ }
+ elseif ($page_options['sendto'] === '') {
+ error(_s('Incorrect value for field "%1$s": %2$s.', 'sendto', _('cannot be empty')));
+ }
+
+ if (($messages = getMessages()) !== null) {
+ $output['errors'] = $messages->toString();
+ }
+ else {
+ $severity = 0;
+ $input_severity = $this->getInput('severity', []);
+ foreach ($input_severity as $id) {
+ $severity |= 1 << $id;
+ }
+
+ $output = [
+ 'dstfrm' => $page_options['dstfrm'],
+ 'media' => $this->getInput('media', -1),
+ 'mediatypeid' => $page_options['mediatypeid'],
+ 'sendto' => ($type == MEDIA_TYPE_EMAIL)
+ ? $page_options['sendto_emails']
+ : $page_options['sendto'],
+ 'period' => $page_options['period'],
+ 'active' => $this->getInput('active', MEDIA_STATUS_DISABLED),
+ 'severity' => $severity
+ ];
+ }
+
+ $this->setResponse(
+ (new CControllerResponseData(['main_block' => json_encode($output)]))->disableView()
+ );
+ }
+ else {
+ // Prepare data for view.
+ if ($page_options['media'] != -1) {
+ $severity_request = $this->getInput('severity', 63);
+
+ $page_options['severities'] = [];
+ foreach ($this->severities as $severity => $foo) {
+ if ($severity_request & (1 << $severity)) {
+ $page_options['severities'][$severity] = $severity;
+ }
+ }
+ }
+ else {
+ $page_options['severities'] = $this->getInput('severity', array_keys($this->severities));
+ }
+
+ $db_mediatypes = API::MediaType()->get([
+ 'output' => ['name', 'type'],
+ 'preservekeys' => true
+ ]);
+ CArrayHelper::sort($db_mediatypes, ['name']);
+
+ $mediatypes = [];
+ foreach ($db_mediatypes as $mediatypeid => &$db_mediatype) {
+ $mediatypes[$mediatypeid] = $db_mediatype['type'];
+ $db_mediatype = $db_mediatype['name'];
+ }
+ unset($db_mediatype);
+
+ $data = [
+ 'title' => _('Media'),
+ 'options' => $page_options,
+ 'db_mediatypes' => $db_mediatypes,
+ 'mediatypes' => $mediatypes,
+ 'severities' => $this->severities,
+ 'user' => [
+ 'debug_mode' => $this->getDebugMode()
+ ]
+ ];
+
+ $this->setResponse(new CControllerResponseData($data));
+ }
+ }
+}