mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11508] Move helper functions to path_helper class.
PHPBB3-11508
This commit is contained in:
parent
e1c6b40ee8
commit
3163388f63
3 changed files with 126 additions and 118 deletions
|
@ -2344,8 +2344,10 @@ function reapply_sid($url)
|
||||||
*/
|
*/
|
||||||
function build_url($strip_vars = false)
|
function build_url($strip_vars = false)
|
||||||
{
|
{
|
||||||
global $config, $user, $phpEx, $phpbb_root_path;
|
global $config, $user, $phpbb_container;
|
||||||
|
|
||||||
|
$path_helper = $phpbb_container->get('path_helper');
|
||||||
|
$php_ext = $path_helper->get_php_ext();
|
||||||
$page = $user->page['page'];
|
$page = $user->page['page'];
|
||||||
|
|
||||||
// We need to be cautious here.
|
// We need to be cautious here.
|
||||||
|
@ -2358,12 +2360,12 @@ function build_url($strip_vars = false)
|
||||||
if ($url_parts === false || empty($url_parts['scheme']) || empty($url_parts['host']))
|
if ($url_parts === false || empty($url_parts['scheme']) || empty($url_parts['host']))
|
||||||
{
|
{
|
||||||
// Remove 'app.php/' from the page, when rewrite is enabled
|
// Remove 'app.php/' from the page, when rewrite is enabled
|
||||||
if ($config['enable_mod_rewrite'] && strpos($page, 'app.' . $phpEx . '/') === 0)
|
if ($config['enable_mod_rewrite'] && strpos($page, 'app.' . $php_ext . '/') === 0)
|
||||||
{
|
{
|
||||||
$page = substr($page, strlen('app.' . $phpEx . '/'));
|
$page = substr($page, strlen('app.' . $php_ext . '/'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$page = $phpbb_root_path . $page;
|
$page = $path_helper->get_phpbb_root_path() . $page;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Append SID
|
// Append SID
|
||||||
|
@ -2371,123 +2373,12 @@ function build_url($strip_vars = false)
|
||||||
|
|
||||||
if ($strip_vars !== false)
|
if ($strip_vars !== false)
|
||||||
{
|
{
|
||||||
$redirect = phpbb_strip_url_params($redirect, $strip_vars, '&');
|
$redirect = $path_helper->strip_url_params($redirect, $strip_vars, '&');
|
||||||
}
|
}
|
||||||
|
|
||||||
return $redirect;
|
return $redirect;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the base and parameters of a URL
|
|
||||||
*
|
|
||||||
* @param string $url URL to break apart
|
|
||||||
* @param string $separator Parameter separator. Defaults to &
|
|
||||||
* @return array Returns the base and parameters in the form of array('base' => string, 'params' => array(name => value))
|
|
||||||
*/
|
|
||||||
function phpbb_get_url_parts($url, $separator = '&') {
|
|
||||||
$params = array();
|
|
||||||
|
|
||||||
if (strpos($url, '?') !== false)
|
|
||||||
{
|
|
||||||
$base = substr($url, 0, strpos($url, '?'));
|
|
||||||
$args = substr($url, strlen($base) + 1);
|
|
||||||
$args = ($args) ? explode($separator, $args) : array();
|
|
||||||
|
|
||||||
foreach ($args as $argument)
|
|
||||||
{
|
|
||||||
$arguments = explode('=', $argument);
|
|
||||||
$key = $arguments[0];
|
|
||||||
unset($arguments[0]);
|
|
||||||
|
|
||||||
if ($key === '')
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$params[$key] = implode('=', $arguments);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$base = $url;
|
|
||||||
}
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'base' => $base,
|
|
||||||
'params' => $params,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Glue URL parameters together
|
|
||||||
*
|
|
||||||
* @param array $params URL parameters in the form of array(name => value)
|
|
||||||
* @return string Returns the glued string.
|
|
||||||
*/
|
|
||||||
function phpbb_glue_url_params($params) {
|
|
||||||
$_params = array();
|
|
||||||
|
|
||||||
foreach ($params as $key => $value)
|
|
||||||
{
|
|
||||||
$_params[] = $key . '=' . $value;
|
|
||||||
}
|
|
||||||
return implode('&', $_params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Strip parameters from an already built URL.
|
|
||||||
*
|
|
||||||
* @param string $url URL to strip parameters from
|
|
||||||
* @param array|string $strip Parameters to strip.
|
|
||||||
* @param string $separator Parameter separator. Defaults to &
|
|
||||||
* @return string Returns the new URL.
|
|
||||||
*/
|
|
||||||
function phpbb_strip_url_params($url, $strip, $separator = '&') {
|
|
||||||
$url_parts = phpbb_get_url_parts($url, $separator);
|
|
||||||
$params = $url_parts['params'];
|
|
||||||
|
|
||||||
if (!is_array($strip))
|
|
||||||
{
|
|
||||||
$strip = array($strip);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($params))
|
|
||||||
{
|
|
||||||
// Strip the parameters off
|
|
||||||
foreach ($strip as $param)
|
|
||||||
{
|
|
||||||
if (isset($params[$param]))
|
|
||||||
{
|
|
||||||
unset($params[$param]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $url_parts['base'] . (($params) ? '?' . phpbb_glue_url_params($params) : '');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Append parameters to an already built URL.
|
|
||||||
*
|
|
||||||
* @param string $url URL to append parameters to
|
|
||||||
* @param array $new_params Parameters to add in the form of array(name => value)
|
|
||||||
* @param string $separator Parameter separator. Defaults to &
|
|
||||||
* @return string Returns the new URL.
|
|
||||||
*/
|
|
||||||
function phpbb_append_url_params($url, $new_params, $separator = '&') {
|
|
||||||
$url_parts = phpbb_get_url_parts($url, $separator);
|
|
||||||
$params = array_merge($url_parts['params'], $new_params);
|
|
||||||
|
|
||||||
// Move the sid to the end if it's set
|
|
||||||
if (isset($params['sid'])) {
|
|
||||||
$sid = $params['sid'];
|
|
||||||
unset($params['sid']);
|
|
||||||
$params['sid'] = $sid;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $url_parts['base'] . '?' . phpbb_glue_url_params($params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Meta refresh assignment
|
* Meta refresh assignment
|
||||||
* Adds META template variable with meta http tag.
|
* Adds META template variable with meta http tag.
|
||||||
|
|
|
@ -110,7 +110,7 @@ function gen_sort_selects(&$limit_days, &$sort_by_text, &$sort_days, &$sort_key,
|
||||||
*/
|
*/
|
||||||
function make_jumpbox($action, $forum_id = false, $select_all = false, $acl_list = false, $force_display = false)
|
function make_jumpbox($action, $forum_id = false, $select_all = false, $acl_list = false, $force_display = false)
|
||||||
{
|
{
|
||||||
global $config, $auth, $template, $user, $db;
|
global $config, $auth, $template, $user, $db, $phpbb_container;
|
||||||
|
|
||||||
// We only return if the jumpbox is not forced to be displayed (in case it is needed for functionality)
|
// We only return if the jumpbox is not forced to be displayed (in case it is needed for functionality)
|
||||||
if (!$config['load_jumpbox'] && $force_display === false)
|
if (!$config['load_jumpbox'] && $force_display === false)
|
||||||
|
@ -195,7 +195,9 @@ function make_jumpbox($action, $forum_id = false, $select_all = false, $acl_list
|
||||||
}
|
}
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
unset($padding_store);
|
unset($padding_store);
|
||||||
$url_parts = phpbb_get_url_parts($action);
|
|
||||||
|
$path_helper = $phpbb_container->get('path_helper');
|
||||||
|
$url_parts = $path_helper->get_url_parts($action);
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
'S_DISPLAY_JUMPBOX' => $display_jumpbox,
|
'S_DISPLAY_JUMPBOX' => $display_jumpbox,
|
||||||
|
|
|
@ -216,4 +216,119 @@ class path_helper
|
||||||
|
|
||||||
return $scheme . $this->filesystem->clean_path($path);
|
return $scheme . $this->filesystem->clean_path($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Glue URL parameters together
|
||||||
|
*
|
||||||
|
* @param array $params URL parameters in the form of array(name => value)
|
||||||
|
* @return string Returns the glued string, e.g. name1=value1&name2=value2
|
||||||
|
*/
|
||||||
|
public function glue_url_params($params)
|
||||||
|
{
|
||||||
|
$_params = array();
|
||||||
|
|
||||||
|
foreach ($params as $key => $value)
|
||||||
|
{
|
||||||
|
$_params[] = $key . '=' . $value;
|
||||||
|
}
|
||||||
|
return implode('&', $_params);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the base and parameters of a URL
|
||||||
|
*
|
||||||
|
* @param string $url URL to break apart
|
||||||
|
* @param string $separator Parameter separator. Defaults to &
|
||||||
|
* @return array Returns the base and parameters in the form of array('base' => string, 'params' => array(name => value))
|
||||||
|
*/
|
||||||
|
public function get_url_parts($url, $separator = '&')
|
||||||
|
{
|
||||||
|
$params = array();
|
||||||
|
|
||||||
|
if (strpos($url, '?') !== false)
|
||||||
|
{
|
||||||
|
$base = substr($url, 0, strpos($url, '?'));
|
||||||
|
$args = substr($url, strlen($base) + 1);
|
||||||
|
$args = ($args) ? explode($separator, $args) : array();
|
||||||
|
|
||||||
|
foreach ($args as $argument)
|
||||||
|
{
|
||||||
|
$arguments = explode('=', $argument);
|
||||||
|
$key = $arguments[0];
|
||||||
|
unset($arguments[0]);
|
||||||
|
|
||||||
|
if ($key === '')
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$params[$key] = implode('=', $arguments);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$base = $url;
|
||||||
|
}
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'base' => $base,
|
||||||
|
'params' => $params,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Strip parameters from an already built URL.
|
||||||
|
*
|
||||||
|
* @param string $url URL to strip parameters from
|
||||||
|
* @param array|string $strip Parameters to strip.
|
||||||
|
* @param string $separator Parameter separator. Defaults to &
|
||||||
|
* @return string Returns the new URL.
|
||||||
|
*/
|
||||||
|
public function strip_url_params($url, $strip, $separator = '&')
|
||||||
|
{
|
||||||
|
$url_parts = $this->get_url_parts($url, $separator);
|
||||||
|
$params = $url_parts['params'];
|
||||||
|
|
||||||
|
if (!is_array($strip))
|
||||||
|
{
|
||||||
|
$strip = array($strip);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($params))
|
||||||
|
{
|
||||||
|
// Strip the parameters off
|
||||||
|
foreach ($strip as $param)
|
||||||
|
{
|
||||||
|
if (isset($params[$param]))
|
||||||
|
{
|
||||||
|
unset($params[$param]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $url_parts['base'] . (($params) ? '?' . $this->glue_url_params($params) : '');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append parameters to an already built URL.
|
||||||
|
*
|
||||||
|
* @param string $url URL to append parameters to
|
||||||
|
* @param array $new_params Parameters to add in the form of array(name => value)
|
||||||
|
* @param string $separator Parameter separator. Defaults to &
|
||||||
|
* @return string Returns the new URL.
|
||||||
|
*/
|
||||||
|
public function append_url_params($url, $new_params, $separator = '&')
|
||||||
|
{
|
||||||
|
$url_parts = $this->get_url_parts($url, $separator);
|
||||||
|
$params = array_merge($url_parts['params'], $new_params);
|
||||||
|
|
||||||
|
// Move the sid to the end if it's set
|
||||||
|
if (isset($params['sid'])) {
|
||||||
|
$sid = $params['sid'];
|
||||||
|
unset($params['sid']);
|
||||||
|
$params['sid'] = $sid;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $url_parts['base'] . '?' . $this->glue_url_params($params);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue