Compare commits

...

3 commits

3 changed files with 129 additions and 34 deletions

View file

@ -172,6 +172,8 @@ class Tpl {
foreach(App :: get('templates.static_directories', array(), 'array') as $path)
self :: register_static_directory($path);
self :: register_function('var_dump', array('EesyPHP\\Tpl', 'smarty_var_dump'));
}
}
@ -260,6 +262,44 @@ class Tpl {
$_SESSION['messages'][] = $message;
}
/**
* Get errors
* @return array<string>
*/
public static function get_errors() {
if(isset($_SESSION['errors']) && is_array($_SESSION['errors']))
return $_SESSION['errors'];
return array();
}
/**
* Get messages
* @return array<string>
*/
public static function get_messages() {
if(isset($_SESSION['messages']) && is_array($_SESSION['messages']))
return $_SESSION['messages'];
return array();
}
/**
* Purge messages
* @return void
*/
public static function purge_errors() {
if(isset($_SESSION['errors']))
unset($_SESSION['errors']);
}
/**
* Purge messages
* @return void
*/
public static function purge_messages() {
if(isset($_SESSION['messages']))
unset($_SESSION['messages']);
}
/**
* Register CSS file(s) to load on next displayed page
* @param string|array<string> $args CSS files to load
@ -327,8 +367,8 @@ class Tpl {
self :: add_js_file(App::get('templates.included_js_files', array(), 'array'));
// Messages
self :: assign('errors', (isset($_SESSION['errors'])?$_SESSION['errors']:array()));
self :: assign('messages', (isset($_SESSION['messages'])?$_SESSION['messages']:array()));
self :: assign('errors', self :: get_errors());
self :: assign('messages', self :: get_messages());
// Files inclusions
self :: assign('css', self :: $css_files);
@ -386,8 +426,8 @@ class Tpl {
Log :: fatal(I18n::_("An error occurred while displaying this page."));
return;
}
unset($_SESSION['errors']);
unset($_SESSION['messages']);
self :: purge_errors();
self :: purge_messages();
Hook :: trigger('after_displaying_template');
$sentry_span->finish();
}
@ -406,14 +446,14 @@ class Tpl {
elseif (isset($data['success']) && !$data['success'] && http_response_code() == 200)
http_response_code(400);
if (isset($_SESSION['messages']) && !empty($_SESSION['messages'])) {
$data['messages'] = $_SESSION['messages'];
unset($_SESSION['messages']);
}
if (isset($_SESSION['errors']) && !empty($_SESSION['errors'])) {
$data['errors'] = $_SESSION['errors'];
unset($_SESSION['errors']);
}
$data['messages'] = self :: get_messages();
if (!$data['messages']) unset($data['messages']);
self :: purge_messages();
$data['errors'] = self :: get_errors();
if (!$data['errors']) unset($data['errors']);
self :: purge_errors();
if (self :: $_debug_ajax)
Log :: debug("AJAX Response : ".vardump($data));
header('Content-Type: application/json');
@ -613,6 +653,7 @@ class Tpl {
Url :: add_url_handler(
$pattern,
array('EesyPHP\\Tpl', 'handle_static_file'),
null, // additionnal info
false, // authenticated
false, // override
false, // API mode
@ -697,4 +738,15 @@ class Tpl {
$url = self :: static_url($params['path']);
if ($url) echo $url;
}
/**
* Smarty function to dump variable using var_dump()
* @param array<string,mixed> $params Parameters from template file
* @param Smarty $smarty The smarty object
* @return void
*/
public static function smarty_var_dump($params, $smarty) {
if (!isset($params['data'])) return;
var_dump($params['data']);
}
}

View file

@ -14,12 +14,14 @@ class Url {
* array (
* '|get/(?P<name>[a-zA-Z0-9]+)$|' => array (
* 'handler' => 'get',
* 'additional_info' => array(),
* 'authenticated' => true,
* 'api_mode' => false,
* 'methods' => array('GET'),
* ),
* '|get/all$|' => => array (
* 'handler' => 'get_all',
* 'additional_info' => array(),
* 'authenticated' => true,
* 'api_mode' => false,
* 'methods' => array('GET', 'POST'),
@ -72,6 +74,7 @@ class Url {
*
* @param string|array $pattern The URL pattern or an array of patterns (required)
* @param callable $handler The URL pattern handler (must be callable, required)
* @param array|null $additional_info Array of information to pass to the URL handler
* @param boolean $authenticated Permit to define if this URL is accessible only for
* authenticated users (optional, default: true if the
* special force_authentication function is defined,
@ -81,8 +84,9 @@ class Url {
* @param boolean $api_mode Enable API mode (optional, default: false)
* @param array|string|null $methods HTTP method (optional, default: array('GET', 'POST'))
**/
public static function add_url_handler($pattern, $handler=null, $authenticated=null, $override=true,
$api_mode=false, $methods=null) {
public static function add_url_handler($pattern, $handler=null, $additional_info=null,
$authenticated=null, $override=true, $api_mode=false,
$methods=null) {
$authenticated = (
is_null($authenticated)?
function_exists('force_authentication'):
@ -95,15 +99,21 @@ class Url {
if (is_array($pattern)) {
if (is_null($handler))
foreach($pattern as $p => $h)
self :: add_url_handler($p, $h, $authenticated, $override, $api_mode, $methods);
self :: add_url_handler(
$p, $h, $additional_info, $authenticated, $override, $api_mode, $methods);
else
foreach($pattern as $p)
self :: add_url_handler($p, $handler, $authenticated, $override, $api_mode, $methods);
self :: add_url_handler(
$p, $handler, $additional_info, $authenticated, $override, $api_mode, $methods);
}
else {
if (!isset(self :: $patterns[$pattern])) {
self :: $patterns[$pattern] = array(
'handler' => $handler,
'additional_info' => (
is_array($additional_info)?
$additional_info:array()
),
'authenticated' => $authenticated,
'api_mode' => $api_mode,
'methods' => $methods,
@ -116,6 +126,10 @@ class Url {
);
self :: $patterns[$pattern] = array(
'handler' => $handler,
'additional_info' => (
is_array($additional_info)?
$additional_info:array()
),
'authenticated' => $authenticated,
'api_mode' => $api_mode,
'methods' => $methods,

View file

@ -13,31 +13,56 @@ namespace EesyPHP;
*/
class UrlRequest {
// The URL requested handler
private $current_url = null;
/**
* The URL requested handler
* @var string
*/
private $current_url;
// The URL requested handler
private $handler = null;
/**
* The URL requested handler
* @var callable
*/
private $handler;
// Request need authentication ?
private $authenticated = true;
/**
* Request need authentication ?
* @var bool|null
*/
private $authenticated = null;
// API mode enabled ?
private $api_mode = false;
/**
* API mode enabled ?
* @var bool
*/
private $api_mode;
// Parameters detected on requested URL
/**
* Parameters detected on requested URL
* @var array<string,mixed>
*/
private $url_params = array();
public function __construct($current_url, $handler_infos, $url_params=array()) {
/**
* 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()) {
$this -> current_url = $current_url;
$this -> handler = $handler_infos['handler'];
$this -> handler = $handler_info['handler'];
$this -> authenticated = (
isset($handler_infos['authenticated'])?
boolval($handler_infos['authenticated']):true);
isset($handler_info['authenticated'])?
boolval($handler_info['authenticated']):true);
$this -> api_mode = (
isset($handler_infos['api_mode'])?
boolval($handler_infos['api_mode']):false);
isset($handler_info['api_mode'])?
boolval($handler_info['api_mode']):false);
$this -> url_params = $url_params;
$this -> additional_info = (
isset($handler_info['additional_info']) && is_array($handler_info['additional_info'])?
$handler_info['additional_info']:array()
);
}
/**
@ -60,9 +85,10 @@ class UrlRequest {
return $this -> get_referer();
if ($key == 'http_method')
return $_SERVER['REQUEST_METHOD'];
if (array_key_exists($key, $this->url_params)) {
if (array_key_exists($key, $this->url_params))
return urldecode($this->url_params[$key]);
}
if (array_key_exists($key, $this->additional_info))
return urldecode($this->additional_info[$key]);
// Unknown key, log warning
Log :: warning(
"__get($key): invalid property requested\n%s",
@ -103,7 +129,10 @@ class UrlRequest {
)
)
return True;
return array_key_exists($key, $this->url_params);
return (
array_key_exists($key, $this->url_params)
|| array_key_exists($key, $this->additional_info)
);
}
/**