75b919c3fa72bc844a801d2d7568f4ebfd5ee6bb
[squirrelmail.git] / functions / file_prefs.php
1 <?php
2
3 /**
4 * file_prefs.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains functions for manipulating user preferences in files
10 *
11 * $Id$
12 */
13
14 /**
15 * Check the preferences into the session cache.
16 */
17 function cachePrefValues($data_dir, $username) {
18 global $prefs_are_cached, $prefs_cache;
19
20 if ( isset($prefs_are_cached) && $prefs_are_cached) {
21 return;
22 }
23
24 sqsession_unregister('prefs_cache');
25 sqsession_unregister('prefs_are_cached');
26
27 /* Calculate the filename for the user's preference file */
28 $filename = getHashedFile($username, $data_dir, "$username.pref");
29
30 /* A call to checkForPrefs here should take eliminate the need for */
31 /* this to be called throughout the rest of the SquirrelMail code. */
32 checkForPrefs($data_dir, $username, $filename);
33
34 /* Make sure that the preference file now DOES exist. */
35 if (!file_exists($filename)) {
36 include_once(SM_PATH . 'functions/display_messages.php');
37 logout_error( sprintf( _("Preference file, %s, does not exist. Log out, and log back in to create a default preference file."), $filename) );
38 exit;
39 }
40
41 /* Open the file, or else display an error to the user. */
42 if(!$file = @fopen($filename, 'r'))
43 {
44 include_once(SM_PATH . 'functions/display_messages.php');
45 logout_error( sprintf( _("Preference file, %s, could not be opened. Contact your system administrator to resolve this issue."), $filename) );
46 exit;
47 }
48
49 /* Read in the preferences. */
50 $highlight_num = 0;
51 while (! feof($file)) {
52 $pref = '';
53 /* keep reading a pref until we reach an eol (\n (or \r for macs)) */
54 while($read = fgets($file, 1024))
55 {
56 $pref .= $read;
57 if(strpos($read,"\n") || strpos($read,"\r"))
58 break;
59 }
60 $pref = trim($pref);
61 $equalsAt = strpos($pref, '=');
62 if ($equalsAt > 0) {
63 $key = substr($pref, 0, $equalsAt);
64 $value = substr($pref, $equalsAt + 1);
65 /* this is to 'rescue' old-style highlighting rules. */
66 if (substr($key, 0, 9) == 'highlight') {
67 $key = 'highlight' . $highlight_num;
68 $highlight_num ++;
69 }
70
71 if ($value != '') {
72 $prefs_cache[$key] = $value;
73 }
74 }
75 }
76 fclose($file);
77
78 $prefs_are_cached = TRUE;
79
80 sqsession_register($prefs_cache, 'prefs_cache');
81 sqsession_register($prefs_are_cached, 'prefs_are_cached');
82 }
83
84 /**
85 * Return the value for the prefernce given by $string.
86 */
87 function getPref($data_dir, $username, $string, $default = '') {
88 global $prefs_cache;
89
90 $result = do_hook_function('get_pref_override',array($username,$string));
91 if (!$result) {
92 cachePrefValues($data_dir, $username);
93 if (isset($prefs_cache[$string])) {
94 $result = $prefs_cache[$string];
95 } else {
96 $result = do_hook_function('get_pref', array($username,$string));
97 if (!$result) {
98 $result = $default;
99 }
100 }
101 }
102 return ($result);
103 }
104
105 /**
106 * Save the preferences for this user.
107 */
108 function savePrefValues($data_dir, $username) {
109 global $prefs_cache;
110
111 $filename = getHashedFile($username, $data_dir, "$username.pref");
112
113 /* Open the file for writing, or else display an error to the user. */
114 if(!$file = @fopen($filename.'.tmp', 'w'))
115 {
116 include_once(SM_PATH . 'functions/display_messages.php');
117 logout_error( sprintf( _("Preference file, %s, could not be opened. Contact your system administrator to resolve this issue."), $filename.'.tmp') );
118 exit;
119 }
120 foreach ($prefs_cache as $Key => $Value) {
121 if (isset($Value)) {
122 $tmpwrite = @fwrite($file, $Key . '=' . $Value . "\n");
123 if ($tmpwrite == -1) {
124 logout_error( sprintf( _("Preference file, %s, could not be written. Contact your system administrator to resolve this issue.") , $filename . '.tmp') );
125 exit;
126 }
127 }
128 }
129 fclose($file);
130 @copy($filename . '.tmp',$filename);
131 @unlink($filename . '.tmp');
132 chmod($filename, 0600);
133 }
134
135 /**
136 * Remove a preference for the current user.
137 */
138 function removePref($data_dir, $username, $string) {
139 global $prefs_cache;
140
141 cachePrefValues($data_dir, $username);
142
143 if (isset($prefs_cache[$string])) {
144 unset($prefs_cache[$string]);
145 }
146
147 savePrefValues($data_dir, $username);
148 }
149
150 /**
151 * Set a there preference $string to $value.
152 */
153 function setPref($data_dir, $username, $string, $value) {
154 global $prefs_cache;
155
156 cachePrefValues($data_dir, $username);
157 if (isset($prefs_cache[$string]) && ($prefs_cache[$string] == $value)) {
158 return;
159 }
160
161 if ($value === '') {
162 removePref($data_dir, $username, $string);
163 return;
164 }
165
166 $prefs_cache[$string] = $value;
167 savePrefValues($data_dir, $username);
168 }
169
170 /**
171 * Check for a preferences file. If one can not be found, create it.
172 */
173 function checkForPrefs($data_dir, $username, $filename = '') {
174 /* First, make sure we have the filename. */
175 if ($filename == '') {
176 $filename = getHashedFile($username, $data_dir, "$username.pref");
177 }
178
179 /* Then, check if the file exists. */
180 if (!@file_exists($filename) ) {
181 /* First, check the $data_dir for the default preference file. */
182 $default_pref = $data_dir . 'default_pref';
183
184 /* If it is not there, check the internal data directory. */
185 if (!@file_exists($default_pref)) {
186 $default_pref = SM_PATH . 'data/default_pref';
187 }
188
189 /* Otherwise, report an error. */
190 $errTitle = sprintf( _("Error opening %s"), $default_pref );
191 if (!is_readable($default_pref)) {
192 $errString = $errTitle . "<br>\n" .
193 _("Default preference file not found or not readable!") . "<br>\n" .
194 _("Please contact your system administrator and report this error.") . "<br>\n";
195 include_once(SM_PATH . 'functions/display_messages.php' );
196 logout_error( $errString, $errTitle );
197 exit;
198 } else if (!@copy($default_pref, $filename)) {
199 $uid = 'httpd';
200 if (function_exists('posix_getuid')){
201 $user_data = posix_getpwuid(posix_getuid());
202 $uid = $user_data['name'];
203 }
204 $errString = $errTitle . '<br>' .
205 _("Could not create initial preference file!") . "<br>\n" .
206 sprintf( _("%s should be writable by user %s"), $data_dir, $uid ) .
207 "<br>\n" . _("Please contact your system administrator and report this error.") . "<br>\n";
208 include_once(SM_PATH . 'functions/display_messages.php' );
209 logout_error( $errString, $errTitle );
210 exit;
211 }
212 }
213 }
214
215 /**
216 * Write the User Signature.
217 */
218 function setSig($data_dir, $username, $number, $value) {
219 $filename = getHashedFile($username, $data_dir, "$username.si$number");
220 /* Open the file for writing, or else display an error to the user. */
221 if(!$file = @fopen("$filename.tmp", 'w')) {
222 include_once( '../functions/display_messages.php' );
223 logout_error( sprintf( _("Signature file, %s, could not be opened. Contact your system administrator to resolve this issue."), $filename . '.tmp') );
224 exit;
225 }
226 $tmpwrite = @fwrite($file, $value);
227 if ($tmpwrite == -1) {
228 include_once( '../functions/display_messages.php' );
229 logout_error( sprintf( _("Signature file, %s, could not be written. Contact your system administrator to resolve this issue.") , $filename . '.tmp'));
230 exit;
231 }
232 fclose($file);
233 @copy($filename . '.tmp',$filename);
234 @unlink($filename . '.tmp');
235 chmod($filename, 0600);
236
237 }
238
239 /**
240 * Get the signature.
241 */
242 function getSig($data_dir, $username, $number) {
243 $filename = getHashedFile($username, $data_dir, "$username.si$number");
244 $sig = '';
245 if (file_exists($filename)) {
246 /* Open the file, or else display an error to the user. */
247 if(!$file = @fopen($filename, 'r'))
248 {
249 include_once(SM_PATH . 'functions/display_messages.php');
250 logout_error( sprintf( _("Signature file, %s, could not be opened. Contact your system administrator to resolve this issue."), $filename) );
251 exit;
252 }
253 while (!feof($file)) {
254 $sig .= fgets($file, 1024);
255 }
256 fclose($file);
257 }
258 return $sig;
259 }