mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 09:59:06 +01:00
LSattr_ldap :: date : Fix handling timezone
This commit is contained in:
parent
b34968a529
commit
1c2e6f4abb
3 changed files with 35 additions and 14 deletions
|
@ -7,7 +7,8 @@
|
|||
<citetitle>Structure</citetitle>...
|
||||
<![CDATA['ldap_options' => array (
|
||||
'timestamp' => [Booléen], // Si la date est stockée au format timestamp
|
||||
'format' => '[Format de stockage]' // Default : "%Y%m%d%H%M%SZ"
|
||||
'format' => '[Format de stockage]', // Default : "YmdHisO"
|
||||
'timezone' => '[Fuseau horaire]', // Default : "UTC"
|
||||
),]]>
|
||||
...
|
||||
</programlisting>
|
||||
|
@ -30,12 +31,27 @@
|
|||
<term>format</term>
|
||||
<listitem>
|
||||
<para>Format de stockage de la date dans l'annuaire. Ce format est composé à
|
||||
partir des motifs clés gérés par la fonction <function>strftime()</function>
|
||||
partir des motifs clés gérés par la fonction <function>date()</function>
|
||||
de &php;. Pour plus d'information, consulter
|
||||
<ulink url='http://www.php.net/strftime'>la documentation officielle</ulink>.
|
||||
<note><simpara>La valeur par défaut est <emphasis>%Y%m%d%H%M%SZ</emphasis>,
|
||||
correspondant au format de stockage par défaut dans &openldap;. Exemple :
|
||||
<emphasis>20091206230506Z</emphasis></simpara></note>
|
||||
<ulink url='http://www.php.net/date'>la documentation officielle</ulink>.
|
||||
<note><simpara>La valeur par défaut est <emphasis>YmdHisO</emphasis>,
|
||||
correspondant à la syntaxe <literal>Generalized Time</literal> telle que
|
||||
définie dans la <ulink url='https://tools.ietf.org/html/rfc4517'>RFC4517
|
||||
</ulink>. Exemples : <literal>20091206230506Z</literal>
|
||||
<emphasis>(=2009/12/06 23:05:66 UTC)</emphasis> ou
|
||||
<literal>20190613143537+0200</literal>
|
||||
<emphasis>(=2019/06/13 14:35:37 UTC+0200)</emphasis>.</simpara></note>
|
||||
</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>timezone</term>
|
||||
<listitem>
|
||||
<para>Fuseau horaire de stockage des dates dans l'annuaire LDAP. Les valeurs
|
||||
possibles sont documentées dans <ulink url='https://www.php.net/timezones'>la
|
||||
documentation officielle de PHP</ulink>. (Par défaut : <literal>UTC</literal>)
|
||||
</para>
|
||||
|
||||
</listitem>
|
||||
|
|
|
@ -55,9 +55,6 @@ define('LS_LOCAL_DIR', 'local/');
|
|||
define('LS_TEXT_DOMAIN', 'ldapsaisie');
|
||||
define('LS_I18N_DIR', 'lang');
|
||||
|
||||
// Timezone
|
||||
date_default_timezone_set('UTC');
|
||||
|
||||
require_once LS_INCLUDE_DIR.'functions.php';
|
||||
|
||||
require_once LS_CLASS_DIR.'class.LSsession.php';
|
||||
|
|
|
@ -42,9 +42,9 @@ class LSattr_ldap_date extends LSattr_ldap {
|
|||
}
|
||||
$retval=array();
|
||||
foreach($data as $val) {
|
||||
$date = strptime($val,$this -> getFormat());
|
||||
if (is_array($date)) {
|
||||
$retval[] = mktime($date['tm_hour'],$date['tm_min'],$date['tm_sec'],$date['tm_mon']+1,$date['tm_mday'],$date['tm_year']+1900);
|
||||
$datetime = date_create_from_format($this -> getFormat(), $val);
|
||||
if (is_a($datetime, DateTime)) {
|
||||
$retval[] = $datetime -> format('U');
|
||||
}
|
||||
}
|
||||
return $retval;
|
||||
|
@ -61,10 +61,18 @@ class LSattr_ldap_date extends LSattr_ldap {
|
|||
if ($this -> getConfig('ldap_options.timestamp', false, 'bool')) {
|
||||
return $data;
|
||||
}
|
||||
$timezone = timezone_open($this -> getConfig('ldap_options.timezone', 'UTC', 'string'));
|
||||
$retval=array();
|
||||
if(is_array($data)) {
|
||||
foreach($data as $val) {
|
||||
$retval[] = strftime($this -> getFormat(),$val);
|
||||
$datetime = date_create("@$val");
|
||||
$datetime -> setTimezone($timezone);
|
||||
$datetime_string = $datetime -> format($this -> getFormat());
|
||||
|
||||
// Replace +0000 or -0000 end by Z
|
||||
$datetime_string = preg_replace('/[\+\-]0000$/', 'Z', $datetime_string);
|
||||
|
||||
$retval[] = $datetime_string;
|
||||
}
|
||||
}
|
||||
return $retval;
|
||||
|
@ -76,7 +84,7 @@ class LSattr_ldap_date extends LSattr_ldap {
|
|||
* @retval string Le format de la date
|
||||
**/
|
||||
public function getFormat() {
|
||||
return $this -> getConfig('ldap_options.format', '%Y%m%d%H%M%SZ');
|
||||
return $this -> getConfig('ldap_options.format', 'YmdHisO');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue