Some IMAP servers handle empty bodies different. NIL is a valid response for the...
[squirrelmail.git] / plugins / administrator / auth.php
CommitLineData
7004cc32 1<?php
4b4abf93 2
ea5f4b8e 3/**
fb579f0b 4 * Administrator plugin - Authentication routines
5 *
6 * This function tell other modules what users have access
7 * to the plugin.
8 *
fb579f0b 9 * @author Philippe Mingo
4b5049de 10 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
fb579f0b 11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
4b4abf93 12 * @version $Id$
ea5f4b8e 13 * @package plugins
14 * @subpackage administrator
2d977280 15 */
7004cc32 16
ea5f4b8e 17/**
0df03ce7 18 * Check if user has access to administrative functions
19 *
20 * @return boolean
0df03ce7 21 */
52a6105d 22function adm_check_user() {
a6f162eb 23 global $plugins;
91e0dccc 24
4c80d233 25 /* fail if the plugin is not enabled */
26 if ( !in_array('administrator', $plugins) ) {
27 return FALSE;
28 }
29
4cd8ae7d 30 if ( !sqgetGlobalVar('username',$username,SQ_SESSION) ) {
31 $username = '';
32 }
33
a28a56da 34 /* This needs to be first, for all non_options pages */
ef25b1cf 35 if (defined('PAGE_NAME') && PAGE_NAME=='administrator_options') {
71bf4974 36 $auth = FALSE;
52a6105d 37 } else if (file_exists(SM_PATH . 'plugins/administrator/admins')) {
38 $auths = file(SM_PATH . 'plugins/administrator/admins');
0a577181 39 array_walk($auths, 'adm_array_trim');
daa192a8 40 $auth = in_array($username, $auths);
52a6105d 41 } else if (file_exists(SM_PATH . 'config/admins')) {
42 $auths = file(SM_PATH . 'config/admins');
0a577181 43 array_walk($auths, 'adm_array_trim');
daa192a8 44 $auth = in_array($username, $auths);
ec4584f9 45 } else if (($adm_id = fileowner(SM_PATH . 'config/config.php')) &&
a9ccc40c 46 function_exists('posix_getpwuid')) {
7004cc32 47 $adm = posix_getpwuid( $adm_id );
52a6105d 48 $auth = ($username == $adm['name']);
49 } else {
a82293f6 50 $auth = FALSE;
51 }
7004cc32 52
52a6105d 53 return ($auth);
7004cc32 54}
55
0a577181 56/**
57 * Removes whitespace from array values
58 * @param string $value array value that has to be trimmed
59 * @param string $key array key
63ed9ceb 60 * @since 1.5.1 and 1.4.5
61 * @access private
0a577181 62 */
63function adm_array_trim(&$value,$key) {
64 $value=trim($value);
65}