2023-01-29 19:18:10 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace EesyPHP;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* URL request abstraction
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
* @property-read string|null $current_url;
|
|
|
|
* @property-read array|null $handler;
|
|
|
|
* @property-read bool $authenticated;
|
|
|
|
* @property-read bool $api_mode;
|
|
|
|
*/
|
|
|
|
class UrlRequest {
|
|
|
|
|
2023-02-15 18:58:17 +01:00
|
|
|
/**
|
|
|
|
* The URL requested handler
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $current_url;
|
2023-01-29 19:18:10 +01:00
|
|
|
|
2023-02-15 18:58:17 +01:00
|
|
|
/**
|
|
|
|
* The URL requested handler
|
|
|
|
* @var callable
|
|
|
|
*/
|
|
|
|
private $handler;
|
2023-01-29 19:18:10 +01:00
|
|
|
|
2023-02-15 18:58:17 +01:00
|
|
|
/**
|
|
|
|
* Request need authentication ?
|
|
|
|
* @var bool|null
|
|
|
|
*/
|
|
|
|
private $authenticated = null;
|
2023-01-29 19:18:10 +01:00
|
|
|
|
2023-02-15 18:58:17 +01:00
|
|
|
/**
|
|
|
|
* API mode enabled ?
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $api_mode;
|
2023-01-29 19:18:10 +01:00
|
|
|
|
2023-02-15 18:58:17 +01:00
|
|
|
/**
|
|
|
|
* Parameters detected on requested URL
|
|
|
|
* @var array<string,mixed>
|
|
|
|
*/
|
2023-01-29 19:18:10 +01:00
|
|
|
private $url_params = array();
|
|
|
|
|
2023-02-15 18:58:17 +01:00
|
|
|
/**
|
|
|
|
* Additional info pass when the URL handler was registered
|
|
|
|
* @var array<string,mixed>
|
|
|
|
*/
|
|
|
|
private $additional_info = array();
|
|
|
|
|
|
|
|
public function __construct($current_url, $handler_info, $url_params=array()) {
|
2023-01-29 19:18:10 +01:00
|
|
|
$this -> current_url = $current_url;
|
2023-02-15 18:58:17 +01:00
|
|
|
$this -> handler = $handler_info['handler'];
|
2023-01-29 19:18:10 +01:00
|
|
|
$this -> authenticated = (
|
2023-02-15 18:58:17 +01:00
|
|
|
isset($handler_info['authenticated'])?
|
2023-02-25 05:02:27 +01:00
|
|
|
$handler_info['authenticated']:null);
|
2023-01-29 19:18:10 +01:00
|
|
|
$this -> api_mode = (
|
2023-02-15 18:58:17 +01:00
|
|
|
isset($handler_info['api_mode'])?
|
|
|
|
boolval($handler_info['api_mode']):false);
|
2023-01-29 19:18:10 +01:00
|
|
|
$this -> url_params = $url_params;
|
2023-02-15 18:58:17 +01:00
|
|
|
$this -> additional_info = (
|
|
|
|
isset($handler_info['additional_info']) && is_array($handler_info['additional_info'])?
|
|
|
|
$handler_info['additional_info']:array()
|
|
|
|
);
|
2023-01-29 19:18:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get request info
|
|
|
|
*
|
|
|
|
* @param string $key The name of the info
|
|
|
|
*
|
|
|
|
* @return mixed The value
|
|
|
|
**/
|
|
|
|
public function __get($key) {
|
|
|
|
if ($key == 'current_url')
|
|
|
|
return $this -> current_url;
|
|
|
|
if ($key == 'handler')
|
|
|
|
return $this -> handler;
|
|
|
|
if ($key == 'authenticated')
|
2023-02-25 05:02:27 +01:00
|
|
|
return (
|
|
|
|
is_null($this -> authenticated)?
|
|
|
|
Auth::enabled():
|
|
|
|
(bool)$this -> authenticated
|
|
|
|
);
|
2023-01-29 19:18:10 +01:00
|
|
|
if ($key == 'api_mode')
|
|
|
|
return $this -> api_mode;
|
|
|
|
if ($key == 'referer')
|
|
|
|
return $this -> get_referer();
|
|
|
|
if ($key == 'http_method')
|
|
|
|
return $_SERVER['REQUEST_METHOD'];
|
2023-02-15 18:58:17 +01:00
|
|
|
if (array_key_exists($key, $this->url_params))
|
2023-01-29 19:18:10 +01:00
|
|
|
return urldecode($this->url_params[$key]);
|
2023-02-15 18:58:17 +01:00
|
|
|
if (array_key_exists($key, $this->additional_info))
|
|
|
|
return urldecode($this->additional_info[$key]);
|
2023-01-29 19:18:10 +01:00
|
|
|
// Unknown key, log warning
|
|
|
|
Log :: warning(
|
|
|
|
"__get($key): invalid property requested\n%s",
|
|
|
|
Log :: get_debug_backtrace_context());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set request info
|
|
|
|
*
|
|
|
|
* @param string $key The name of the info
|
|
|
|
* @param mixed $value The value of the info
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
public function __set($key, $value) {
|
|
|
|
if ($key == 'referer')
|
|
|
|
$_SERVER['HTTP_REFERER'] = $value;
|
|
|
|
elseif ($key == 'http_method')
|
|
|
|
$_SERVER['REQUEST_METHOD'] = $value;
|
|
|
|
else
|
|
|
|
$this->url_params[$key] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check is request info is set
|
|
|
|
*
|
|
|
|
* @param string $key The name of the info
|
|
|
|
*
|
|
|
|
* @return bool True is info is set, False otherwise
|
|
|
|
**/
|
|
|
|
public function __isset($key) {
|
|
|
|
if (
|
|
|
|
in_array(
|
|
|
|
$key, array('current_url', 'handler', 'authenticated',
|
|
|
|
'api_mode', 'referer', 'http_method')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return True;
|
2023-02-15 18:58:17 +01:00
|
|
|
return (
|
|
|
|
array_key_exists($key, $this->url_params)
|
|
|
|
|| array_key_exists($key, $this->additional_info)
|
|
|
|
);
|
2023-01-29 19:18:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get request parameter
|
|
|
|
*
|
|
|
|
* @param string $parameter The name of the parameter
|
|
|
|
* @param bool $decode If true, the parameter value will be urldecoded
|
|
|
|
* (optional, default: true)
|
|
|
|
*
|
|
|
|
* @return mixed The value or false if parameter does not exists
|
|
|
|
**/
|
|
|
|
public function get_param($parameter, $decode=true) {
|
|
|
|
if (array_key_exists($parameter, $this->url_params)) {
|
|
|
|
if ($decode)
|
|
|
|
return urldecode($this->url_params[$parameter]);
|
|
|
|
return $this->url_params[$parameter];
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get request referer (if known)
|
|
|
|
*
|
|
|
|
* @return string|null The request referer URL if known, null otherwise
|
|
|
|
*/
|
|
|
|
public function get_referer() {
|
|
|
|
if (isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'])
|
|
|
|
return $_SERVER['HTTP_REFERER'];
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
|