2009-10-31 15:47:16 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2011-10-11 11:57:38 +02:00
|
|
|
* EGroupware - Calendar's timezone information
|
2009-10-31 15:47:16 +01:00
|
|
|
*
|
|
|
|
* Timezone information get imported from SQLite database, "borrowed" of Lighting TB extension.
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package calendar
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2019-09-11 18:37:38 +02:00
|
|
|
* @copyright (c) 2009-19 by RalfBecker-At-outdoor-training.de
|
2009-10-31 15:47:16 +01:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
*/
|
|
|
|
|
2016-05-01 19:47:59 +02:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2009-10-31 15:47:16 +01:00
|
|
|
/**
|
|
|
|
* Class for timezone information
|
|
|
|
*
|
|
|
|
* This class serves two purposes:
|
|
|
|
* - convert between TZID strings and nummeric tz_id's stored in database
|
|
|
|
* - get iCal VTIMEZONE component for a TZID (data from Lighting extension)
|
2009-11-10 20:37:27 +01:00
|
|
|
*
|
|
|
|
* Recommendations about timezone handling in calendars:
|
|
|
|
* @link http://www.calconnect.org/publications/icalendartimezoneproblemsandrecommendationsv1.0.pdf
|
|
|
|
*
|
|
|
|
* Mapping Windows timezone to standard TZID's:
|
|
|
|
* @link http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/windows_tzid.html
|
2009-11-10 21:38:00 +01:00
|
|
|
*
|
|
|
|
* UTC is treated specially: it's implicitly mapped to tz_id=-1 (to be able to store it for events),
|
|
|
|
* but calendar_ical creates NO VTIMEZONE component for it.
|
2009-10-31 15:47:16 +01:00
|
|
|
*/
|
|
|
|
class calendar_timezones
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Methods callable via menuation
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $public_functions = array(
|
|
|
|
'update' => true,
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of timezone table
|
|
|
|
*/
|
|
|
|
const TABLE = 'egw_cal_timezones';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cached timezone data (reference to session created by init_static)
|
|
|
|
*
|
|
|
|
* @var array id => data
|
|
|
|
*/
|
|
|
|
protected static $tz_cache = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cached timezone data (reference to session created by init_static)
|
|
|
|
*
|
|
|
|
* @var array tzid => id
|
|
|
|
*/
|
|
|
|
protected static $tz2id = array();
|
|
|
|
|
2009-11-10 21:07:33 +01:00
|
|
|
/**
|
|
|
|
* Get DateTimeZone object for a given TZID
|
|
|
|
*
|
|
|
|
* We use our database to replace eg. Windows timezones not understood by PHP with their standard TZID
|
|
|
|
*
|
|
|
|
* @param string $tzid
|
|
|
|
* @return DateTimeZone
|
|
|
|
* @throws Exception if called with an unknown TZID
|
|
|
|
*/
|
2011-10-11 11:57:38 +02:00
|
|
|
public static function DateTimeZone($tzid)
|
2009-11-10 21:07:33 +01:00
|
|
|
{
|
|
|
|
if (($id = self::tz2id($tzid,'alias')))
|
|
|
|
{
|
|
|
|
$tzid = self::id2tz($id);
|
|
|
|
}
|
|
|
|
return new DateTimeZone($tzid);
|
|
|
|
}
|
|
|
|
|
2009-10-31 15:47:16 +01:00
|
|
|
/**
|
|
|
|
* Get the nummeric id (or other data) for a given TZID
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* - calendar_timezone::tz2id('Europe/Berlin') returns nummeric id for given TZID
|
|
|
|
* - calendar_timezone::tz2id('Europe/Berlin','component') returns VTIMEZONE component for given TZID
|
|
|
|
*
|
|
|
|
* @param string $tzid TZID
|
2014-10-07 23:04:58 +02:00
|
|
|
* @param string $what ='id' what to return, default id, null for whole array
|
2009-10-31 15:47:16 +01:00
|
|
|
* @return int tz_id or null if not found
|
|
|
|
*/
|
|
|
|
public static function tz2id($tzid,$what='id')
|
|
|
|
{
|
|
|
|
$id =& self::$tz2id[$tzid];
|
|
|
|
|
|
|
|
if (!isset($id))
|
|
|
|
{
|
|
|
|
if (($data = $GLOBALS['egw']->db->select(self::TABLE,'*',array(
|
|
|
|
'tz_tzid' => $tzid,
|
|
|
|
),__LINE__,__FILE__,false,'','calendar')->fetch()))
|
|
|
|
{
|
|
|
|
$id = $data['tz_id'];
|
2016-05-01 19:47:59 +02:00
|
|
|
self::$tz_cache[$id] = Api\Db::strip_array_keys($data,'tz_');
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
|
|
|
}
|
2012-10-07 20:00:36 +02:00
|
|
|
// check if we can find a 3-part America timezone eg. check 'America/Argentina/Buenos_Aires' for 'America/Buenos_Aires'
|
|
|
|
if (!isset($id) && stripos($tzid, 'America/') === 0 && count($parts = explode('/', $tzid)) == 2)
|
|
|
|
{
|
|
|
|
if (($data = $GLOBALS['egw']->db->select(self::TABLE,'*',array(
|
2014-10-07 23:04:58 +02:00
|
|
|
'tz_tzid LIKE '.$GLOBALS['egw']->db->quote($parts[0].'/%/'.$parts[1]),
|
2012-10-07 20:00:36 +02:00
|
|
|
),__LINE__,__FILE__,false,'','calendar')->fetch()))
|
|
|
|
{
|
|
|
|
$id = $data['tz_id'];
|
2016-05-01 19:47:59 +02:00
|
|
|
self::$tz_cache[$id] = Api\Db::strip_array_keys($data,'tz_');
|
2012-10-07 20:00:36 +02:00
|
|
|
}
|
|
|
|
}
|
2009-10-31 15:47:16 +01:00
|
|
|
if (isset($id) && $what != 'id')
|
|
|
|
{
|
|
|
|
return self::id2tz($id,$what);
|
|
|
|
}
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get timezone data for a given nummeric id
|
|
|
|
*
|
|
|
|
* if NOT tzid or alias queried, we automatically resolve an evtl. alias
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* - calendar_timezone::id2tz($id) returns TZID
|
|
|
|
* - calendar_timezone::id2tz($id,'component') returns VTIMEZONE component for the given id
|
|
|
|
*
|
|
|
|
* @param int $id
|
2014-10-07 23:04:58 +02:00
|
|
|
* @param string $what ='tzid' what data to return or null for whole data array, with keys 'id', 'tzid', 'component', 'alias', 'latitude', 'longitude'
|
2009-10-31 15:47:16 +01:00
|
|
|
* @return mixed false: if not found
|
|
|
|
*/
|
|
|
|
public static function id2tz($id,$what='tzid')
|
|
|
|
{
|
|
|
|
$data =& self::$tz_cache[$id];
|
|
|
|
|
|
|
|
if (!isset($data))
|
|
|
|
{
|
|
|
|
if (($data = $GLOBALS['egw']->db->select(self::TABLE,'*',array(
|
|
|
|
'tz_id' => $id,
|
|
|
|
),__LINE__,__FILE__,false,'','calendar')->fetch()))
|
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
$data = Api\Db::strip_array_keys($data,'tz_');
|
2009-10-31 15:47:16 +01:00
|
|
|
self::$tz2id[$data['tzid']] = $id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if not tzid queried, resolve aliases automatically
|
|
|
|
if ($data && $data['alias'] && $what != 'tzid' && $what != 'alias')
|
|
|
|
{
|
2009-11-09 10:00:53 +01:00
|
|
|
$data = self::id2tz($data['alias'],null);
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2019-09-11 18:37:38 +02:00
|
|
|
if ($what === 'component')
|
|
|
|
{
|
|
|
|
// version 2019b no longer contains BEGIN/END:TIMEZONE and TZID
|
|
|
|
return "BEGIN:VTIMEZONE\r\nTZID:$data[tzid]\r\n$data[component]\r\nEND:VTIMEZONE";
|
|
|
|
}
|
2009-10-31 15:47:16 +01:00
|
|
|
return !$data ? $data : ($what ? $data[$what] : $data);
|
|
|
|
}
|
|
|
|
|
2015-09-02 14:46:09 +02:00
|
|
|
/**
|
|
|
|
* Import messages from init_static, if import happend in that request
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected static $import_msg;
|
|
|
|
|
2009-10-31 15:47:16 +01:00
|
|
|
/**
|
2011-03-27 11:50:08 +02:00
|
|
|
* Init static variables for session and check for updated timezone information
|
2009-10-31 15:47:16 +01:00
|
|
|
*
|
2011-03-27 11:50:08 +02:00
|
|
|
* As we use returned references from the session, we do NOT need to care about storing the information explicitly
|
2009-10-31 15:47:16 +01:00
|
|
|
*/
|
|
|
|
public static function init_static()
|
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
self::$tz_cache =& Api\Cache::getSession(__CLASS__,'tz_cache');
|
|
|
|
self::$tz2id =& Api\Cache::getSession(__CLASS__,'tz2id');
|
2009-11-10 21:38:00 +01:00
|
|
|
|
|
|
|
// init cache with mapping UTC <--> -1, as UTC is no real timezone, but we need to be able to use it in calendar
|
|
|
|
if (!is_array(self::$tz2id))
|
|
|
|
{
|
|
|
|
self::$tz_cache = array('-1' => array(
|
|
|
|
'tzid' => 'UTC',
|
|
|
|
'id' => -1,
|
|
|
|
));
|
|
|
|
self::$tz2id = array('UTC' => -1);
|
|
|
|
}
|
2011-03-27 11:50:08 +02:00
|
|
|
|
|
|
|
// check for updated timezones once per session
|
2016-05-01 19:47:59 +02:00
|
|
|
if (!Api\Cache::getSession(__CLASS__, 'tzs_checked'))
|
2011-03-27 11:50:08 +02:00
|
|
|
{
|
2014-10-07 23:04:58 +02:00
|
|
|
$updated = false;
|
2015-09-02 14:07:14 +02:00
|
|
|
$msg = self::import_zones($updated);
|
|
|
|
if ($updated) error_log($msg); // log that timezones have been updated
|
|
|
|
|
2014-10-07 23:04:58 +02:00
|
|
|
$alias_msg = self::import_tz_aliases($updated);
|
|
|
|
if ($updated) error_log($alias_msg); // log that timezone aliases have been updated
|
|
|
|
|
2015-09-02 14:46:09 +02:00
|
|
|
self::$import_msg = $msg.'<br/>'.$alias_msg;
|
|
|
|
|
2016-05-01 19:47:59 +02:00
|
|
|
Api\Cache::setSession(__CLASS__, 'tzs_checked', true);
|
2011-03-27 11:50:08 +02:00
|
|
|
}
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-09-02 14:07:14 +02:00
|
|
|
* Import timezones from zones.json file from Thunderbird
|
2009-10-31 15:47:16 +01:00
|
|
|
*
|
2011-10-07 07:08:33 +02:00
|
|
|
* @param boolean &$updated=null on return true if update was neccessary, false if tz's were already up to date
|
2014-10-07 23:04:58 +02:00
|
|
|
* @param string $file ='calendar/setup/timezones.sqlite' filename relative to EGW_SERVER_ROOT
|
2009-10-31 15:47:16 +01:00
|
|
|
* @return string message about update
|
2016-05-01 19:47:59 +02:00
|
|
|
* @throws Api\Exception\WrongParameter if $file is not readable or wrong format/version
|
|
|
|
* @throws Api\Exception\WrongUserinput if no PDO sqlite support
|
|
|
|
* @throws Api\Exception\WrongUserinput for broken sqlite extension
|
2015-09-02 14:07:14 +02:00
|
|
|
* @link https://hg.mozilla.org/comm-central/raw-file/tip/calendar/timezones/zones.json
|
2009-10-31 15:47:16 +01:00
|
|
|
*/
|
2015-09-02 14:07:14 +02:00
|
|
|
public static function import_zones(&$updated=null, $file='calendar/setup/zones.json')
|
2009-10-31 15:47:16 +01:00
|
|
|
{
|
|
|
|
$path = EGW_SERVER_ROOT.'/'.$file;
|
|
|
|
|
2015-09-02 14:07:14 +02:00
|
|
|
if (!file_exists($path) || !is_readable($path) || !($fp = fopen($path, 'r')))
|
2009-10-31 15:47:16 +01:00
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
throw new Api\Exception\WrongParameter(__METHOD__."('$file') not found or readable!");
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2015-09-02 14:07:14 +02:00
|
|
|
// only read a couple of bytes to parse version
|
|
|
|
$json = fread($fp, 80);
|
|
|
|
$matches = null;
|
|
|
|
if (!preg_match('/"version": *"([^"]+)"/', $json, $matches))
|
2009-10-31 15:47:16 +01:00
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
throw new Api\Exception\WrongParameter('Could not read timezoneversion!');
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2015-09-02 14:07:14 +02:00
|
|
|
$tz_version = $matches[1];
|
2016-05-01 19:47:59 +02:00
|
|
|
$config = Api\Config::read('phpgwapi');
|
2011-10-07 07:08:33 +02:00
|
|
|
//echo "<p>tz_version($path)=$tz_version, tz_db_version=$config[tz_version]</p>\n";
|
|
|
|
if ($tz_version === $config['tz_version'])
|
2009-10-31 15:47:16 +01:00
|
|
|
{
|
2011-03-27 11:50:08 +02:00
|
|
|
$updated = false;
|
2015-09-02 14:07:14 +02:00
|
|
|
fclose($fp);
|
2011-10-07 07:08:33 +02:00
|
|
|
return lang('Nothing to update, version is already %1.',$config['tz_version']); // we already have the right
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2015-09-02 14:07:14 +02:00
|
|
|
$json .= fread($fp, 1024*1024);
|
|
|
|
fclose($fp);
|
|
|
|
if (!($zones = json_decode($json, true)) || !isset($zones['aliases']) || !isset($zones['zones']))
|
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
throw new Api\Exception\WrongParameter('Could not parse zones.json!');
|
2015-09-02 14:07:14 +02:00
|
|
|
}
|
|
|
|
// import zones first and then aliases
|
2009-10-31 15:47:16 +01:00
|
|
|
$tz2id = array();
|
2015-09-02 14:07:14 +02:00
|
|
|
foreach(array('zones', 'aliases') as $type)
|
2009-10-31 15:47:16 +01:00
|
|
|
{
|
2015-09-02 14:07:14 +02:00
|
|
|
foreach($zones[$type] as $tzid => $data)
|
2009-10-31 15:47:16 +01:00
|
|
|
{
|
2015-09-02 14:07:14 +02:00
|
|
|
if ($type == 'aliases')
|
|
|
|
{
|
|
|
|
$data = array('alias' => $tz2id[$data['aliasTo']]);
|
|
|
|
if (!$data['alias']) continue; // there's no such tzid
|
|
|
|
}
|
|
|
|
// check if already in database
|
|
|
|
$tz2id[$tzid] = $GLOBALS['egw']->db->select('egw_cal_timezones','tz_id',array(
|
|
|
|
'tz_tzid' => $tzid,
|
|
|
|
),__LINE__,__FILE__,false,'','calendar')->fetchColumn();
|
2011-04-11 18:06:10 +02:00
|
|
|
|
2015-09-02 14:07:14 +02:00
|
|
|
$GLOBALS['egw']->db->insert('egw_cal_timezones',array(
|
|
|
|
'tz_alias' => $data['alias'],
|
|
|
|
'tz_latitude' => $data['latitude'],
|
|
|
|
'tz_longitude' => $data['longitude'],
|
2019-09-11 18:37:38 +02:00
|
|
|
'tz_component' => implode("\r\n", (array)$data['ics']),
|
2015-09-02 14:07:14 +02:00
|
|
|
),array(
|
|
|
|
'tz_tzid' => $tzid,
|
|
|
|
),__LINE__,__FILE__,'calendar');
|
2009-10-31 15:47:16 +01:00
|
|
|
|
2015-09-02 14:07:14 +02:00
|
|
|
// only query last insert id, if not already in database (gives warning for PostgreSQL)
|
|
|
|
if (!$tz2id[$tzid]) $tz2id[$tzid] = $GLOBALS['egw']->db->get_last_insert_id('egw_cal_timezones','tz_id');
|
|
|
|
}
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2016-05-01 19:47:59 +02:00
|
|
|
Api\Config::save_value('tz_version', $tz_version, 'phpgwapi');
|
2009-10-31 15:47:16 +01:00
|
|
|
|
|
|
|
//_debug_array($tz2id);
|
2011-03-27 11:50:08 +02:00
|
|
|
$updated = true;
|
2009-10-31 15:47:16 +01:00
|
|
|
return lang('Timezones updated to version %1 (%2 records updated).',$tz_version,count($tz2id));
|
|
|
|
}
|
|
|
|
|
2011-10-07 07:08:33 +02:00
|
|
|
/**
|
|
|
|
* Import timezone aliases
|
|
|
|
*
|
|
|
|
* @param boolean &$updated=null on return true if update was neccessary, false if tz's were already up to date
|
2014-10-07 23:04:58 +02:00
|
|
|
* @param string $file ='calendar/setup/tz_aliases.inc.php' filename relative to EGW_SERVER_ROOT
|
2011-10-07 07:08:33 +02:00
|
|
|
* @return string message about update
|
2016-05-01 19:47:59 +02:00
|
|
|
* @throws Api\Exception\WrongParameter if $file is not readable or wrong format/version
|
2011-10-07 07:08:33 +02:00
|
|
|
*/
|
2014-10-07 23:04:58 +02:00
|
|
|
public static function import_tz_aliases(&$updated=null,$file='calendar/setup/tz_aliases.inc.php')
|
2011-10-07 07:08:33 +02:00
|
|
|
{
|
|
|
|
$path = EGW_SERVER_ROOT.'/'.$file;
|
|
|
|
|
|
|
|
if (!file_exists($path) || !is_readable($path))
|
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
throw new Api\Exception\WrongParameter(__METHOD__."('$file') not found or readable!");
|
2011-10-07 07:08:33 +02:00
|
|
|
}
|
2016-05-01 19:47:59 +02:00
|
|
|
$config = Api\Config::read('phpgwapi');
|
2011-10-07 07:08:33 +02:00
|
|
|
$tz_aliases_mtime = date('Y-m-d H:i:s', filemtime($path));
|
|
|
|
if ($tz_aliases_mtime === $config['tz_aliases_mtime'])
|
|
|
|
{
|
|
|
|
$updated = false;
|
|
|
|
return lang('Nothing to update, version is already %1.',$tz_aliases_mtime);
|
|
|
|
}
|
2014-10-07 23:04:58 +02:00
|
|
|
$tz_aliases = array();
|
2011-10-07 07:08:33 +02:00
|
|
|
include($path); // sets $tz_aliases
|
|
|
|
|
2011-10-11 15:09:51 +02:00
|
|
|
$updates = 0;
|
2011-10-07 07:08:33 +02:00
|
|
|
foreach($tz_aliases as $alias => $tzid)
|
|
|
|
{
|
2011-10-11 13:43:18 +02:00
|
|
|
if ((!($alias_id=self::tz2id($alias, 'alias')) || self::id2tz($alias_id, 'tzid') !== $tzid) && // not in DB or different
|
|
|
|
($tz_id = self::tz2id($tzid))) // given tzid for alias exists in DB
|
2011-10-07 07:08:33 +02:00
|
|
|
{
|
|
|
|
$GLOBALS['egw']->db->insert('egw_cal_timezones',array(
|
2011-10-11 13:43:18 +02:00
|
|
|
'tz_alias' => $tz_id,
|
2011-10-07 07:08:33 +02:00
|
|
|
),array(
|
2011-10-11 13:43:18 +02:00
|
|
|
'tz_tzid' => $alias,
|
2011-10-07 07:08:33 +02:00
|
|
|
),__LINE__,__FILE__,'calendar');
|
2011-10-11 15:09:51 +02:00
|
|
|
++$updates;
|
2011-10-07 07:08:33 +02:00
|
|
|
}
|
2011-10-11 13:43:18 +02:00
|
|
|
//error_log(__METHOD__."() alias=$alias, tzid=$tzid --> self::tz2id('$alias', 'alias') = ".array2string($alias_id).", self::tz2id('$tzid')=".array2string($tz_id));
|
2011-10-07 07:08:33 +02:00
|
|
|
}
|
2016-05-01 19:47:59 +02:00
|
|
|
Api\Config::save_value('tz_aliases_mtime',$tz_aliases_mtime,$app='phpgwapi');
|
2011-10-07 07:08:33 +02:00
|
|
|
|
|
|
|
//_debug_array($tz2id);
|
|
|
|
$updated = true;
|
2011-10-11 15:09:51 +02:00
|
|
|
return lang('Timezones aliases updated to version %1 (%2 records updated).', $tz_aliases_mtime, $updates);
|
2011-10-07 07:08:33 +02:00
|
|
|
}
|
|
|
|
|
2009-10-31 15:47:16 +01:00
|
|
|
/**
|
|
|
|
* Admin >> Update timezones
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
if (!$GLOBALS['egw_info']['user']['apps']['admin'])
|
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
throw new Api\Exception\NoPermission\Admin();
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2015-09-02 14:46:09 +02:00
|
|
|
if (empty(self::$import_msg))
|
|
|
|
{
|
|
|
|
self::$import_msg = self::import_zones();
|
|
|
|
self::$import_msg .= '<br/>'.self::import_tz_aliases();
|
|
|
|
}
|
|
|
|
$GLOBALS['egw']->framework->render('<h3>'.self::$import_msg.'</h3>', lang('Update timezones'), false);
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2011-10-08 20:40:29 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add VTIMEZONE component to VCALENDAR
|
|
|
|
*
|
2015-06-24 12:33:58 +02:00
|
|
|
* @param Horde_Icalendar $vcal
|
2011-10-08 20:40:29 +02:00
|
|
|
* @param string $tzid
|
|
|
|
* @return boolean false if no vtimezone component available, true on success
|
|
|
|
*/
|
2015-06-24 12:33:58 +02:00
|
|
|
public static function add_vtimezone(Horde_Icalendar $vcal, $tzid)
|
2011-10-08 20:40:29 +02:00
|
|
|
{
|
|
|
|
// check if we have vtimezone component data for $tzid
|
|
|
|
if (!($vtimezone = calendar_timezones::tz2id($tzid, 'component')))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-24 12:33:58 +02:00
|
|
|
// $vtimezone is a string with a single VTIMEZONE component, afaik Horde_Icalendar can not add it directly
|
|
|
|
// --> we have to parse it and let Horde_Icalendar add it again
|
|
|
|
$horde_vtimezone = Horde_Icalendar::newComponent('VTIMEZONE',$container=false);
|
2011-10-08 20:40:29 +02:00
|
|
|
$horde_vtimezone->parsevCalendar($vtimezone,'VTIMEZONE');
|
2015-06-24 12:33:58 +02:00
|
|
|
// DTSTART is in UTC time, Horde_Icalendar parses it in server timezone, which we need to set again for printing
|
2011-10-08 20:40:29 +02:00
|
|
|
$standard = $horde_vtimezone->findComponent('STANDARD');
|
2015-06-24 12:33:58 +02:00
|
|
|
if (is_a($standard, 'Horde_Icalendar'))
|
2011-10-08 20:40:29 +02:00
|
|
|
{
|
2014-10-07 23:04:58 +02:00
|
|
|
$time = $standard->getAttribute('DTSTART');
|
2016-05-01 19:47:59 +02:00
|
|
|
$dtstart = new Api\DateTime($time, Api\DateTime::$server_timezone);
|
|
|
|
$dtstart->setTimezone(Api\DateTime::$server_timezone);
|
2011-10-08 20:40:29 +02:00
|
|
|
$standard->setAttribute('DTSTART', $dtstart->format('Ymd\THis'), array(), false);
|
|
|
|
}
|
|
|
|
$daylight = $horde_vtimezone->findComponent('DAYLIGHT');
|
2015-06-24 12:33:58 +02:00
|
|
|
if (is_a($daylight, 'Horde_Icalendar'))
|
2011-10-08 20:40:29 +02:00
|
|
|
{
|
2014-10-07 23:04:58 +02:00
|
|
|
$time = $daylight->getAttribute('DTSTART');
|
2016-05-01 19:47:59 +02:00
|
|
|
$dtstart = new Api\DateTime($time, Api\DateTime::$server_timezone);
|
|
|
|
$dtstart->setTimezone(Api\DateTime::$server_timezone);
|
2011-10-08 20:40:29 +02:00
|
|
|
$daylight->setAttribute('DTSTART', $dtstart->format('Ymd\THis'), array(), false);
|
|
|
|
}
|
2011-10-09 19:48:12 +02:00
|
|
|
//error_log($vtimezone); error_log($horde_vtimezone->_exportvData('VTIMEZONE'));
|
2011-10-08 20:40:29 +02:00
|
|
|
$vcal->addComponent($horde_vtimezone);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-10-20 15:35:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query timezone of a given user, returns 'tzid' or VTIMEZONE 'component'
|
|
|
|
*
|
2014-10-07 23:04:58 +02:00
|
|
|
* @param int $user =null
|
|
|
|
* @param string $type ='vcalendar' 'tzid' or everything tz2id supports, default 'vcalendar' = full vcalendar component
|
2011-10-20 15:35:01 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2011-10-20 16:01:16 +02:00
|
|
|
public static function user_timezone($user=null, $type='vcalendar')
|
2011-10-20 15:35:01 +02:00
|
|
|
{
|
|
|
|
if (!$user || $user == $GLOBALS['egw_info']['user']['account_id'])
|
|
|
|
{
|
|
|
|
$tzid = $GLOBALS['egw_info']['user']['preferences']['common']['tz'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-05-01 19:47:59 +02:00
|
|
|
$prefs_obj = new Api\Preferences($user);
|
2011-10-20 15:35:01 +02:00
|
|
|
$prefs = $prefs_obj->read();
|
|
|
|
$tzid = $prefs['common']['tz'];
|
|
|
|
}
|
2016-05-01 19:47:59 +02:00
|
|
|
if (!$tzid) $tzid = Api\DateTime::$server_timezone->getName();
|
2011-10-20 15:35:01 +02:00
|
|
|
|
2011-10-20 16:01:16 +02:00
|
|
|
switch ($type)
|
2011-10-20 15:35:01 +02:00
|
|
|
{
|
2011-10-20 16:01:16 +02:00
|
|
|
case 'vcalendar':
|
|
|
|
// checking type of $val, now we included the object definition (no need to always include it!)
|
2015-06-24 12:33:58 +02:00
|
|
|
$vcal = new Horde_Icalendar;
|
2011-10-20 16:01:16 +02:00
|
|
|
$vcal->setAttribute('PRODID','-//EGroupware//NONSGML EGroupware Calendar '.$GLOBALS['egw_info']['apps']['calendar']['version'].'//'.
|
|
|
|
strtoupper($GLOBALS['egw_info']['user']['preferences']['common']['lang']));
|
|
|
|
self::add_vtimezone($vcal, $tzid);
|
|
|
|
$tzid = $vcal->exportvCalendar('utf-8');
|
|
|
|
break;
|
|
|
|
case 'tzid':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$tzid = self::tz2id($tzid,$type == 'vcalendar' ? 'component' : $type);
|
|
|
|
break;
|
2011-10-20 15:35:01 +02:00
|
|
|
}
|
|
|
|
return $tzid;
|
|
|
|
}
|
2009-10-31 15:47:16 +01:00
|
|
|
}
|
2009-11-09 10:00:53 +01:00
|
|
|
/*
|
|
|
|
if (isset($_SERVER['SCRIPT_FILENAME']) && $_SERVER['SCRIPT_FILENAME'] == __FILE__) // some tests
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
|
|
'flags' => array(
|
2012-10-07 20:00:36 +02:00
|
|
|
'currentapp' => 'login',
|
2009-11-09 10:00:53 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
include('../../header.inc.php');
|
|
|
|
calendar_timezones::init_static();
|
|
|
|
|
|
|
|
// echo "<h3>Testing availability of VTIMEZONE data for each tzid supported by PHP</h3>\n";
|
|
|
|
// foreach(DateTimeZone::listIdentifiers() as $tz)
|
|
|
|
echo "<h3>Testing availability of VTIMEZONE data for each TZID supported by EGroupware</h3>\n";
|
2016-05-01 19:47:59 +02:00
|
|
|
foreach(call_user_func_array('array_merge',Api\DateTime::getTimezones()) as $tz => $label)
|
2009-11-09 10:00:53 +01:00
|
|
|
{
|
|
|
|
if (($id = calendar_timezones::tz2id($tz,'component')) || $tz == 'UTC') // UTC is always supported
|
|
|
|
{
|
|
|
|
$found[] = $tz;
|
|
|
|
//if (substr($tz,0,10) == 'Australia/') echo "$tz: found<br />\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$not_found[] = $tz;
|
|
|
|
echo "$tz: <b>NOT</b> found<br />\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
echo '<h3>'.count($found).' found, '.count($not_found)." <b>NOT</b> found</h3>\n";
|
|
|
|
|
|
|
|
if ($not_found) echo "<pre>\n\$no_vtimezone = array(\n\t'".implode("',\n\t'",$not_found)."',\n);\n</pre>\n";
|
2009-11-10 21:07:33 +01:00
|
|
|
|
|
|
|
echo "<h3>Testing availability of PHP support for each TZID supported by EGroupware's timezone database:</h3>\n";
|
|
|
|
foreach($GLOBALS['egw']->db->select('egw_cal_timezones','*',false,__LINE__,__FILE__,false,'','calendar') as $row)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$timezone = new DateTimeZone($row['tz_tzid']);
|
|
|
|
//$timezone = calendar_timezones::DateTimeZone($row['tz_tzid']);
|
|
|
|
echo $row['tz_tzid'].": available<br />\n";
|
|
|
|
}
|
|
|
|
catch(Exception $e)
|
|
|
|
{
|
|
|
|
if (($id = calendar_timezones::tz2id($row['tz_tzid'],'alias')) &&
|
|
|
|
($alias = calendar_timezones::id2tz($id)))
|
|
|
|
{
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$timezone = new DateTimeZone($alias);
|
|
|
|
echo $row['tz_tzid']."='$alias': available through <b>alias</b><br />\n";
|
|
|
|
unset($e);
|
|
|
|
}
|
|
|
|
catch(Exception $e)
|
|
|
|
{
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($e)) echo $row['tz_tzid'].": <b>NOT</b> available<br />\n";
|
|
|
|
}
|
|
|
|
}
|
2009-11-09 10:00:53 +01:00
|
|
|
}
|
|
|
|
else*/
|
|
|
|
calendar_timezones::init_static();
|