Merging in the tassium-auth branch.
[squirrelmail.git] / functions / global.php
CommitLineData
61d9ec71 1<?php
2
3/**
4 * globals.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 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
61d9ec71 11 * php versions.
12 *
242342d0 13 * $Id$
61d9ec71 14 */
15
16
17/* convert old-style superglobals to current method
18 * this is executed if you are running PHP 4.0.x.
19 * it is run via a require_once directive in validate.php
20 * and redirect.php. Patch submitted by Ray Black.
21 */
22
9697c5ab 23if ( !check_php_version(4,1) ) {
61d9ec71 24 global $_COOKIE, $_ENV, $_FILES, $_GET, $_POST, $_SERVER, $_SESSION;
25 global $HTTP_COOKIE_VARS, $HTTP_ENV_VARS, $HTTP_POST_FILES, $HTTP_GET_VARS,
26 $HTTP_POST_VARS, $HTTP_SERVER_VARS, $HTTP_SESSION_VARS;
27 $_COOKIE =& $HTTP_COOKIE_VARS;
28 $_ENV =& $HTTP_ENV_VARS;
29 $_FILES =& $HTTP_POST_FILES;
30 $_GET =& $HTTP_GET_VARS;
31 $_POST =& $HTTP_POST_VARS;
32 $_SERVER =& $HTTP_SERVER_VARS;
33 $_SESSION =& $HTTP_SESSION_VARS;
34}
35
180239ca 36/* if running with magic_quotes_gpc then strip the slashes
a32985a5 37 from POST and GET global arrays */
38
39if (get_magic_quotes_gpc()) {
180239ca 40 sqstripslashes($_GET);
41 sqstripslashes($_POST);
a32985a5 42}
43
44/* strip any tags added to the url from PHP_SELF.
45 This fixes hand crafted url XXS expoits for any
46 page that uses PHP_SELF as the FORM action */
47
48strip_tags($_SERVER['PHP_SELF']);
49
9697c5ab 50/* returns true if current php version is at mimimum a.b.c */
51function check_php_version ($a = '0', $b = '0', $c = '0')
52{
53 global $SQ_PHP_VERSION;
54
55 if(!isset($SQ_PHP_VERSION))
56 $SQ_PHP_VERSION = str_pad( preg_replace('/\D/','', PHP_VERSION), 3, '0');
57
58 return $SQ_PHP_VERSION >= ($a.$b.$c);
59}
60
a32985a5 61function sqstripslashes(&$array) {
62 foreach ($array as $index=>$value) {
9697c5ab 63 if (is_array($array[$index])) {
64 sqstripslashes($array[$index]);
a32985a5 65 }
66 else {
9697c5ab 67 $array[$index] = stripslashes($value);
a32985a5 68 }
69 }
70}
71
61d9ec71 72function sqsession_register ($var, $name) {
9697c5ab 73 if ( !check_php_version(4,1) ) {
61d9ec71 74 global $HTTP_SESSION_VARS;
9697c5ab 75 $HTTP_SESSION_VARS[$name] = $var;
61d9ec71 76 }
77 else {
d7c82551 78 $_SESSION["$name"] = $var;
61d9ec71 79 }
80}
81function sqsession_unregister ($name) {
9697c5ab 82 if ( !check_php_version(4,1) ) {
d7c82551 83 global $HTTP_SESSION_VARS;
9697c5ab 84 unset($HTTP_SESSION_VARS[$name]);
61d9ec71 85 }
86 else {
9697c5ab 87 unset($_SESSION[$name]);
61d9ec71 88 }
89}
d7c82551 90function sqsession_is_registered ($name) {
91 $test_name = &$name;
92 $result = false;
9697c5ab 93 if ( !check_php_version(4,1) ) {
d7c82551 94 global $HTTP_SESSION_VARS;
95 if (isset($HTTP_SESSION_VARS[$test_name])) {
96 $result = true;
97 }
98 }
99 else {
100 if (isset($_SESSION[$test_name])) {
101 $result = true;
102 }
103 }
104 return $result;
105}
106
61d9ec71 107
108/**
109 * Search for the var $name in $_SESSION, $_POST, $_GET
110 * (in that order) and register it as a global var.
111 */
112function sqextractGlobalVar ($name) {
9697c5ab 113 if ( !check_php_version(4,1) ) {
a32985a5 114 global $_SESSION, $_GET, $_POST;
115 }
116 global $$name;
61d9ec71 117 if( isset($_SESSION[$name]) ) {
118 $$name = $_SESSION[$name];
119 }
120 if( isset($_POST[$name]) ) {
121 $$name = $_POST[$name];
122 }
123 else if ( isset($_GET[$name]) ) {
124 $$name = $_GET[$name];
125 }
126}
513db22c 127
128function sqsession_destroy() {
242342d0 129 global $base_uri;
130
131 /* start session to be able to destroy it later */
132 session_start();
133
9697c5ab 134 if ( !check_php_version(4,1) ) {
242342d0 135 global $HTTP_SESSION_VARS;
136 $HTTP_SESSION_VARS = array();
137 }
138 else {
139 $_SESSION = array();
140 }
141
142 /*
143 * now reset cookies to 5 seconds ago to delete from browser
144 */
145
146 @session_destroy();
147 $cookie_params = session_get_cookie_params();
148 setcookie(session_name(), '', time() - 5, $cookie_params['path'],
149 $cookie_params['domain']);
150 setcookie('username', '', time() - 5, $base_uri);
151 setcookie('key', '', time() - 5 , $base_uri);
513db22c 152}
153
61d9ec71 154?>