Url::add_url_handler(): clean code and return bool
This commit is contained in:
parent
5ce273cfad
commit
c900324860
1 changed files with 30 additions and 35 deletions
65
src/Url.php
65
src/Url.php
|
@ -79,13 +79,14 @@ class Url {
|
||||||
* authenticated users (optional, default: true if the
|
* authenticated users (optional, default: true if the
|
||||||
* special force_authentication function is defined,
|
* special force_authentication function is defined,
|
||||||
* false otherwise)
|
* false otherwise)
|
||||||
* @param boolean $override Allow override if a command already exists with the
|
* @param boolean $overwrite Allow overwrite if a command already exists with the
|
||||||
* same name (optional, default: false)
|
* same name (optional, default: false)
|
||||||
* @param boolean $api_mode Enable API mode (optional, default: false)
|
* @param boolean $api_mode Enable API mode (optional, default: false)
|
||||||
* @param array|string|null $methods HTTP method (optional, default: array('GET', 'POST'))
|
* @param array|string|null $methods HTTP method (optional, default: array('GET', 'POST'))
|
||||||
|
* @return bool
|
||||||
**/
|
**/
|
||||||
public static function add_url_handler($pattern, $handler=null, $additional_info=null,
|
public static function add_url_handler($pattern, $handler=null, $additional_info=null,
|
||||||
$authenticated=null, $override=true, $api_mode=false,
|
$authenticated=null, $overwrite=true, $api_mode=false,
|
||||||
$methods=null) {
|
$methods=null) {
|
||||||
$authenticated = (
|
$authenticated = (
|
||||||
is_null($authenticated)?
|
is_null($authenticated)?
|
||||||
|
@ -97,48 +98,42 @@ class Url {
|
||||||
elseif (!is_array($methods))
|
elseif (!is_array($methods))
|
||||||
$methods = array($methods);
|
$methods = array($methods);
|
||||||
if (is_array($pattern)) {
|
if (is_array($pattern)) {
|
||||||
|
$error = false;
|
||||||
if (is_null($handler))
|
if (is_null($handler))
|
||||||
foreach($pattern as $p => $h)
|
foreach($pattern as $p => $h)
|
||||||
self :: add_url_handler(
|
if (
|
||||||
$p, $h, $additional_info, $authenticated, $override, $api_mode, $methods);
|
!self :: add_url_handler(
|
||||||
|
$p, $h, $additional_info, $authenticated, $overwrite, $api_mode, $methods)
|
||||||
|
) $error = true;
|
||||||
else
|
else
|
||||||
foreach($pattern as $p)
|
foreach($pattern as $p)
|
||||||
self :: add_url_handler(
|
if (
|
||||||
$p, $handler, $additional_info, $authenticated, $override, $api_mode, $methods);
|
!self :: add_url_handler(
|
||||||
|
$p, $handler, $additional_info, $authenticated, $overwrite, $api_mode, $methods)
|
||||||
|
) $error = true;
|
||||||
|
return !$error;
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
if (!isset(self :: $patterns[$pattern])) {
|
if (!isset(self :: $patterns[$pattern]) || $overwrite) {
|
||||||
self :: $patterns[$pattern] = array(
|
if (isset(self :: $patterns[$pattern]))
|
||||||
'handler' => $handler,
|
|
||||||
'additional_info' => (
|
|
||||||
is_array($additional_info)?
|
|
||||||
$additional_info:array()
|
|
||||||
),
|
|
||||||
'authenticated' => $authenticated,
|
|
||||||
'api_mode' => $api_mode,
|
|
||||||
'methods' => $methods,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
elseif ($override) {
|
|
||||||
Log :: debug(
|
Log :: debug(
|
||||||
"URL : override pattern '%s' with handler '%s' (old handler = '%s')".
|
"URL : overwrite pattern '%s' with handler '%s' (old handler = '%s')".
|
||||||
$pattern, format_callable($handler), vardump(self :: $patterns[$pattern])
|
$pattern, format_callable($handler), vardump(self :: $patterns[$pattern])
|
||||||
);
|
);
|
||||||
self :: $patterns[$pattern] = array(
|
self :: $patterns[$pattern] = array(
|
||||||
'handler' => $handler,
|
'handler' => $handler,
|
||||||
'additional_info' => (
|
'additional_info' => (
|
||||||
is_array($additional_info)?
|
is_array($additional_info)?
|
||||||
$additional_info:array()
|
$additional_info:array()
|
||||||
),
|
),
|
||||||
'authenticated' => $authenticated,
|
'authenticated' => $authenticated,
|
||||||
'api_mode' => $api_mode,
|
'api_mode' => $api_mode,
|
||||||
'methods' => $methods,
|
'methods' => $methods,
|
||||||
);
|
);
|
||||||
}
|
return true;
|
||||||
else {
|
|
||||||
Log :: debug("URL : pattern '$pattern' already defined : do not override.");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Log :: debug("URL : pattern '$pattern' already defined : do not overwrite.");
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue