244 lines
8.2 KiB
PHP
244 lines
8.2 KiB
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
/**
|
|
* This file is part of Icinga 2 Web.
|
|
*
|
|
* Icinga 2 Web - Head for multiple monitoring backends.
|
|
* Copyright (C) 2013 Icinga Development Team
|
|
*
|
|
* 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.
|
|
*
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
*/
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Form\Preference;
|
|
|
|
use \DateTimeZone;
|
|
use \Zend_Config;
|
|
use \Zend_Form_Element_Text;
|
|
use \Zend_Form_Element_Select;
|
|
use \Icinga\Application\Config as IcingaConfig;
|
|
use \Icinga\Application\Icinga;
|
|
use \Icinga\Application\DbAdapterFactory;
|
|
use \Icinga\User\Preferences;
|
|
use \Icinga\Web\Form;
|
|
use \Icinga\Web\Form\Validator\TimeFormatValidator;
|
|
use \Icinga\Web\Form\Validator\DateFormatValidator;
|
|
|
|
/**
|
|
* General user preferences
|
|
*/
|
|
class GeneralForm extends Form
|
|
{
|
|
/**
|
|
* The configuration to use for populating this form
|
|
*
|
|
* @var IcingaConfig
|
|
*/
|
|
private $config;
|
|
|
|
/**
|
|
* The preference object to use instead of the one from the user (used for testing)
|
|
*
|
|
* @var Zend_Config
|
|
*/
|
|
private $preferences;
|
|
|
|
/**
|
|
* Set the configuration to be used for this form when no preferences are set yet
|
|
*
|
|
* @param IcingaConfig $cfg
|
|
*/
|
|
public function setConfiguration($cfg)
|
|
{
|
|
$this->config = $cfg;
|
|
}
|
|
|
|
/**
|
|
* Set preferences to be used instead of the one from the user object (used for testing)
|
|
*
|
|
* @param Zend_Config $prefs
|
|
*/
|
|
public function setUserPreferences($prefs)
|
|
{
|
|
$this->preferences = $prefs;
|
|
}
|
|
|
|
/**
|
|
* Return the preferences of the user or the overwritten ones
|
|
*
|
|
* @return Zend_Config
|
|
*/
|
|
public function getUserPreferences()
|
|
{
|
|
if ($this->preferences) {
|
|
return $this->preferences;
|
|
}
|
|
return $this->getRequest()->getUser()->getPreferences();
|
|
}
|
|
|
|
/**
|
|
* Add a select field for setting the user's timezone.
|
|
*
|
|
* Possible values are determined by DateTimeZone::listIdentifiers
|
|
* Also, a 'use default format' checkbox is added in order to allow a user to discard his overwritten setting
|
|
*
|
|
* @param Zend_Config $cfg The "global" section of the config.ini to be used as default valuse
|
|
*/
|
|
private function addTimezoneSelection(Zend_Config $cfg)
|
|
{
|
|
$tzList = array();
|
|
foreach (DateTimeZone::listIdentifiers() as $tz) {
|
|
$tzList[$tz] = $tz;
|
|
}
|
|
$helptext = 'Use the following timezone for dates and times';
|
|
$prefs = $this->getUserPreferences();
|
|
$useGlobalTimezone = $this->getRequest()->getParam('default_timezone', !$prefs->has('app.timezone'));
|
|
|
|
$selectTimezone = new Zend_Form_Element_Select(
|
|
array(
|
|
'name' => 'timezone',
|
|
'label' => 'Your Current Timezone',
|
|
'required' => !$useGlobalTimezone,
|
|
'multiOptions' => $tzList,
|
|
'helptext' => $helptext,
|
|
'value' => $prefs->get('app.timezone', $cfg->get('timezone', date_default_timezone_get()))
|
|
)
|
|
);
|
|
$this->addElement(
|
|
'checkbox',
|
|
'default_timezone',
|
|
array(
|
|
'label' => 'Use Default Timezone',
|
|
'value' => !$prefs->has('app.timezone'),
|
|
'required' => true
|
|
)
|
|
);
|
|
if ($useGlobalTimezone) {
|
|
$selectTimezone->setAttrib('disabled', 1);
|
|
}
|
|
$this->addElement($selectTimezone);
|
|
$this->enableAutoSubmit(array('default_timezone'));
|
|
}
|
|
|
|
/**
|
|
* Add text fields for the date and time format used for this user
|
|
*
|
|
* Also, a 'use default format' checkbox is added in order to allow a user to discard his overwritten setting
|
|
*
|
|
* @param Zend_Config $cfg The "global" section of the config.ini to be used as default values
|
|
*/
|
|
private function addDateFormatSettings(Zend_Config $cfg)
|
|
{
|
|
$prefs = $this->getUserPreferences();
|
|
$useGlobalDateFormat = $this->getRequest()->getParam('default_date_format', !$prefs->has('app.dateFormat'));
|
|
$useGlobalTimeFormat = $this->getRequest()->getParam('default_time_format', !$prefs->has('app.timeFormat'));
|
|
|
|
$phpUrl = '<a href="http://php.net/manual/en/function.date.php" target="_new">'
|
|
. 'the official PHP documentation</a>';
|
|
|
|
|
|
$this->addElement(
|
|
'checkbox',
|
|
'default_date_format',
|
|
array(
|
|
'label' => 'Use Default Date Format',
|
|
'value' => !$prefs->has('app.dateFormat'),
|
|
'required' => true
|
|
)
|
|
);
|
|
$txtDefaultDateFormat = new Zend_Form_Element_Text(
|
|
array(
|
|
'name' => 'date_format',
|
|
'label' => 'Preferred Date Format',
|
|
'helptext' => 'Display dates according to this format. See ' . $phpUrl . ' for possible values',
|
|
'required' => !$useGlobalDateFormat,
|
|
'value' => $prefs->get('app.dateFormat', $cfg->get('dateFormat', 'd/m/Y'))
|
|
)
|
|
);
|
|
|
|
$this->addElement($txtDefaultDateFormat);
|
|
$txtDefaultDateFormat->addValidator(new DateFormatValidator());
|
|
if ($useGlobalDateFormat) {
|
|
$txtDefaultDateFormat->setAttrib('disabled', '1');
|
|
}
|
|
|
|
$this->addElement(
|
|
'checkbox',
|
|
'default_time_format',
|
|
array(
|
|
'label' => 'Use Default Time Format',
|
|
'value' => !$prefs->has('app.timeFormat'),
|
|
'required' => !$useGlobalTimeFormat
|
|
)
|
|
);
|
|
$txtDefaultTimeFormat = new Zend_Form_Element_Text(
|
|
array(
|
|
'name' => 'time_format',
|
|
'label' => 'Preferred Time Format',
|
|
'required' => !$useGlobalTimeFormat,
|
|
'helptext' => 'Display times according to this format. See ' . $phpUrl . ' for possible values',
|
|
'value' => $prefs->get('app.timeFormat', $cfg->get('timeFormat', 'g:i A'))
|
|
)
|
|
);
|
|
$txtDefaultTimeFormat->addValidator(new TimeFormatValidator());
|
|
$this->addElement($txtDefaultTimeFormat);
|
|
if ($useGlobalTimeFormat) {
|
|
$txtDefaultTimeFormat->setAttrib('disabled', '1');
|
|
}
|
|
|
|
$this->enableAutoSubmit(array('default_time_format', 'default_date_format'));
|
|
}
|
|
|
|
/**
|
|
* Create the general form, using the global configuration as fallback values for preferences
|
|
*
|
|
* @see Form::create()
|
|
*/
|
|
public function create()
|
|
{
|
|
if ($this->config === null) {
|
|
$this->config = new Zend_Config(array());
|
|
}
|
|
$global = $this->config->global;
|
|
if ($global === null) {
|
|
$global = new Zend_Config(array());
|
|
}
|
|
|
|
$this->addTimezoneSelection($global);
|
|
$this->addDateFormatSettings($global);
|
|
|
|
$this->setSubmitLabel('Save Changes');
|
|
}
|
|
|
|
/**
|
|
* Return an array containing the preferences set in this form
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getPreferences()
|
|
{
|
|
$values = $this->getValues();
|
|
return array(
|
|
'app.timezone' => $values['timezone'],
|
|
'app.dateFormat' => $values['date_format'],
|
|
'app.timeFormat' => $values['time_format']
|
|
);
|
|
}
|
|
}
|