moving to documentation module
[squirrelmail.git] / functions / global.php
CommitLineData
61d9ec71 1<?php
2
3/**
0c701a88 4 * global.php
61d9ec71 5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
61d9ec71 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
62f7daa5 9 * This includes code to update < 4.1.0 globals to the newer format
242342d0 10 * It also has some session register functions that work across various
62f7daa5 11 * php versions.
61d9ec71 12 *
31841a9e 13 * @version $Id$
d6c32258 14 * @package squirrelmail
61d9ec71 15 */
16
ebabf3f5 17
d6c32258 18/** set the name of the session cookie */
62f7daa5 19if(isset($session_name) && $session_name) {
20 ini_set('session.name' , $session_name);
21} else {
22 ini_set('session.name' , 'SQMSESSID');
ebabf3f5 23}
24
051f6245 25/**
26 * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
27 * Force magic_quotes_runtime off.
28 * tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
29 * If there's a better place, please let me know.
388c855c 30 */
5f660901 31ini_set('magic_quotes_runtime','0');
61d9ec71 32
2ca4c65a 33/* Since we decided all IMAP servers must implement the UID command as defined in
34 * the IMAP RFC, we force $uid_support to be on.
35 */
36
37global $uid_support;
38$uid_support = true;
39
d416901b 40sqsession_is_active();
41
180239ca 42/* if running with magic_quotes_gpc then strip the slashes
a32985a5 43 from POST and GET global arrays */
44
45if (get_magic_quotes_gpc()) {
180239ca 46 sqstripslashes($_GET);
47 sqstripslashes($_POST);
a32985a5 48}
49
50/* strip any tags added to the url from PHP_SELF.
51 This fixes hand crafted url XXS expoits for any
52 page that uses PHP_SELF as the FORM action */
53
388c855c 54$_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
a32985a5 55
62f7daa5 56/**
57 * returns true if current php version is at mimimum a.b.c
58 *
97bdc607 59 * Called: check_php_version(4,1)
8b096f0a 60 * @param int a major version number
61 * @param int b minor version number
62 * @param int c release number
63 * @return bool
97bdc607 64 */
62f7daa5 65function check_php_version ($a = '0', $b = '0', $c = '0')
9697c5ab 66{
5673cabe 67 return version_compare ( PHP_VERSION, "$a.$b.$c", 'ge' );
9697c5ab 68}
69
97bdc607 70/**
62f7daa5 71 * returns true if the current internal SM version is at minimum a.b.c
72 * These are plain integer comparisons, as our internal version is
97bdc607 73 * constructed by us, as an array of 3 ints.
74 *
75 * Called: check_sm_version(1,3,3)
8b096f0a 76 * @param int a major version number
77 * @param int b minor version number
78 * @param int c release number
79 * @return bool
97bdc607 80 */
81function check_sm_version($a = 0, $b = 0, $c = 0)
82{
83 global $SQM_INTERNAL_VERSION;
84 if ( !isset($SQM_INTERNAL_VERSION) ||
85 $SQM_INTERNAL_VERSION[0] < $a ||
150c28d6 86 ( $SQM_INTERNAL_VERSION[0] == $a &&
87 $SQM_INTERNAL_VERSION[1] < $b) ||
88 ( $SQM_INTERNAL_VERSION[0] == $a &&
89 $SQM_INTERNAL_VERSION[1] == $b &&
97bdc607 90 $SQM_INTERNAL_VERSION[2] < $c ) ) {
91 return FALSE;
62f7daa5 92 }
93 return TRUE;
97bdc607 94}
95
96
8b096f0a 97/**
98 * Recursively strip slashes from the values of an array.
99 * @param array array the array to strip, passed by reference
100 * @return void
101 */
a32985a5 102function sqstripslashes(&$array) {
3aa17cf9 103 if(count($array) > 0) {
104 foreach ($array as $index=>$value) {
105 if (is_array($array[$index])) {
106 sqstripslashes($array[$index]);
107 }
108 else {
109 $array[$index] = stripslashes($value);
110 }
a32985a5 111 }
112 }
113}
114
8b096f0a 115/**
116 * Add a variable to the session.
117 * @param mixed $var the variable to register
118 * @param string $name the name to refer to this variable
119 * @return void
120 */
61d9ec71 121function sqsession_register ($var, $name) {
281c3d5b 122
123 sqsession_is_active();
124
62f7daa5 125 $_SESSION["$name"] = $var;
126
dcc1cc82 127 session_register("$name");
61d9ec71 128}
3aa17cf9 129
8b096f0a 130/**
131 * Delete a variable from the session.
132 * @param string $name the name of the var to delete
133 * @return void
134 */
61d9ec71 135function sqsession_unregister ($name) {
281c3d5b 136
137 sqsession_is_active();
138
abd74f7d 139 unset($_SESSION[$name]);
62f7daa5 140
dcc1cc82 141 session_unregister("$name");
61d9ec71 142}
3aa17cf9 143
8b096f0a 144/**
145 * Checks to see if a variable has already been registered
146 * in the session.
147 * @param string $name the name of the var to check
148 * @return bool whether the var has been registered
149 */
d7c82551 150function sqsession_is_registered ($name) {
151 $test_name = &$name;
152 $result = false;
62f7daa5 153
abd74f7d 154 if (isset($_SESSION[$test_name])) {
155 $result = true;
d7c82551 156 }
62f7daa5 157
d7c82551 158 return $result;
159}
160
61d9ec71 161
4cd8ae7d 162define('SQ_INORDER',0);
163define('SQ_GET',1);
164define('SQ_POST',2);
165define('SQ_SESSION',3);
27d0841c 166define('SQ_COOKIE',4);
167define('SQ_SERVER',5);
d9ad2525 168define('SQ_FORM',6);
4cd8ae7d 169
170/**
27d0841c 171 * Search for the var $name in $_SESSION, $_POST, $_GET,
62f7daa5 172 * $_COOKIE, or $_SERVER and set it in provided var.
d1975c5b 173 *
4cd8ae7d 174 * If $search is not provided, or == SQ_INORDER, it will search
175 * $_SESSION, then $_POST, then $_GET. Otherwise,
62f7daa5 176 * use one of the defined constants to look for
4cd8ae7d 177 * a var in one place specifically.
d1975c5b 178 *
62f7daa5 179 * Note: $search is an int value equal to one of the
d1975c5b 180 * constants defined above.
181 *
182 * example:
183 * sqgetGlobalVar('username',$username,SQ_SESSION);
184 * -- no quotes around last param!
185 *
8b096f0a 186 * @param string name the name of the var to search
187 * @param mixed value the variable to return
188 * @param int search constant defining where to look
189 * @return bool whether variable is found.
4cd8ae7d 190 */
191function sqgetGlobalVar($name, &$value, $search = SQ_INORDER) {
f79c19a4 192
d1975c5b 193 /* NOTE: DO NOT enclose the constants in the switch
194 statement with quotes. They are constant values,
195 enclosing them in quotes will cause them to evaluate
196 as strings. */
4cd8ae7d 197 switch ($search) {
62f7daa5 198 /* we want the default case to be first here,
051f6245 199 so that if a valid value isn't specified,
200 all three arrays will be searched. */
d1975c5b 201 default:
d9ad2525 202 case SQ_INORDER: // check session, post, get
d1975c5b 203 case SQ_SESSION:
204 if( isset($_SESSION[$name]) ) {
4cd8ae7d 205 $value = $_SESSION[$name];
d1975c5b 206 return TRUE;
207 } elseif ( $search == SQ_SESSION ) {
208 break;
209 }
d9ad2525 210 case SQ_FORM: // check post, get
d1975c5b 211 case SQ_POST:
212 if( isset($_POST[$name]) ) {
4cd8ae7d 213 $value = $_POST[$name];
d1975c5b 214 return TRUE;
215 } elseif ( $search == SQ_POST ) {
27d0841c 216 break;
d1975c5b 217 }
218 case SQ_GET:
219 if ( isset($_GET[$name]) ) {
220 $value = $_GET[$name];
221 return TRUE;
62f7daa5 222 }
d1975c5b 223 /* NO IF HERE. FOR SQ_INORDER CASE, EXIT after GET */
224 break;
225 case SQ_COOKIE:
226 if ( isset($_COOKIE[$name]) ) {
227 $value = $_COOKIE[$name];
62f7daa5 228 return TRUE;
d1975c5b 229 }
230 break;
231 case SQ_SERVER:
d1975c5b 232 if ( isset($_SERVER[$name]) ) {
233 $value = $_SERVER[$name];
234 return TRUE;
235 }
236 break;
4cd8ae7d 237 }
511f5c33 238 /* Nothing found, return FALSE */
4cd8ae7d 239 return FALSE;
240}
241
8b096f0a 242/**
243 * Deletes an existing session, more advanced than the standard PHP
244 * session_destroy(), it explicitly deletes the cookies and global vars.
245 */
513db22c 246function sqsession_destroy() {
242342d0 247
281c3d5b 248 /*
249 * php.net says we can kill the cookie by setting just the name:
250 * http://www.php.net/manual/en/function.setcookie.php
251 * maybe this will help fix the session merging again.
252 *
253 * Changed the theory on this to kill the cookies first starting
254 * a new session will provide a new session for all instances of
255 * the browser, we don't want that, as that is what is causing the
256 * merging of sessions.
257 */
242342d0 258
f9902ccb 259 global $base_uri;
f31687f6 260
261 if (isset($_COOKIE[session_name()])) setcookie(session_name(), '', time() - 5, $base_uri);
262 if (isset($_COOKIE['username'])) setcookie('username','',time() - 5,$base_uri);
263 if (isset($_COOKIE['key'])) setcookie('key','',time() - 5,$base_uri);
281c3d5b 264
265 $sessid = session_id();
266 if (!empty( $sessid )) {
abd74f7d 267 $_SESSION = array();
21e18f59 268 @session_destroy();
242342d0 269 }
270
281c3d5b 271}
242342d0 272
8b096f0a 273/**
281c3d5b 274 * Function to verify a session has been started. If it hasn't
275 * start a session up. php.net doesn't tell you that $_SESSION
276 * (even though autoglobal), is not created unless a session is
277 * started, unlike $_POST, $_GET and such
278 */
279
280function sqsession_is_active() {
62f7daa5 281
281c3d5b 282 $sessid = session_id();
283 if ( empty( $sessid ) ) {
284 session_start();
285 }
513db22c 286}
287
5673cabe 288// vim: et ts=4
f8a1ed5a 289?>