1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2012-2016 FusionDirectory
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 St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*! \brief This class allow to handle easily an Date LDAP attribute
*
* We are using UTC timezone because we don't care about time, we just want date.
*/
class DateAttribute extends Attribute
{
protected $format;
/*! \brief The constructor of DateAttribute
*
* \param string $label The label to show for this attribute
* \param string $description A more detailed description for the attribute
* \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
* \param boolean $required Is this attribute mandatory or not
* \param string $format The date format. It can be any format recognized by DateTime::format. see http://www.php.net/manual/fr/function.date.php
* \param mixed $defaultValue The default value for this attribute
* \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
*/
function __construct ($label, $description, $ldapName, $required, $format, $defaultValue = 'now', $acl = "")
{
parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
$this->format = $format;
}
function inputValue ($value)
{
if ($value === "" && !$this->isRequired()) {
return $value;
} elseif (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $value)) {
return $value;
} else {
return $this->ldapToDate($value);
}
}
function getValue ()
{
if ($this->value === "" && !$this->isRequired()) {
return $this->value;
} else {
try {
return $this->getDateValue()->format('d.m.Y');
} catch (Exception $e) {
if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
return $this->value;
} else {
return '';
}
}
}
}
protected function ldapToDate($ldapValue)
{
$date = DateTime::createFromFormat($this->format, $ldapValue, new DateTimeZone('UTC'));
if ($date !== FALSE) {
return $date;
} else {
trigger_error('LDAP value for '.$this->getLdapName().' was not in the right date format.');
return new DateTime($ldapValue, new DateTimeZone('UTC'));
}
}
protected function dateToLdap($dateValue)
{
return $dateValue->format($this->format);
}
function getDateValue()
{
$value = $this->value;
if (!($value instanceof DateTime)) {
$value = new DateTime($value, new DateTimeZone('UTC'));
}
return $value;
}
function computeLdapValue ()
{
if ($this->value === "" && !$this->isRequired()) {
return $this->value;
} elseif (!($this->value instanceof DateTime)) {
try {
$this->setValue($this->getDateValue());
} catch (Exception $e) {
if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
return $this->value;
} else {
throw $e;
}
}
}
return $this->dateToLdap($this->value);
}
function check ()
{
$error = parent::check();
if (!empty($error)) {
return $error;
} else {
if ($this->value instanceof DateTime) {
return;
} else {
try {
$this->getDateValue();
} catch (Exception $e) {
if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
return;
} else {
return sprintf(_('Error, incorrect date: %s'), $e->getMessage());
}
}
}
}
}
function renderFormInput ()
{
$smarty = get_smarty();
$smarty->assign('usePrototype', 'true');
$id = $this->getHtmlId();
$display = $this->renderInputField(
'text', $id,
array(
'value' => '{literal}'.$this->getValue().'{/literal}',
'class' => 'date'
)
);
$display .= '{if $'.$this->getAcl().'ACL|regex_replace:"/[cdmr]/":"" == "w"}'.
'<script type="text/javascript">
{literal}
var datepicker = new DatePicker({ relative : \''.$id.'\', language : \'{/literal}{$lang}{literal}\', keepFieldEmpty : true, enableCloseEffect : false, enableShowEffect : false });
{/literal}
</script>
{/if}';
return $this->renderAcl($display);
}
}
class GeneralizedTimeDateAttribute extends DateAttribute
{
function __construct ($label, $description, $ldapName, $required, $defaultValue = 'now', $acl = "")
{
parent::__construct($label, $description, $ldapName, $required, '', $defaultValue, $acl);
}
protected function ldapToDate($ldapValue)
{
try {
return LdapGeneralizedTime::fromString($ldapValue);
} catch (LdapGeneralizedTimeBadFormatException $e) {
trigger_error('LDAP value "'.$ldapValue.'" for '.$this->getLdapName().' is not in the right date format.');
return new DateTime($ldapValue, timezone::utc());
}
}
protected function dateToLdap($dateValue)
{
return LdapGeneralizedTime::toString($dateValue);
}
}
|