2001-01-11 10:52:33 +01:00
< ? php
2008-03-15 16:11:48 +01:00
/**
* eGroupWare API - Preferences
2009-10-06 08:45:28 +02:00
*
2008-03-15 16:11:48 +01:00
* @ link http :// www . egroupware . org
* @ author Joseph Engo < jengo @ phpgroupware . org >
* @ author Mark Peters < skeeter @ phpgroupware . org >
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de > merging prefs on runtime , session prefs and reworked the class
* Copyright ( C ) 2000 , 2001 Joseph Engo
* @ license http :// opensource . org / licenses / lgpl - license . php LGPL - GNU Lesser General Public License
* @ package api
* @ version $Id $
*/
/**
* preferences class used for setting application preferences
*
2010-01-27 06:44:31 +01:00
* the prefs are read into 5 arrays :
2008-03-15 16:11:48 +01:00
* $data the effective prefs used everywhere in phpgw , they are merged from the other 3 arrays
* $user the stored user prefs , only used for manipulating and storeing the user prefs
2012-10-30 11:22:05 +01:00
* $group the stored prefs of all group - memberships of current user , can NOT be deleted or stored directly !
2008-03-15 16:11:48 +01:00
* $default the default preferences , always used when the user has no own preference set
* $forced forced preferences set by the admin , they take precedence over user or default prefs
2010-05-12 11:23:50 +02:00
*
2010-01-27 06:44:31 +01:00
* To update the prefs of a certain group , not just the primary group of the user , you have to
* create a new instance of preferences class , with the given id of the group . This takes into
* account the offset of DEFAULT_ID , we are using currently for groups ( as - 1 , and - 2 ) are already
* taken !
2008-03-15 16:11:48 +01:00
*/
class preferences
{
2009-10-18 14:45:09 +02:00
/**
* account_id for default prefs
*/
const DEFAULT_ID = - 2 ;
/**
* account_id for forced prefs
*/
const FORCED_ID = - 1 ;
2008-03-15 16:11:48 +01:00
/**
* account the class is instanciated for
* @ var int
*/
var $account_id ;
/**
* account - type u or g
* @ var string
*/
var $account_type ;
/**
2009-10-06 08:45:28 +02:00
* effectiv user prefs , used by all apps
2008-03-15 16:11:48 +01:00
* @ var array
*/
var $data = array ();
/**
2009-10-06 08:45:28 +02:00
* set user prefs for saveing ( no defaults / forced prefs merged )
2008-03-15 16:11:48 +01:00
* @ var array
*/
var $user = array ();
2010-01-27 06:44:31 +01:00
/**
* primary group prefs
* @ var array
*/
var $group = array ();
2008-03-15 16:11:48 +01:00
/**
2009-10-06 08:45:28 +02:00
* default prefs
2008-03-15 16:11:48 +01:00
* @ var array
*/
var $default = array ();
/**
* forced prefs
* @ var array
*/
var $forced = array ();
/**
* session / tempory prefs
* @ var array
*/
var $session = array ();
/**
2009-10-06 08:45:28 +02:00
* @ var egw_db
2008-03-15 16:11:48 +01:00
*/
var $db ;
/**
* table - name
* @ var string
*/
var $table = 'egw_preferences' ;
var $values , $vars ; // standard notify substitues, will be set by standard_substitues()
2009-10-18 14:45:09 +02:00
2008-03-15 16:11:48 +01:00
/**
2009-10-18 14:45:09 +02:00
* Contstructor
*
* @ param int | string $account_id = ''
* @ return preferences
2008-03-15 16:11:48 +01:00
*/
2009-10-18 14:45:09 +02:00
function __construct ( $account_id = '' )
2008-03-15 16:11:48 +01:00
{
2010-01-27 06:44:31 +01:00
if ( isset ( $GLOBALS [ 'egw' ] -> db ))
2008-03-15 16:11:48 +01:00
{
$this -> db = $GLOBALS [ 'egw' ] -> db ;
}
else
{
$this -> db = $GLOBALS [ 'egw_setup' ] -> db ;
$this -> table = $GLOBALS [ 'egw_setup' ] -> prefs_table ;
}
2013-05-10 19:20:37 +02:00
$this -> set_account_id ( $account_id );
}
/**
* Set account_id for class
*
* Takes care of offset for groups .
*
* @ param int $account_id
*/
function set_account_id ( $account_id )
{
2010-01-27 06:44:31 +01:00
// if we got instancated for a group, need to set offset of DEFAULT_ID!
if ( $account_id < 0 && $GLOBALS [ 'egw' ] -> accounts -> exists ( $account_id ) == 2 )
{
$this -> account_id = $account_id + self :: DEFAULT_ID ;
}
else
{
$this -> account_id = get_account_id ( $account_id );
}
2008-03-15 16:11:48 +01:00
}
2013-05-10 19:20:37 +02:00
/**
* Return account_id class is instanciated for or " default " or " forced "
*
* Takes care of offset for groups .
*
* @ return string | int
*/
function get_account_id ()
{
switch ( $this -> account_id )
{
case self :: DEFAULT_ID :
return 'default' ;
case self :: FORCED_ID :
return 'forced' ;
}
return $this -> account_id < self :: DEFAULT_ID ? $this -> account_id - self :: DEFAULT_ID : $this -> account_id ;
}
2009-10-18 14:45:09 +02:00
/**
* Old PHP4 contstructor
*
* @ param int | string $account_id = ''
* @ return preferences
* @ deprecated
*/
function preferences ( $account_id = '' )
{
self :: __construct ();
}
2012-08-07 15:57:56 +02:00
/**
* Magic function to avoid storing perferences in session , as they get re - read on each request by egw_session :: verify ()
*
* @ return array with class vars to store
*/
function __sleep ()
{
$vars = array_keys ( get_object_vars ( $this ));
return array_diff ( $vars , array ( 'data' , 'user' , 'group' , 'default' , 'forced' , 'session' ));
}
/**
* Lifetime in seconds of cached items 1 d
*/
const CACHE_LIFETIME = 86400 ;
/**
* Read preferences of requested id ( s )
*
* @ param int | array $ids
* @ return array id => app => preference data
*/
function cache_read ( $ids )
{
2012-10-30 11:22:05 +01:00
$prefs = egw_cache :: getInstance ( __CLASS__ , $ids );
$db_read = array ();
2012-08-07 15:57:56 +02:00
foreach (( array ) $ids as $id )
{
2012-10-30 11:22:05 +01:00
// if prefs are not returned, null or not an array, read them from db
2012-09-26 12:18:18 +02:00
if ( ! isset ( $prefs [ $id ]) && ! is_array ( $prefs [ $id ])) $db_read [] = $id ;
2012-08-07 15:57:56 +02:00
}
if ( $db_read )
{
foreach ( $this -> db -> select ( $this -> table , '*' , array ( 'preference_owner' => $db_read ), __LINE__ , __FILE__ ) as $row )
{
// The following replacement is required for PostgreSQL to work
$app = trim ( $row [ 'preference_app' ]);
$value = unserialize ( $row [ 'preference_value' ]);
if ( $value === false )
{
// manually retrieve the string lengths of the serialized array if unserialize failed
$value = unserialize ( preg_replace ( '!s:(\d+):"(.*?)";!se' , " 's:'.mb_strlen(' $ 2','8bit').': \" $ 2 \" ;' " , $row [ 'preference_value' ]));
}
$this -> unquote ( $value );
$prefs [ $row [ 'preference_owner' ]][ $app ] = $value ;
}
foreach ( $db_read as $id )
{
if ( ! isset ( $prefs [ $id ])) $prefs [ $id ] = array ();
egw_cache :: setInstance ( __CLASS__ , $id , $prefs [ $id ]);
}
}
//error_log(__METHOD__.'('.array2string($ids).') read-from-db='.array2string($db_read));
return $prefs ;
}
2005-07-22 11:05:01 +02:00
/**
2008-03-15 16:11:48 +01:00
* parses a notify and replaces the substitutes
2005-07-22 11:05:01 +02:00
*
2008-03-15 16:11:48 +01:00
* @ param string $msg message to parse / substitute
* @ param array $values = array () extra vars to replace in addition to $this -> values , vars are in an array with \
* $key => $value pairs , $key does not include the $ ' s and is the * untranslated * name
* @ param boolean $use_standard_values = true should the standard values are used
* @ return string with parsed notify - msg
*/
function parse_notify ( $msg , $values = array (), $use_standard_values = True )
{
$vals = $values ? $values : array ();
if ( $use_standard_values && is_array ( $this -> values ))
{
$vals += $this -> values ;
}
2011-12-20 16:57:03 +01:00
$replace = $with = array ();
2008-03-15 16:11:48 +01:00
foreach ( $vals as $key => $val )
{
2008-12-09 13:59:03 +01:00
if ( $this -> debug ) error_log ( __METHOD__ . " replacing \$ \$ $key\ $\ $ with $val " );
2008-03-15 16:11:48 +01:00
$replace [] = '$$' . $key . '$$' ;
$with [] = $val ;
}
return str_replace ( $replace , $with , $msg );
}
2009-10-06 08:45:28 +02:00
2008-03-15 16:11:48 +01:00
/**
* replaces the english key ' s with translated ones , or if $un_lang the opposite
2005-11-13 08:49:56 +01:00
*
2008-03-15 16:11:48 +01:00
* @ param string $msg message to translate
* @ param array $values = array () extra vars to replace in addition to $this -> values , vars are in an array with \
* $key => $value pairs , $key does not include the $ ' s and is the * untranslated * name
* @ param boolean $un_lang = false if true translate back
* @ return string
2005-07-22 11:05:01 +02:00
*/
2008-03-15 16:11:48 +01:00
function lang_notify ( $msg , $vals = array (), $un_lang = False )
2001-07-26 13:13:15 +02:00
{
2008-03-15 16:11:48 +01:00
foreach ( $vals as $key => $val )
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
$lname = ( $lname = lang ( $key )) == $key . '*' ? $key : $lname ;
if ( $un_lang )
2005-07-22 11:05:01 +02:00
{
2008-03-15 16:11:48 +01:00
$langs [ $lname ] = '$$' . $key . '$$' ;
2005-07-22 11:05:01 +02:00
}
else
{
2008-03-15 16:11:48 +01:00
$langs [ $key ] = '$$' . $lname . '$$' ;
2005-07-22 11:05:01 +02:00
}
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
return $this -> parse_notify ( $msg , $langs , False );
}
2001-02-03 11:48:41 +01:00
2008-03-15 16:11:48 +01:00
/**
* define some standard substitues - values and use them on the prefs , if needed
*/
function standard_substitutes ()
{
2008-12-09 13:59:03 +01:00
if ( $this -> debug ) error_log ( __METHOD__ . " is called " );
2008-03-15 16:11:48 +01:00
if ( ! is_array ( @ $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ]))
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
$GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ] = $this -> data ; // else no lang()
2003-05-02 03:33:32 +02:00
}
2008-03-15 16:11:48 +01:00
// we cant use phpgw_info/user/fullname, as it's not set when we run
$GLOBALS [ 'egw' ] -> accounts -> get_account_name ( $this -> account_id , $lid , $fname , $lname );
$this -> values = array ( // standard notify replacements
2012-08-07 15:57:56 +02:00
'fullname' => common :: display_fullname ( '' , $fname , $lname ),
2008-03-15 16:11:48 +01:00
'firstname' => $fname ,
'lastname' => $lname ,
'domain' => $GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_suffix' ],
'email' => $this -> email_address ( $this -> account_id ),
2012-08-07 15:57:56 +02:00
'date' => common :: show_date ( '' , $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'dateformat' ]),
2008-03-15 16:11:48 +01:00
);
// do this first, as it might be already contain some substitues
//
$this -> values [ 'email' ] = $this -> parse_notify ( $this -> values [ 'email' ]);
$this -> vars = array ( // langs have to be in common !!!
'fullname' => lang ( 'name of the user, eg. "%1"' , $this -> values [ 'fullname' ]),
'firstname' => lang ( 'first name of the user, eg. "%1"' , $this -> values [ 'firstname' ]),
'lastname' => lang ( 'last name of the user, eg. "%1"' , $this -> values [ 'lastname' ]),
'domain' => lang ( 'domain name for mail-address, eg. "%1"' , $this -> values [ 'domain' ]),
'email' => lang ( 'email-address of the user, eg. "%1"' , $this -> values [ 'email' ]),
'date' => lang ( 'todays date, eg. "%1"' , $this -> values [ 'date' ]),
);
2008-12-09 14:07:29 +01:00
if ( $this -> debug ) error_log ( __METHOD__ . print_r ( $this -> vars , true ));
2008-03-15 16:11:48 +01:00
// do the substituetion in the effective prefs (data)
//
foreach ( $this -> data as $app => $data )
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
foreach ( $data as $key => $val )
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
if ( ! is_array ( $val ) && strpos ( $val , '$$' ) !== False )
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> data [ $app ][ $key ] = $this -> parse_notify ( $val );
2003-05-02 03:33:32 +02:00
}
2008-03-15 16:11:48 +01:00
elseif ( is_array ( $val ))
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
foreach ( $val as $k => $v )
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
if ( ! is_array ( $v ) && strpos ( $v , '$$' ) !== False )
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> data [ $app ][ $key ][ $k ] = $this -> parse_notify ( $v );
2003-05-02 03:33:32 +02:00
}
}
}
}
}
2008-03-15 16:11:48 +01:00
}
2003-05-02 03:33:32 +02:00
2008-03-15 16:11:48 +01:00
/**
* unquote ( stripslashes ) recursivly the whole array
*
* @ param array & $arr array to unquote ( var - param ! )
*/
function unquote ( & $arr )
{
if ( ! is_array ( $arr ))
2003-05-01 11:19:50 +02:00
{
2008-03-15 16:11:48 +01:00
$arr = stripslashes ( $arr );
return ;
2003-05-01 11:19:50 +02:00
}
2008-03-15 16:11:48 +01:00
foreach ( $arr as $key => $value )
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
if ( is_array ( $value ))
2001-07-26 13:13:15 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> unquote ( $arr [ $key ]);
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
else
2003-12-20 19:32:53 +01:00
{
2008-03-15 16:11:48 +01:00
$arr [ $key ] = stripslashes ( $value );
2003-05-01 11:19:50 +02:00
}
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
}
2001-07-26 13:13:15 +02:00
2008-03-15 16:11:48 +01:00
/**
* read preferences from the repository
*
* the function ready all 3 prefs user / default / forced and merges them to the effective ones
*
2010-05-20 21:32:52 +02:00
* @ param boolean $use_session = true should the session prefs get used ( default true ) or not ( false )
2008-03-15 16:11:48 +01:00
* @ return array with effective prefs ( $this -> data )
*/
2010-05-20 21:32:52 +02:00
function read_repository ( $use_session = true )
2008-03-15 16:11:48 +01:00
{
2012-08-07 15:57:56 +02:00
$this -> session = $use_session ? egw_cache :: getSession ( 'preferences' , 'preferences' ) : array ();
2008-03-15 16:11:48 +01:00
if ( ! is_array ( $this -> session ))
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> session = array ();
2001-02-08 01:49:34 +01:00
}
2010-01-27 06:44:31 +01:00
$this -> forced = $this -> default = $this -> user = $this -> group = array ();
2012-10-30 11:22:05 +01:00
$to_read = array ( self :: DEFAULT_ID , self :: FORCED_ID , $this -> account_id );
if ( $this -> account_id > 0 )
{
$primary_group = accounts :: id2name ( $this -> account_id , 'account_primary_group' );
foreach ( $GLOBALS [ 'egw' ] -> accounts -> memberships ( $this -> account_id , true ) as $gid )
{
if ( $gid != $primary_group ) $to_read [] = $gid + self :: DEFAULT_ID ; // need to offset it with DEFAULT_ID = -2!
}
$to_read [] = $primary_group + self :: DEFAULT_ID ;
}
foreach ( $this -> cache_read ( $to_read ) as $id => $values )
2001-02-08 01:49:34 +01:00
{
2012-08-07 15:57:56 +02:00
switch ( $id )
2003-05-20 01:05:32 +02:00
{
2009-10-18 14:45:09 +02:00
case self :: FORCED_ID :
2012-08-07 15:57:56 +02:00
$this -> forced = $values ;
2004-03-21 22:17:34 +01:00
break ;
2009-10-18 14:45:09 +02:00
case self :: DEFAULT_ID :
2012-08-07 15:57:56 +02:00
$this -> default = $values ;
2003-05-20 01:05:32 +02:00
break ;
2010-01-27 06:44:31 +01:00
case $this -> account_id : // user
2012-08-07 15:57:56 +02:00
$this -> user = $values ;
2003-05-20 01:05:32 +02:00
break ;
2010-01-27 06:44:31 +01:00
default :
2012-10-30 11:22:05 +01:00
foreach ( $values as $app => $vals )
{
$this -> group [ $app ] = $vals + ( array ) $this -> group [ $app ];
}
2010-01-27 06:44:31 +01:00
break ;
2003-05-20 01:05:32 +02:00
}
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
$this -> data = $this -> user ;
2001-07-26 13:13:15 +02:00
2008-03-15 16:11:48 +01:00
// let the (temp.) session prefs. override the user prefs.
//
foreach ( $this -> session as $app => $values )
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
foreach ( $values as $var => $value )
2001-07-26 13:13:15 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> data [ $app ][ $var ] = $value ;
2003-05-20 01:05:32 +02:00
}
2008-03-15 16:11:48 +01:00
}
2003-09-06 05:23:37 +02:00
2010-01-27 06:44:31 +01:00
// now use (primary) group defaults if needed (user-value unset or empty)
//
2012-08-22 10:00:36 +02:00
foreach (( array ) $this -> group as $app => $values )
2010-01-27 06:44:31 +01:00
{
2012-08-22 10:00:36 +02:00
foreach (( array ) $values as $var => $value )
2010-01-27 06:44:31 +01:00
{
if ( ! isset ( $this -> data [ $app ][ $var ]) || $this -> data [ $app ][ $var ] === '' )
{
$this -> data [ $app ][ $var ] = $value ;
}
}
}
2008-03-15 16:11:48 +01:00
// now use defaults if needed (user-value unset or empty)
//
2012-08-22 10:00:36 +02:00
foreach (( array ) $this -> default as $app => $values )
2008-03-15 16:11:48 +01:00
{
2012-08-22 10:00:36 +02:00
foreach (( array ) $values as $var => $value )
2003-05-20 01:05:32 +02:00
{
2008-03-15 16:11:48 +01:00
if ( ! isset ( $this -> data [ $app ][ $var ]) || $this -> data [ $app ][ $var ] === '' )
2003-05-20 01:05:32 +02:00
{
2011-09-26 11:52:43 +02:00
//if ($var=='remote_application_url') error_log(__METHOD__.__LINE__.' default for '.$var.' with '.$value);
2008-03-15 16:11:48 +01:00
$this -> data [ $app ][ $var ] = $value ;
2003-05-20 01:05:32 +02:00
}
2001-02-08 01:49:34 +01:00
}
}
2008-03-15 16:11:48 +01:00
// now set/force forced values
//
2012-08-22 10:00:36 +02:00
foreach (( array ) $this -> forced as $app => $values )
2005-11-20 08:32:51 +01:00
{
2012-08-22 10:00:36 +02:00
foreach (( array ) $values as $var => $value )
2008-03-15 16:11:48 +01:00
{
$this -> data [ $app ][ $var ] = $value ;
}
2005-11-20 08:32:51 +01:00
}
2008-03-15 16:11:48 +01:00
// setup the standard substitutes and substitutes the data in $this->data
//
2013-02-07 16:32:18 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'load_translations' ] !== false )
{
$this -> standard_substitutes ();
}
2008-03-15 16:11:48 +01:00
// This is to supress warnings during login
if ( is_array ( $this -> data ))
2002-01-10 11:09:10 +01:00
{
reset ( $this -> data );
}
2008-03-15 16:11:48 +01:00
if ( isset ( $this -> debug ) && substr ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'currentapp' ], 0 , 3 ) != 'log' )
{
echo 'user<pre>' ; print_r ( $this -> user ); echo " </pre> \n " ;
echo 'forced<pre>' ; print_r ( $this -> forced ); echo " </pre> \n " ;
echo 'default<pre>' ; print_r ( $this -> default ); echo " </pre> \n " ;
2010-01-27 06:44:31 +01:00
echo 'group<pre>' ; print_r ( $this -> group ); echo " </pre> \n " ;
2009-10-06 08:45:28 +02:00
echo 'effectiv<pre>' ; print_r ( $this -> data ); echo " </pre> \n " ;
2008-03-15 16:11:48 +01:00
}
2009-10-06 08:45:28 +02:00
$this -> check_set_tz_offset ();
2008-03-15 16:11:48 +01:00
return $this -> data ;
}
2002-01-10 11:09:10 +01:00
2012-03-01 19:03:13 +01:00
/**
* Get default preferences ( also taking forced preferences into account ! )
*
* @ param string $app = null
* @ param string $name = null
* @ return mixed
*/
function default_prefs ( $app = null , $name = null )
{
// boetemplate::complete_array_merge() is identical to PHP >= 5.3 array_replace_recursive()
$default = boetemplate :: complete_array_merge ( $this -> default , $this -> forced );
if ( $app ) $default = $default [ $app ];
if ( $name && is_array ( $default )) $default = $default [ $name ];
return $default ;
}
2009-10-06 08:45:28 +02:00
/**
2009-10-07 10:05:10 +02:00
* Checking new timezone ( 'tz' ) pref and setting old tz_offset pref from it
2009-10-06 08:45:28 +02:00
*
*/
function check_set_tz_offset ()
{
2012-08-07 15:57:56 +02:00
$prefs =& $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ];
2009-10-06 08:45:28 +02:00
2009-10-08 18:14:18 +02:00
if ( ! empty ( $prefs [ 'tz' ]))
2009-10-06 08:45:28 +02:00
{
2012-03-02 10:53:41 +01:00
egw_time :: setUserPrefs ( $prefs [ 'tz' ], $prefs [ 'dateformat' ], $prefs [ 'timeformat' ]);
2009-10-08 18:14:18 +02:00
// set the old preference for compatibilty with old code
2012-08-07 15:57:56 +02:00
$prefs [ 'tz_offset' ] = egw_time :: tz_offset_s () / 3600 ;
//echo "<p>".__METHOD__."() tz=$prefs[tz] --> tz_offset=$prefs[tz_offset]</p>\n";
2009-10-06 08:45:28 +02:00
2009-10-08 18:14:18 +02:00
// ToDo: get rid of that
2011-09-26 11:52:43 +02:00
if ( isset ( $GLOBALS [ 'egw' ]) && ( $GLOBALS [ 'egw' ] instanceof egw ))
2009-10-08 18:14:18 +02:00
{
$GLOBALS [ 'egw' ] -> unset_datetime (); // to force an update
}
2009-10-06 08:45:28 +02:00
}
}
2009-10-08 18:14:18 +02:00
/**
* Set user timezone , if we get restored from session
*
*/
function __wakeup ()
{
$this -> check_set_tz_offset ();
}
2008-03-15 16:11:48 +01:00
/**
* read preferences from repository and stores in an array
*
* @ return array containing the effective user preferences
*/
function read ()
{
if ( count ( $this -> data ) == 0 )
2002-01-10 11:09:10 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> read_repository ();
2002-01-10 11:09:10 +01:00
}
2008-03-15 16:11:48 +01:00
reset ( $this -> data );
return $this -> data ;
}
2002-01-10 11:09:10 +01:00
2008-03-15 16:11:48 +01:00
/**
* add preference to $app_name a particular app
*
* the effective prefs ( $this -> data ) are updated to reflect the change
*
* @ param string $app_name name of the app
* @ param string $var name of preference to be stored
* @ param mixed $value = '##undef##' value of the preference , if not given $GLOBALS [ $var ] is used
* @ param $type = 'user' of preference to set : forced , default , user
* @ return array with new effective prefs ( even when forced or default prefs are set ! )
*/
function add ( $app_name , $var , $value = '##undef##' , $type = 'user' )
{
//echo "<p>add('$app_name','$var','$value')</p>\n";
if ( $value === '##undef##' )
2003-05-01 11:19:50 +02:00
{
2008-03-15 16:11:48 +01:00
$value = $GLOBALS [ $var ];
}
switch ( $type )
{
case 'session' :
if ( ! isset ( $this -> forced [ $app_name ][ $var ]) || $this -> forced [ $app_name ][ $var ] === '' )
2003-05-01 11:19:50 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> session [ $app_name ][ $var ] = $this -> data [ $app_name ][ $var ] = $value ;
$GLOBALS [ 'egw' ] -> session -> appsession ( 'preferences' , 'preferences' , $this -> session );
if ( method_exists ( $GLOBALS [ 'egw' ], 'invalidate_session_cache' )) // egw object in setup is limited
{
$GLOBALS [ 'egw' ] -> invalidate_session_cache (); // in case with cache the egw_info array in the session
}
2003-05-01 11:19:50 +02:00
}
2008-03-15 16:11:48 +01:00
break ;
case 'forced' :
$this -> data [ $app_name ][ $var ] = $this -> forced [ $app_name ][ $var ] = $value ;
break ;
case 'default' :
$this -> default [ $app_name ][ $var ] = $value ;
if (( ! isset ( $this -> forced [ $app_name ][ $var ]) || $this -> forced [ $app_name ][ $var ] === '' ) &&
( ! isset ( $this -> user [ $app_name ][ $var ]) || $this -> user [ $app_name ][ $var ] === '' ))
2003-05-01 11:19:50 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> data [ $app_name ][ $var ] = $value ;
2003-05-01 11:19:50 +02:00
}
2008-03-15 16:11:48 +01:00
break ;
2010-04-21 13:09:38 +02:00
case 'user' :
2008-03-15 16:11:48 +01:00
default :
$this -> user [ $app_name ][ $var ] = $value ;
if ( ! isset ( $this -> forced [ $app_name ][ $var ]) || $this -> forced [ $app_name ][ $var ] === '' )
{
$this -> data [ $app_name ][ $var ] = $value ;
}
break ;
2003-05-01 11:19:50 +02:00
}
2008-03-15 16:11:48 +01:00
reset ( $this -> data );
return $this -> data ;
}
2003-12-13 16:03:23 +01:00
2008-03-15 16:11:48 +01:00
/**
* delete preference from $app_name
*
* the effektive prefs ( $this -> data ) are updated to reflect the change
*
* @ param string $app_name name of app
* @ param string $var = false variable to be deleted
* @ param string $type = 'user' of preference to set : forced , default , user
* @ return array with new effective prefs ( even when forced or default prefs are deleted ! )
*/
function delete ( $app_name , $var = False , $type = 'user' )
{
//echo "<p>delete('$app_name','$var','$type')</p>\n";
$set_via = array (
'forced' => array ( 'user' , 'default' ),
'default' => array ( 'forced' , 'user' ),
2010-01-27 06:44:31 +01:00
'user' => array ( 'forced' , 'group' , 'default' ),
'group' => array ( 'forced' ),
2008-03-15 16:11:48 +01:00
);
if ( ! isset ( $set_via [ $type ]))
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
$type = 'user' ;
}
$pref = & $this -> $type ;
2003-05-01 11:19:50 +02:00
2010-04-21 13:09:38 +02:00
if (( $all = empty ( $var ))) // to check if $var is regarded as empty (false, 0, '', null, array() should do the trick
2008-03-15 16:11:48 +01:00
{
2010-05-12 11:23:50 +02:00
unset ( $pref [ $app_name ]);
2008-03-15 16:11:48 +01:00
unset ( $this -> data [ $app_name ]);
}
else
{
2010-05-12 11:23:50 +02:00
unset ( $pref [ $app_name ][ $var ]);
2008-03-15 16:11:48 +01:00
unset ( $this -> data [ $app_name ][ $var ]);
}
// set the effectiv pref again if needed
//
foreach ( $set_via [ $type ] as $set_from )
{
2010-04-21 13:09:38 +02:00
$arr = & $this -> $set_from ;
2008-03-15 16:11:48 +01:00
if ( $all )
2001-04-04 06:54:12 +02:00
{
2010-04-21 13:09:38 +02:00
if ( isset ( $arr [ $app_name ]))
2001-04-04 06:54:12 +02:00
{
2010-04-21 13:09:38 +02:00
$this -> data [ $app_name ] = $arr [ $app_name ];
2008-03-15 16:11:48 +01:00
break ;
2001-04-04 06:54:12 +02:00
}
2001-02-08 01:49:34 +01:00
}
2001-04-04 06:54:12 +02:00
else
{
2008-03-15 16:11:48 +01:00
if ( $var && @ isset ( $arr [ $app_name ][ $var ]) && $arr [ $app_name ][ $var ] !== '' )
{
2010-04-21 13:09:38 +02:00
$this -> data [ $app_name ][ $var ] = $arr [ $app_name ][ $var ];
2008-03-15 16:11:48 +01:00
break ;
}
2005-11-24 21:08:09 +01:00
}
2010-04-21 13:09:38 +02:00
unset ( $arr );
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
reset ( $this -> data );
return $this -> data ;
}
2009-10-06 08:45:28 +02:00
2008-03-15 16:11:48 +01:00
/**
* delete all prefs of a given user
*
* @ param int $accountid
*/
function delete_user ( $accountid )
{
2010-01-27 06:44:31 +01:00
if ( $account_id > 0 )
{
$this -> delete ( $this -> table , array ( 'preference_owner' => $accountid ), __LINE__ , __FILE__ );
}
}
/**
* delete all prefs of a given group
*
* @ param int $accountid
*/
function delete_group ( $accountid )
{
if ( $account_id < 0 )
{
$this -> delete ( $this -> table , array ( 'preference_owner' => $accountid + self :: DEFAULT_ID ), __LINE__ , __FILE__ );
}
2008-03-15 16:11:48 +01:00
}
2001-07-26 13:13:15 +02:00
2013-04-23 00:32:40 +02:00
/**
* Completely delete the specified preference name from all users
*
* @ param string $app Application name
* @ param string $name Preference name
* @ param string $type = 'user' of preference to set : forced , default , user
*/
public function delete_preference ( $app , $name , $type = 'user' )
{
$GLOBALS [ 'egw' ] -> db -> transaction_begin ();
$where = array (
'preference_app' => $app ,
'preference_value ' . $this -> db -> capabilities [ egw_db :: CAPABILITY_CASE_INSENSITIV_LIKE ] . ' ' .
$this -> db -> quote ( " % $name % " )
);
switch ( $type )
{
case 'forced' :
$where [ 'preference_owner' ] = self :: FORCED_ID ;
break ;
case 'default' :
$where [ 'preference_owner' ] = self :: DEFAULT_ID ;
break ;
case 'user' :
$where [] = 'preference_owner > 0' ;
break ;
}
foreach ( $this -> db -> select ( $this -> table , '*' , $where , __LINE__ , __FILE__ ) as $row )
{
$value = unserialize ( $row [ 'preference_value' ]);
if ( $value [ $name ])
{
unset ( $value [ $name ]);
$this -> quote ( $value ); // this quote-ing is for serialize, not for the db
$GLOBALS [ 'egw' ] -> db -> insert ( $this -> table , array (
'preference_value' => serialize ( $value ),
), array (
'preference_owner' => $row [ 'preference_owner' ],
'preference_app' => $row [ 'preference_app' ],
), __LINE__ , __FILE__ );
}
}
$GLOBALS [ 'egw' ] -> db -> transaction_commit ();
}
/************************************************************************** \
* These are the standard $this -> account_id specific functions *
\ **************************************************************************/
2008-03-15 16:11:48 +01:00
/**
* add complex array data preference to $app_name a particular app
*
* @ deprecated we can now correctly store arrays in the prefs , AFAIK only used in email
*
* @ param string $app_name name of the app
* @ param string $var array keys separated by '/' , eg . 'ex_accounts/1'
* @ param mixed $value = '' value of the preference
* @ return array with new effective prefs ( even when forced or default prefs are deleted ! )
*/
function add_struct ( $app_name , $var , $value = '' )
{
$parts = explode ( '/' , str_replace ( array ( '][' , '[' , ']' , '"' , " ' " ), array ( '/' , '' , '' , '' , '' ), $var ));
$data = & $this -> data [ $app_name ];
$user = & $this -> user [ $app_name ];
foreach ( $parts as $name )
2001-10-05 05:15:45 +02:00
{
2008-03-15 16:11:48 +01:00
$data = & $data [ $name ];
$user = & $user [ $name ];
2001-10-05 05:15:45 +02:00
}
2008-03-15 16:11:48 +01:00
$data = $user = $value ;
print_debug ( 'class.preferences: add_struct: $this->data[$app_name] dump:' , $this -> data [ $app_name ], 'api' );
reset ( $this -> data );
return $this -> data ;
}
2001-10-05 05:15:45 +02:00
2008-03-15 16:11:48 +01:00
/**
* delete complex array data preference from $app_name
*
* @ deprecated we can now correctly store arrays in the prefs , AFAIK only used in email
*
* @ param $app_name name of app
* @ param $var array keys separated by '/' , eg . 'ex_accounts/1'
* @ return array with new effective prefs ( even when forced or default prefs are deleted ! )
*/
function delete_struct ( $app_name , $var = '' )
{
$parts = explode ( '/' , str_replace ( array ( '][' , '[' , ']' , '"' , " ' " ), array ( '/' , '' , '' , '' , '' ), $var ));
$last = array_pop ( $parts );
$data = & $this -> data [ $app_name ];
$user = & $this -> user [ $app_name ];
foreach ( $parts as $name )
2001-07-26 13:13:15 +02:00
{
2008-03-15 16:11:48 +01:00
$data = & $data [ $name ];
$user = & $user [ $name ];
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
unset ( $user [ $last ]);
print_debug ( '* $this->data[$app_name] dump:' , $this -> data [ $app_name ], 'api' );
reset ( $this -> data );
return $this -> data ;
}
2001-01-11 10:52:33 +01:00
2008-03-15 16:11:48 +01:00
/**
* quote ( addslashes ) recursivly the whole array
*
* @ param array & $arr array to quote ( var - param ! )
*/
function quote ( & $arr )
{
if ( ! is_array ( $arr ))
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
$arr = addslashes ( $arr );
return ;
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
foreach ( $arr as $key => $value )
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
if ( is_array ( $value ))
{
$this -> quote ( $arr [ $key ]);
}
else
{
$arr [ $key ] = addslashes ( $value );
}
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
}
2001-02-05 23:30:21 +01:00
2008-03-15 16:11:48 +01:00
/**
2010-11-16 10:34:47 +01:00
* Save the the preferences to the repository
2008-03-15 16:11:48 +01:00
*
* User prefs for saveing are in $this -> user not in $this -> data , which are the effectiv prefs only !
*
2010-11-16 10:34:47 +01:00
* @ param boolean $update_session_info = false old param , seems not to be used ( not used anymore )
2008-03-15 16:11:48 +01:00
* @ param string $type = 'user' which prefs to update : user / default / forced
2010-11-16 10:34:47 +01:00
* @ param boolean $invalid_cache = true should we invalidate the cache , default true ( not used anymore )
2008-03-15 16:11:48 +01:00
* @ return array with new effective prefs ( even when forced or default prefs are deleted ! )
*/
function save_repository ( $update_session_info = False , $type = 'user' , $invalid_cache = true )
{
switch ( $type )
{
case 'forced' :
2009-10-18 14:45:09 +02:00
$account_id = self :: FORCED_ID ;
2008-03-15 16:11:48 +01:00
$prefs = & $this -> forced ;
break ;
case 'default' :
2009-10-18 14:45:09 +02:00
$account_id = self :: DEFAULT_ID ;
2008-03-15 16:11:48 +01:00
$prefs = & $this -> default ;
break ;
2010-01-27 06:44:31 +01:00
case 'group' :
2012-10-30 11:22:05 +01:00
throw new egw_exception_wrong_parameter ( " Can NOT save group preferences, as they are from multiple groups! " );
2010-01-27 06:44:31 +01:00
break ;
2008-03-15 16:11:48 +01:00
default :
$account_id = ( int ) $this -> account_id ;
$prefs = & $this -> user ; // we use the user-array as data contains default values too
break ;
}
//echo "<p>preferences::save_repository(,$type): account_id=$account_id, prefs="; print_r($prefs); echo "</p>\n";
2001-07-26 13:13:15 +02:00
2012-08-07 15:57:56 +02:00
if ( isset ( $GLOBALS [ 'egw_setup' ]) || ! $GLOBALS [ 'egw' ] -> acl -> check ( 'session_only_preferences' , 1 , 'preferences' ) &&
( ! ( $old_prefs = $this -> cache_read ( $account_id )) || $old_prefs [ $account_id ] != $prefs ))
2001-02-08 01:49:34 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> db -> transaction_begin ();
foreach ( $prefs as $app => $value )
2001-07-26 13:13:15 +02:00
{
2012-08-07 15:57:56 +02:00
if ( ! is_array ( $value ) || ! $value )
2001-05-14 05:54:40 +02:00
{
2008-03-15 16:11:48 +01:00
continue ;
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
$this -> quote ( $value ); // this quote-ing is for serialize, not for the db
$this -> db -> insert ( $this -> table , array (
'preference_value' => serialize ( $value ),
), array (
'preference_owner' => $account_id ,
'preference_app' => $app ,
), __LINE__ , __FILE__ );
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
$this -> db -> transaction_commit ();
2009-10-07 20:59:01 +02:00
2012-08-07 15:57:56 +02:00
// update instance-wide cache
egw_cache :: setInstance ( __CLASS__ , $account_id , $prefs );
2001-02-08 01:49:34 +01:00
}
2008-03-15 16:11:48 +01:00
return $this -> data ;
}
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
/**
* insert a copy of the default preferences for use by real account_id
*
* @ deprecated not longer needed , as the defaults are merged in on runtime
*
* @ param int $account_id numerical id of account for which to create the prefs
*/
function create_defaults ( $account_id )
{
}
/**
* update the preferences array
*
* @ param array $data array of preferences
* @ return array with new effective prefs ( even when forced or default prefs are deleted ! )
*/
function update_data ( $data )
{
$this -> data = $data ;
reset ( $this -> data );
return $this -> data ;
}
/* legacy support */
function change ( $app_name , $var , $value = " " )
{
return $this -> add ( $app_name , $var , $value );
}
function commit ( $update_session_info = True )
{
//return $this->save_repository($update_session_info);
}
/************************************************************************** \
* These are the non - standard $this -> account_id specific functions *
\ **************************************************************************/
/**
* verify basic settings
*
* @ discussion
*/
function verify_basic_settings ()
{
if ( !@ is_array ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ]))
{
$GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ] = array ();
}
/* This takes care of new users who don't have proper default prefs setup */
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'flags' ][ 'nocommon_preferences' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'flags' ][ 'nocommon_preferences' ])
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
$preferences_update = False ;
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'maxmatchs' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'maxmatchs' ])
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> add ( 'common' , 'maxmatchs' , 15 );
$preferences_update = True ;
2001-11-12 22:44:31 +01:00
}
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'theme' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'theme' ])
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> add ( 'common' , 'theme' , 'default' );
$preferences_update = True ;
2003-08-28 16:31:11 +02:00
}
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'template_set' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'template_set' ])
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> add ( 'common' , 'template_set' , 'default' );
$preferences_update = True ;
2001-12-17 19:37:59 +01:00
}
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'dateformat' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'dateformat' ])
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
$this -> add ( 'common' , 'dateformat' , 'm/d/Y' );
$preferences_update = True ;
2001-12-17 19:37:59 +01:00
}
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ])
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> add ( 'common' , 'timeformat' , 12 );
$preferences_update = True ;
2003-05-02 03:33:32 +02:00
}
2009-10-06 08:45:28 +02:00
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'lang' ]) ||
2008-03-15 16:11:48 +01:00
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'lang' ])
2004-07-04 19:27:42 +02:00
{
2012-08-07 15:57:56 +02:00
$this -> add ( 'common' , 'lang' , common :: getPreferredLanguage ());
2008-03-15 16:11:48 +01:00
$preferences_update = True ;
2004-07-04 19:27:42 +02:00
}
2008-03-15 16:11:48 +01:00
if ( $preferences_update )
2003-05-02 03:33:32 +02:00
{
2008-03-15 16:11:48 +01:00
$this -> save_repository ();
2003-05-02 03:33:32 +02:00
}
2008-03-15 16:11:48 +01:00
unset ( $preferences_update );
2001-12-17 19:37:59 +01:00
}
2008-03-15 16:11:48 +01:00
}
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
/**************************************************** \
* Email Preferences and Private Support Functions *
\ ****************************************************/
/**
* Helper function for create_email_preferences , gets mail server port number .
*
* This will generate the appropriate port number to access a
* mail server of type pop3 , pop3s , imap , imaps users value from
* $phpgw_info [ 'user' ][ 'preferences' ][ 'email' ][ 'mail_port' ] .
* if that value is not set , it generates a default port for the given $server_type .
2009-10-06 08:45:28 +02:00
* Someday , this * MAY * be
* ( a ) a se4rver wide admin setting , or
2008-03-15 16:11:48 +01:00
* ( b ) user custom preference
* Until then , simply set the port number based on the mail_server_type , thereof
* ONLY call this function AFTER [ 'email' ][ 'mail_server_type' ] has been set .
* @ param $prefs - user preferences array based on element [ 'email' ][]
* @ author Angles
* @ access Private
*/
function sub_get_mailsvr_port ( $prefs , $acctnum = 0 )
{
// first we try the port number supplied in preferences
if (( isset ( $prefs [ 'email' ][ 'accounts' ][ $acctnum ][ 'mail_port' ])) &&
( $prefs [ 'email' ][ 'accounts' ][ $acctnum ][ 'mail_port' ] != '' ))
2003-05-03 12:58:46 +02:00
{
2008-03-15 16:11:48 +01:00
$port_number = $prefs [ 'email' ][ 'accounts' ][ $acctnum ][ 'mail_port' ];
2003-05-03 12:58:46 +02:00
}
2008-03-15 16:11:48 +01:00
// preferences does not have a port number, generate a default value
else
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
if ( ! isset ( $prefs [ 'email' ][ 'accounts' ][ $acctnum ][ 'mail_server_type' ]))
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
$prefs [ 'email' ][ 'accounts' ][ $acctnum ][ 'mail_server_type' ] = $prefs [ 'email' ][ 'mail_server_type' ];
2001-11-12 22:44:31 +01:00
}
2008-03-15 16:11:48 +01:00
switch ( $prefs [ 'email' ][ 'accounts' ][ $acctnum ][ 'mail_server_type' ])
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
case 'pop3s' :
// POP3 over SSL
$port_number = 995 ;
break ;
case 'pop3' :
// POP3 normal connection, No SSL
// ( same string as normal imap above)
$port_number = 110 ;
break ;
case 'nntp' :
// NNTP news server port
$port_number = 119 ;
break ;
case 'imaps' :
// IMAP over SSL
$port_number = 993 ;
break ;
case 'imap' :
2009-10-06 08:45:28 +02:00
// IMAP normal connection, No SSL
2008-03-15 16:11:48 +01:00
default :
// UNKNOWN SERVER in Preferences, return a
// default value that is likely to work
// probably should raise some kind of error here
$port_number = 143 ;
break ;
2001-12-17 19:37:59 +01:00
}
2008-03-15 16:11:48 +01:00
}
return $port_number ;
}
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
/**
* Helper function for create_email_preferences , gets default userid for email
*
* This will generate the appropriate userid for accessing an email server .
* In the absence of a custom [ 'email' ][ 'userid' ], this function should be used to set it .
* @ param $accountid - as determined in and / or passed to " create_email_preferences "
* @ access Private
*/
function sub_default_userid ( $account_id = '' )
{
if ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_login_type' ] == 'vmailmgr' )
{
$prefs_email_userid = $GLOBALS [ 'egw' ] -> accounts -> id2name ( $account_id )
. '@' . $GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_suffix' ];
}
else
{
$prefs_email_userid = $GLOBALS [ 'egw' ] -> accounts -> id2name ( $account_id );
}
return $prefs_email_userid ;
}
2003-12-13 16:03:23 +01:00
2008-03-15 16:11:48 +01:00
/**
* returns the custom email - address ( if set ) or generates a default one
*
2009-10-06 08:45:28 +02:00
* This will generate the appropriate email address used as the " From: "
* email address when the user sends email , the localpert * part . The " personal "
2008-03-15 16:11:48 +01:00
* part is generated elsewhere .
* In the absence of a custom [ 'email' ][ 'address' ], this function should be used to set it .
*
* @ access public
* @ param int $accountid - as determined in and / or passed to " create_email_preferences "
* @ return string with email - address
*/
function email_address ( $account_id = '' )
{
if ( isset ( $this -> data [ 'email' ][ 'address' ]))
{
return $this -> data [ 'email' ][ 'address' ];
}
// if email-address is set in the account, return it
if (( $email = $GLOBALS [ 'egw' ] -> accounts -> id2name ( $account_id , 'account_email' )))
{
return $email ;
}
$prefs_email_address = $GLOBALS [ 'egw' ] -> accounts -> id2name ( $account_id );
if ( strpos ( $prefs_email_address , '@' ) === False )
{
$prefs_email_address .= '@' . $GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_suffix' ];
}
return $prefs_email_address ;
}
function sub_default_address ( $account_id = '' )
{
return $this -> email_address ( $account_id );
}
/**
* create email preferences
*
* @ param $account_id - optional defaults to : get_account_id ()
* fills a local copy of [ 'email' ][] prefs array which is then returned to the calling
* function , which the calling function generally tacks onto the $GLOBALS [ 'egw_info' ] array as such :
* $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ] = $GLOBALS [ 'egw' ] -> preferences -> create_email_preferences ();
* which fills an array based at :
* $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'email' ][ prefs_are_elements_here ]
2009-10-06 08:45:28 +02:00
* Reading the raw preference DB data and comparing to the email preference schema defined in
* / email / class . bopreferences . inc . php ( see discussion there and below ) to create default preference values
* for the in the [ 'email' ][] pref data array in cases where the user has not supplied
2008-03-15 16:11:48 +01:00
* a preference value for any particular preference item available to the user .
* @ access Public
*/
function create_email_preferences ( $accountid = '' , $acctnum = 0 )
{
print_debug ( 'class.preferences: create_email_preferences: ENTERING<br>' , 'messageonly' , 'api' );
// we may need function "html_quotes_decode" from the mail_msg class
$email_base =& CreateObject ( " email.mail_msg " );
$account_id = get_account_id ( $accountid );
// If the current user is not the request user, grab the preferences
// and reset back to current user.
if ( $account_id != $this -> account_id )
{
// Temporarily store the values to a temp, so when the
// read_repository() is called, it doesn't destory the
// current users settings.
$temp_account_id = $this -> account_id ;
$temp_data = $this -> data ;
// Grab the new users settings, only if they are not the
// current users settings.
$this -> account_id = $account_id ;
$prefs = $this -> read_repository ();
// Reset the data to what it was prior to this call
$this -> account_id = $temp_account_id ;
$this -> data = $temp_data ;
}
else
{
$prefs = $this -> data ;
}
// are we dealing with the default email account or an extra email account?
if ( $acctnum != 0 )
{
// prefs are actually a sub-element of the main email prefs
// at location [email][ex_accounts][X][...pref names] => pref values
// make this look like "prefs[email] so the code below code below will do its job transparently
2009-10-06 08:45:28 +02:00
2008-03-15 16:11:48 +01:00
// obtain the desired sub-array of extra account prefs
$sub_prefs = array ();
$sub_prefs [ 'email' ] = $prefs [ 'email' ][ 'ex_accounts' ][ $acctnum ];
// make the switch, make it seem like top level email prefs
$prefs = array ();
$prefs [ 'email' ] = $sub_prefs [ 'email' ];
// since we return just $prefs, it's up to the calling program to put the sub prefs in the right place
}
print_debug ( 'class.preferences: create_email_preferences: $acctnum: [' . $acctnum . '] ; raw $this->data dump' , $this -> data , 'api' );
// = = = = NOT-SIMPLE PREFS = = = =
// Default Preferences info that is:
// (a) not controlled by email prefs itself (mostly api and/or server level stuff)
// (b) too complicated to be described in the email prefs data array instructions
2009-10-06 08:45:28 +02:00
2008-03-15 16:11:48 +01:00
// --- [server][mail_server_type] ---
// Set API Level Server Mail Type if not defined
// if for some reason the API didnot have a mail server type set during initialization
if ( empty ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_server_type' ]))
{
$GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_server_type' ] = 'imap' ;
}
// --- [server][mail_folder] ---
// ==== UWash Mail Folder Location used to be "mail", now it's changeable, but keep the
// ==== default to "mail" so upgrades happen transparently
// --- TEMP MAKE DEFAULT UWASH MAIL FOLDER ~/mail (a.k.a. $HOME/mail)
$GLOBALS [ 'egw_info' ][ 'server' ][ 'mail_folder' ] = 'mail' ;
// --- DELETE THE ABOVE WHEN THIS OPTION GETS INTO THE SYSTEM SETUP
// pick up custom "mail_folder" if it exists (used for UWash and UWash Maildir servers)
// else use the system default (which we temporarily hard coded to "mail" just above here)
//--- [email][mail_port] ---
// These sets the mail_port server variable
// someday (not currently) this may be a site-wide property set during site setup
// additionally, someday (not currently) the user may be able to override this with
// a custom email preference. Currently, we simply use standard port numbers
// for the service in question.
$prefs [ 'email' ][ 'mail_port' ] = $this -> sub_get_mailsvr_port ( $prefs );
//--- [email][fullname] ---
// we pick this up from phpgw api for the default account
// the user does not directly manipulate this pref for the default email account
if (( string ) $acctnum == '0' )
{
$prefs [ 'email' ][ 'fullname' ] = $GLOBALS [ 'egw_info' ][ 'user' ][ 'fullname' ];
}
// = = = = SIMPLER PREFS = = = =
// Default Preferences info that is articulated in the email prefs schema array itself
// such email prefs schema array is described and established in /email/class.bopreferences
// by function "init_available_prefs", see the discussion there.
// --- create the objectified /email/class.bopreferences.inc.php ---
$bo_mail_prefs =& CreateObject ( 'email.bopreferences' );
// --- bo_mail_prefs->init_available_prefs() ---
// this fills object_email_bopreferences->std_prefs and ->cust_prefs
// we will initialize the users preferences according to the rules and instructions
// embodied in those prefs arrays, applying those rules to the unprocessed
// data read from the preferences DB. By taking the raw data and applying those rules,
// we will construct valid and known email preference data for this user.
$bo_mail_prefs -> init_available_prefs ();
// --- combine the two array (std and cust) for 1 pass handling ---
// when this preference DB was submitted and saved, it was hopefully so well structured
// that we can simply combine the two arrays, std_prefs and cust_prefs, and do a one
// pass analysis and preparation of this users preferences.
$avail_pref_array = $bo_mail_prefs -> std_prefs ;
$c_cust_prefs = count ( $bo_mail_prefs -> cust_prefs );
for ( $i = 0 ; $i < $c_cust_prefs ; $i ++ )
{
// add each custom prefs to the std prefs array
$next_idx = count ( $avail_pref_array );
$avail_pref_array [ $next_idx ] = $bo_mail_prefs -> cust_prefs [ $i ];
}
print_debug ( 'class.preferences: create_email_preferences: std AND cust arrays combined:' , $avail_pref_array , 'api' );
// --- make the schema-based pref data for this user ---
// user defined values and/or user specified custom email prefs are read from the
2009-10-06 08:45:28 +02:00
// prefs DB with mininal manipulation of the data. Currently the only change to
2008-03-15 16:11:48 +01:00
// users raw data is related to reversing the encoding of "database un-friendly" chars
2009-10-06 08:45:28 +02:00
// which itself may become unnecessary if and when the database handlers can reliably
2008-03-15 16:11:48 +01:00
// take care of this for us. Of course, password data requires special decoding,
2009-10-06 08:45:28 +02:00
// but the password in the array [email][paswd] should be left in encrypted form
2008-03-15 16:11:48 +01:00
// and only decrypted seperately when used to login in to an email server.
// --- generating a default value if necessary ---
// in the absence of a user defined custom email preference for a particular item, we can
// determine the desired default value for that pref as such:
// $this_avail_pref['init_default'] is a comma seperated seperated string which should
// be exploded into an array containing 2 elements that are:
// exploded[0] : an description of how to handle the next string element to get a default value.
// Possible "instructional tokens" for exploded[0] (called $set_proc[0] below) are:
// string
// set_or_not
// function
// init_no_fill
// varEVAL
// tells you how to handle the string in exploded[1] (called $set_proc[1] below) to get a valid
// default value for a particular preference if one is needed (i.e. if no user custom
// email preference exists that should override that default value, in which case we
// do not even need to obtain such a default value as described in ['init_default'] anyway).
2009-10-06 08:45:28 +02:00
2008-03-15 16:11:48 +01:00
// --- loop thru $avail_pref_array and process each pref item ---
$c_prefs = count ( $avail_pref_array );
for ( $i = 0 ; $i < $c_prefs ; $i ++ )
{
$this_avail_pref = $avail_pref_array [ $i ];
print_debug ( 'class.preferences: create_email_preferences: value from DB for $prefs[email][' . $this_avail_pref [ 'id' ] . '] = [' . $prefs [ 'email' ][ $this_avail_pref [ 'id' ]] . ']' , 'messageonly' , 'api' );
print_debug ( 'class.preferences: create_email_preferences: std/cust_prefs $this_avail_pref[' . $i . '] dump:' , $this_avail_pref , 'api' );
// --- is there a value in the DB for this preference item ---
// if the prefs DB has no value for this defined available preference, we must make one.
2009-10-06 08:45:28 +02:00
// This occurs if (a) this is user's first login, or (b) this is a custom pref which the user
2008-03-15 16:11:48 +01:00
// has not overriden, do a default (non-custom) value is needed.
if ( ! isset ( $prefs [ 'email' ][ $this_avail_pref [ 'id' ]]))
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
// now we are analizing an individual pref that is available to the user
// AND the user had no existing value in the prefs DB for this.
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
// --- get instructions on how to generate a default value ---
$set_proc = explode ( ',' , $this_avail_pref [ 'init_default' ]);
print_debug ( ' * set_proc=[' . serialize ( $set_proc ) . ']' , 'messageonly' , 'api' );
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
// --- use "instructional token" in $set_proc[0] to take appropriate action ---
// STRING
if ( $set_proc [ 0 ] == 'string' )
{
// means this pref item's value type is string
// which defined string default value is in $set_proc[1]
print_debug ( '* handle "string" set_proc: ' , serialize ( $set_proc ), 'api' );
if ( trim ( $set_proc [ 1 ]) == '' )
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
// this happens when $this_avail_pref['init_default'] = "string, "
$this_string = '' ;
2001-12-17 19:37:59 +01:00
}
else
{
2008-03-15 16:11:48 +01:00
$this_string = $set_proc [ 1 ];
2001-12-17 19:37:59 +01:00
}
2008-03-15 16:11:48 +01:00
$prefs [ 'email' ][ $this_avail_pref [ 'id' ]] = $this_string ;
2001-11-12 22:44:31 +01:00
}
2008-03-15 16:11:48 +01:00
// SET_OR_NOT
elseif ( $set_proc [ 0 ] == 'set_or_not' )
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
// typical with boolean options, True = "set/exists" and False = unset
print_debug ( '* handle "set_or_not" set_proc: ' , serialize ( $set_proc ), 'api' );
if ( $set_proc [ 1 ] == 'not_set' )
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
// leave it NOT SET
}
else
{
2009-10-06 08:45:28 +02:00
// opposite of boolean not_set = string "True" which simply sets a
2008-03-15 16:11:48 +01:00
// value it exists in the users session [email][] preference array
$prefs [ 'email' ][ $this_avail_pref [ 'id' ]] = 'True' ;
2001-12-17 19:37:59 +01:00
}
2001-11-12 22:44:31 +01:00
}
2008-03-15 16:11:48 +01:00
// FUNCTION
elseif ( $set_proc [ 0 ] == 'function' )
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
// string in $set_proc[1] should be "eval"uated as code, calling a function
// which will give us a default value to put in users session [email][] prefs array
print_debug ( ' * handle "function" set_proc: ' , serialize ( $set_proc ), 'api' );
$evaled = '' ;
//eval('$evaled = $this->'.$set_proc[1].'('.$account_id.');');
$code = '$evaled = $this->' . $set_proc [ 1 ] . '(' . $account_id . ');' ;
print_debug ( ' * $code: ' , $code , 'api' );
eval ( $code );
print_debug ( '* $evaled:' , $evaled , 'api' );
$prefs [ 'email' ][ $this_avail_pref [ 'id' ]] = $evaled ;
2001-12-17 19:37:59 +01:00
}
2008-03-15 16:11:48 +01:00
// INIT_NO_FILL
elseif ( $set_proc [ 0 ] == 'init_no_fill' )
2001-12-17 19:37:59 +01:00
{
2009-10-06 08:45:28 +02:00
// we have an available preference item that we may NOT fill with a default
2008-03-15 16:11:48 +01:00
// value. Only the user may supply a value for this pref item.
print_debug ( '* handle "init_no_fill" set_proc:' , serialize ( $set_proc ), 'api' );
// we are FORBADE from filling this at this time!
2001-12-17 19:37:59 +01:00
}
2008-03-15 16:11:48 +01:00
// varEVAL
elseif ( $set_proc [ 0 ] == 'varEVAL' )
2001-11-12 22:44:31 +01:00
{
2009-10-06 08:45:28 +02:00
// similar to "function" but used for array references, the string in $set_proc[1]
2008-03-15 16:11:48 +01:00
// represents code which typically is an array referencing a system/api property
print_debug ( '* handle "GLOBALS" set_proc:' , serialize ( $set_proc ), 'api' );
$evaled = '' ;
$code = '$evaled = ' . $set_proc [ 1 ];
print_debug ( ' * $code:' , $code , 'api' );
eval ( $code );
print_debug ( '* $evaled:' , $evaled , 'api' );
$prefs [ 'email' ][ $this_avail_pref [ 'id' ]] = $evaled ;
2001-11-12 22:44:31 +01:00
}
else
{
2008-03-15 16:11:48 +01:00
// error, no instructions on how to handle this element's default value creation
echo 'class.preferences: create_email_preferences: set_proc ERROR: ' . serialize ( $set_proc ) . '<br>' ;
2001-11-12 22:44:31 +01:00
}
}
2008-03-15 16:11:48 +01:00
else
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
// we have a value in the database, do we need to prepare it in any way?
// (the following discussion is unconfirmed:)
// DO NOT ALTER the data in the prefs array!!!! or the next time we call
// save_repository withOUT undoing what we might do here, the
// prefs will permenantly LOOSE the very thing(s) we are un-doing
/// here until the next OFFICIAL submit email prefs function, where it
// will again get this preparation before being written to the database.
2009-10-06 08:45:28 +02:00
// NOTE: if database de-fanging is eventually handled deeper in the
// preferences class, then the following code would become depreciated
2008-03-15 16:11:48 +01:00
// and should be removed in that case.
if (( $this_avail_pref [ 'type' ] == 'user_string' ) &&
( stristr ( $this_avail_pref [ 'write_props' ], 'no_db_defang' ) == False ))
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
// this value was "de-fanged" before putting it in the database
// undo that defanging now
$db_unfriendly = $email_base -> html_quotes_decode ( $prefs [ 'email' ][ $this_avail_pref [ 'id' ]]);
$prefs [ 'email' ][ $this_avail_pref [ 'id' ]] = $db_unfriendly ;
2001-11-12 22:44:31 +01:00
}
2001-12-24 05:53:07 +01:00
}
2008-03-15 16:11:48 +01:00
}
// users preferences are now established to known structured values...
2009-10-06 08:45:28 +02:00
// SANITY CHECK
2008-03-15 16:11:48 +01:00
// --- [email][use_trash_folder] ---
// --- [email][use_sent_folder] ---
// is it possible to use Trash and Sent folders - i.e. using IMAP server
// if not - force settings to false
if ( stristr ( $prefs [ 'email' ][ 'mail_server_type' ], 'imap' ) == False )
{
if ( isset ( $prefs [ 'email' ][ 'use_trash_folder' ]))
2001-12-17 19:37:59 +01:00
{
2008-03-15 16:11:48 +01:00
unset ( $prefs [ 'email' ][ 'use_trash_folder' ]);
2001-12-17 19:37:59 +01:00
}
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
if ( isset ( $prefs [ 'email' ][ 'use_sent_folder' ]))
2001-11-12 22:44:31 +01:00
{
2008-03-15 16:11:48 +01:00
unset ( $prefs [ 'email' ][ 'use_sent_folder' ]);
2001-11-12 22:44:31 +01:00
}
2008-03-15 16:11:48 +01:00
}
2001-12-24 05:53:07 +01:00
2008-03-15 16:11:48 +01:00
// DEBUG : force some settings to test stuff
//$prefs['email']['p_persistent'] = 'True';
2009-10-06 08:45:28 +02:00
2008-03-15 16:11:48 +01:00
print_debug ( 'class.preferences: $acctnum: [' . $acctnum . '] ; create_email_preferences: $prefs[email]' , $prefs [ 'email' ], 'api' );
print_debug ( 'class.preferences: create_email_preferences: LEAVING' , 'messageonly' , 'api' );
return $prefs ;
}
}