5
* @version $Id: index.php,v 1.74 2007/12/12 16:45:58 acydburn Exp $
6
* @copyright (c) 2005 phpBB Group
7
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
13
define('IN_PHPBB', true);
14
define('ADMIN_START', true);
15
define('NEED_SID', true);
18
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
19
$phpEx = substr(strrchr(__FILE__, '.'), 1);
20
require($phpbb_root_path . 'common.' . $phpEx);
21
require($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
22
require($phpbb_root_path . 'includes/functions_module.' . $phpEx);
24
// Start session management
25
$user->session_begin();
26
$auth->acl($user->data);
27
$user->setup('acp/common');
28
// End session management
30
// Have they authenticated (again) as an admin for this session?
31
if (!isset($user->data['session_admin']) || !$user->data['session_admin'])
33
login_box('', $user->lang['LOGIN_ADMIN_CONFIRM'], $user->lang['LOGIN_ADMIN_SUCCESS'], true, false);
36
// Is user any type of admin? No, then stop here, each script needs to
37
// check specific permissions but this is a catchall
38
if (!$auth->acl_get('a_'))
40
trigger_error('NO_ADMIN');
43
// We define the admin variables now, because the user is now able to use the admin related features...
44
define('IN_ADMIN', true);
45
$phpbb_admin_path = (defined('PHPBB_ADMIN_PATH')) ? PHPBB_ADMIN_PATH : './';
47
// Some oft used variables
48
$safe_mode = (@ini_get('safe_mode') || @strtolower(ini_get('safe_mode')) == 'on') ? true : false;
49
$file_uploads = (@ini_get('file_uploads') || strtolower(@ini_get('file_uploads')) == 'on') ? true : false;
50
$module_id = request_var('i', '');
51
$mode = request_var('mode', '');
53
// Set custom template for admin area
54
$template->set_custom_template($phpbb_admin_path . 'style', 'admin');
55
$template->assign_var('T_TEMPLATE_PATH', $phpbb_admin_path . 'style');
57
// the acp template is never stored in the database
58
$user->theme['template_storedb'] = false;
60
// Instantiate new module
61
$module = new p_master();
63
// Instantiate module system and generate list of available modules
64
$module->list_modules('acp');
66
// Select the active module
67
$module->set_active($module_id, $mode);
69
// Assign data to the template engine for the list of modules
70
// We do this before loading the active module for correct menu display in trigger_error
71
$module->assign_tpl_vars(append_sid("{$phpbb_admin_path}index.$phpEx"));
73
// Load and execute the relevant module
74
$module->load_active();
77
adm_page_header($module->get_page_title());
79
$template->set_filenames(array(
80
'body' => $module->get_tpl_name(),
86
* Header for acp pages
88
function adm_page_header($page_title)
90
global $config, $db, $user, $template;
91
global $phpbb_root_path, $phpbb_admin_path, $phpEx, $SID, $_SID;
93
if (defined('HEADER_INC'))
98
define('HEADER_INC', true);
101
if ($config['gzip_compress'])
103
if (@extension_loaded('zlib') && !headers_sent())
105
ob_start('ob_gzhandler');
109
$template->assign_vars(array(
110
'PAGE_TITLE' => $page_title,
111
'USERNAME' => $user->data['username'],
115
'SESSION_ID' => $user->session_id,
116
'ROOT_PATH' => $phpbb_admin_path,
118
'U_LOGOUT' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=logout'),
119
'U_ADM_INDEX' => append_sid("{$phpbb_admin_path}index.$phpEx"),
120
'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"),
122
'T_IMAGES_PATH' => "{$phpbb_root_path}images/",
123
'T_SMILIES_PATH' => "{$phpbb_root_path}{$config['smilies_path']}/",
124
'T_AVATAR_PATH' => "{$phpbb_root_path}{$config['avatar_path']}/",
125
'T_AVATAR_GALLERY_PATH' => "{$phpbb_root_path}{$config['avatar_gallery_path']}/",
126
'T_ICONS_PATH' => "{$phpbb_root_path}{$config['icons_path']}/",
127
'T_RANKS_PATH' => "{$phpbb_root_path}{$config['ranks_path']}/",
128
'T_UPLOAD_PATH' => "{$phpbb_root_path}{$config['upload_path']}/",
130
'ICON_MOVE_UP' => '<img src="' . $phpbb_admin_path . 'images/icon_up.gif" alt="' . $user->lang['MOVE_UP'] . '" title="' . $user->lang['MOVE_UP'] . '" />',
131
'ICON_MOVE_UP_DISABLED' => '<img src="' . $phpbb_admin_path . 'images/icon_up_disabled.gif" alt="' . $user->lang['MOVE_UP'] . '" title="' . $user->lang['MOVE_UP'] . '" />',
132
'ICON_MOVE_DOWN' => '<img src="' . $phpbb_admin_path . 'images/icon_down.gif" alt="' . $user->lang['MOVE_DOWN'] . '" title="' . $user->lang['MOVE_DOWN'] . '" />',
133
'ICON_MOVE_DOWN_DISABLED' => '<img src="' . $phpbb_admin_path . 'images/icon_down_disabled.gif" alt="' . $user->lang['MOVE_DOWN'] . '" title="' . $user->lang['MOVE_DOWN'] . '" />',
134
'ICON_EDIT' => '<img src="' . $phpbb_admin_path . 'images/icon_edit.gif" alt="' . $user->lang['EDIT'] . '" title="' . $user->lang['EDIT'] . '" />',
135
'ICON_EDIT_DISABLED' => '<img src="' . $phpbb_admin_path . 'images/icon_edit_disabled.gif" alt="' . $user->lang['EDIT'] . '" title="' . $user->lang['EDIT'] . '" />',
136
'ICON_DELETE' => '<img src="' . $phpbb_admin_path . 'images/icon_delete.gif" alt="' . $user->lang['DELETE'] . '" title="' . $user->lang['DELETE'] . '" />',
137
'ICON_DELETE_DISABLED' => '<img src="' . $phpbb_admin_path . 'images/icon_delete_disabled.gif" alt="' . $user->lang['DELETE'] . '" title="' . $user->lang['DELETE'] . '" />',
138
'ICON_SYNC' => '<img src="' . $phpbb_admin_path . 'images/icon_sync.gif" alt="' . $user->lang['RESYNC'] . '" title="' . $user->lang['RESYNC'] . '" />',
139
'ICON_SYNC_DISABLED' => '<img src="' . $phpbb_admin_path . 'images/icon_sync_disabled.gif" alt="' . $user->lang['RESYNC'] . '" title="' . $user->lang['RESYNC'] . '" />',
141
'S_USER_LANG' => $user->lang['USER_LANG'],
142
'S_CONTENT_DIRECTION' => $user->lang['DIRECTION'],
143
'S_CONTENT_ENCODING' => 'UTF-8',
144
'S_CONTENT_FLOW_BEGIN' => ($user->lang['DIRECTION'] == 'ltr') ? 'left' : 'right',
145
'S_CONTENT_FLOW_END' => ($user->lang['DIRECTION'] == 'ltr') ? 'right' : 'left',
148
// application/xhtml+xml not used because of IE
149
header('Content-type: text/html; charset=UTF-8');
151
header('Cache-Control: private, no-cache="set-cookie"');
152
header('Expires: 0');
153
header('Pragma: no-cache');
159
* Page footer for acp pages
161
function adm_page_footer($copyright_html = true)
163
global $db, $config, $template, $user, $auth, $cache;
164
global $starttime, $phpbb_root_path, $phpbb_admin_path, $phpEx;
166
// Output page creation time
167
if (defined('DEBUG'))
169
$mtime = explode(' ', microtime());
170
$totaltime = $mtime[0] + $mtime[1] - $starttime;
172
if (!empty($_REQUEST['explain']) && $auth->acl_get('a_') && defined('DEBUG_EXTRA') && method_exists($db, 'sql_report'))
174
$db->sql_report('display');
177
$debug_output = sprintf('Time : %.3fs | ' . $db->sql_num_queries() . ' Queries | GZIP : ' . (($config['gzip_compress']) ? 'On' : 'Off') . (($user->load) ? ' | Load : ' . $user->load : ''), $totaltime);
179
if ($auth->acl_get('a_') && defined('DEBUG_EXTRA'))
181
if (function_exists('memory_get_usage'))
183
if ($memory_usage = memory_get_usage())
185
global $base_memory_usage;
186
$memory_usage -= $base_memory_usage;
187
$memory_usage = ($memory_usage >= 1048576) ? round((round($memory_usage / 1048576 * 100) / 100), 2) . ' ' . $user->lang['MB'] : (($memory_usage >= 1024) ? round((round($memory_usage / 1024 * 100) / 100), 2) . ' ' . $user->lang['KB'] : $memory_usage . ' ' . $user->lang['BYTES']);
189
$debug_output .= ' | Memory Usage: ' . $memory_usage;
193
$debug_output .= ' | <a href="' . build_url() . '&explain=1">Explain</a>';
197
$template->assign_vars(array(
198
'DEBUG_OUTPUT' => (defined('DEBUG')) ? $debug_output : '',
199
'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '',
200
'S_COPYRIGHT_HTML' => $copyright_html,
201
'VERSION' => $config['version'])
204
$template->display('body');
206
garbage_collection();
211
* Generate back link for acp pages
213
function adm_back_link($u_action)
216
return '<br /><br /><a href="' . $u_action . '">« ' . $user->lang['BACK_TO_PREV'] . '</a>';
220
* Build select field options in acp pages
222
function build_select($option_ary, $option_default = false)
227
foreach ($option_ary as $value => $title)
229
$selected = ($option_default !== false && $value == $option_default) ? ' selected="selected"' : '';
230
$html .= '<option value="' . $value . '"' . $selected . '>' . $user->lang[$title] . '</option>';
237
* Build radio fields in acp pages
239
function h_radio($name, &$input_ary, $input_default = false, $id = false, $key = false)
244
$id_assigned = false;
245
foreach ($input_ary as $value => $title)
247
$selected = ($input_default !== false && $value == $input_default) ? ' checked="checked"' : '';
248
$html .= '<label><input type="radio" name="' . $name . '"' . (($id && !$id_assigned) ? ' id="' . $id . '"' : '') . ' value="' . $value . '"' . $selected . (($key) ? ' accesskey="' . $key . '"' : '') . ' class="radio" /> ' . $user->lang[$title] . '</label>';
256
* Build configuration template for acp configuration pages
258
function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
260
global $user, $module;
263
$name = 'config[' . $config_key . ']';
265
switch ($tpl_type[0])
269
$size = (int) $tpl_type[1];
270
$maxlength = (int) $tpl_type[2];
272
$tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '" value="' . $new[$config_key] . '" />';
276
$size = (int) $tpl_type[1];
277
$maxlength = (int) $tpl_type[2];
279
$tpl = '<input id="' . $key . '" type="text"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="config[' . $config_key . '_width]" value="' . $new[$config_key . '_width'] . '" /> x <input type="text"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="config[' . $config_key . '_height]" value="' . $new[$config_key . '_height'] . '" />';
283
$rows = (int) $tpl_type[1];
284
$cols = (int) $tpl_type[2];
286
$tpl = '<textarea id="' . $key . '" name="' . $name . '" rows="' . $rows . '" cols="' . $cols . '">' . $new[$config_key] . '</textarea>';
290
$key_yes = ($new[$config_key]) ? ' checked="checked"' : '';
291
$key_no = (!$new[$config_key]) ? ' checked="checked"' : '';
293
$tpl_type_cond = explode('_', $tpl_type[1]);
294
$type_no = ($tpl_type_cond[0] == 'disabled' || $tpl_type_cond[0] == 'enabled') ? false : true;
296
$tpl_no = '<label><input type="radio" name="' . $name . '" value="0"' . $key_no . ' class="radio" /> ' . (($type_no) ? $user->lang['NO'] : $user->lang['DISABLED']) . '</label>';
297
$tpl_yes = '<label><input type="radio" id="' . $key . '" name="' . $name . '" value="1"' . $key_yes . ' class="radio" /> ' . (($type_no) ? $user->lang['YES'] : $user->lang['ENABLED']) . '</label>';
299
$tpl = ($tpl_type_cond[0] == 'yes' || $tpl_type_cond[0] == 'enabled') ? $tpl_yes . $tpl_no : $tpl_no . $tpl_yes;
307
if (isset($vars['method']))
309
$call = array($module->module, $vars['method']);
311
else if (isset($vars['function']))
313
$call = $vars['function'];
320
if (isset($vars['params']))
323
foreach ($vars['params'] as $value)
327
case '{CONFIG_VALUE}':
328
$value = $new[$config_key];
341
$args = array($new[$config_key], $key);
344
$return = call_user_func_array($call, $args);
346
if ($tpl_type[0] == 'select')
348
$tpl = '<select id="' . $key . '" name="' . $name . '">' . $return . '</select>';
361
if (isset($vars['append']))
363
$tpl .= $vars['append'];
370
* Going through a config array and validate values, writing errors to $error.
372
function validate_config_vars($config_vars, &$cfg_array, &$error)
374
global $phpbb_root_path, $user;
376
foreach ($config_vars as $config_name => $config_definition)
378
if (!isset($cfg_array[$config_name]) || strpos($config_name, 'legend') !== false)
383
if (!isset($config_definition['validate']))
388
// Validate a bit. ;) String is already checked through request_var(), therefore we do not check this again
389
switch ($config_definition['validate'])
392
$cfg_array[$config_name] = ($cfg_array[$config_name]) ? 1 : 0;
396
$cfg_array[$config_name] = (int) $cfg_array[$config_name];
401
if (!$cfg_array[$config_name])
406
$destination = str_replace('\\', '/', $cfg_array[$config_name]);
408
if ($destination !== '/')
410
// Adjust destination path (no trailing slash)
411
if (substr($destination, -1, 1) == '/')
413
$destination = substr($destination, 0, -1);
416
$destination = str_replace(array('../', './'), '', $destination);
418
if ($destination[0] != '/')
420
$destination = '/' . $destination;
424
$cfg_array[$config_name] = trim($destination);
430
if (!$cfg_array[$config_name])
435
$cfg_array[$config_name] = basename($cfg_array[$config_name]);
437
if (!file_exists($phpbb_root_path . 'language/' . $cfg_array[$config_name] . '/'))
439
$error[] = $user->lang['WRONG_DATA_LANG'];
443
// Relative path (appended $phpbb_root_path)
446
if (!$cfg_array[$config_name])
451
$destination = $cfg_array[$config_name];
453
// Adjust destination path (no trailing slash)
454
if (substr($destination, -1, 1) == '/' || substr($destination, -1, 1) == '\\')
456
$destination = substr($destination, 0, -1);
459
$destination = str_replace(array('../', '..\\', './', '.\\'), '', $destination);
460
if ($destination && ($destination[0] == '/' || $destination[0] == "\\"))
465
$cfg_array[$config_name] = trim($destination);
467
// Path being relative (still prefixed by phpbb_root_path), but with the ability to escape the root dir...
471
if (!$cfg_array[$config_name])
476
$cfg_array[$config_name] = trim($cfg_array[$config_name]);
478
// Make sure no NUL byte is present...
479
if (strpos($cfg_array[$config_name], "\0") !== false || strpos($cfg_array[$config_name], '%00') !== false)
481
$cfg_array[$config_name] = '';
485
if (!file_exists($phpbb_root_path . $cfg_array[$config_name]))
487
$error[] = sprintf($user->lang['DIRECTORY_DOES_NOT_EXIST'], $cfg_array[$config_name]);
490
if (file_exists($phpbb_root_path . $cfg_array[$config_name]) && !is_dir($phpbb_root_path . $cfg_array[$config_name]))
492
$error[] = sprintf($user->lang['DIRECTORY_NOT_DIR'], $cfg_array[$config_name]);
495
// Check if the path is writable
496
if ($config_definition['validate'] == 'wpath' || $config_definition['validate'] == 'rwpath')
498
if (file_exists($phpbb_root_path . $cfg_array[$config_name]) && !@is_writable($phpbb_root_path . $cfg_array[$config_name]))
500
$error[] = sprintf($user->lang['DIRECTORY_NOT_WRITABLE'], $cfg_array[$config_name]);
b'\\ No newline at end of file'