mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-05 11:32:12 +09:00
Merge pull request #604 from kijin/pr/templatehandler-improvements
템플릿 핸들러 일부 기능 개선
This commit is contained in:
commit
f8fb61ec6c
2 changed files with 52 additions and 22 deletions
|
|
@ -11,11 +11,9 @@
|
|||
*/
|
||||
class TemplateHandler
|
||||
{
|
||||
private $compiled_path = 'files/cache/template_compiled/'; ///< path of compiled caches files
|
||||
private $path = NULL; ///< target directory
|
||||
private $filename = NULL; ///< target filename
|
||||
private $file = NULL; ///< target file (fullpath)
|
||||
private $xe_path = NULL; ///< XpressEngine base path
|
||||
private $web_path = NULL; ///< tpl file web path
|
||||
private $compiled_file = NULL; ///< tpl file web path
|
||||
private $config = NULL;
|
||||
|
|
@ -29,9 +27,8 @@ class TemplateHandler
|
|||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->xe_path = rtrim(preg_replace('/([^\.^\/]+)\.php$/i', '', $_SERVER['SCRIPT_NAME']), '/');
|
||||
$this->compiled_path = _XE_PATH_ . $this->compiled_path;
|
||||
$this->config = new stdClass();
|
||||
$this->config = new stdClass;
|
||||
$this->handler_mtime = filemtime(__FILE__);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -93,16 +90,12 @@ class TemplateHandler
|
|||
$this->filename = $tpl_filename;
|
||||
$this->file = $tpl_file;
|
||||
|
||||
$this->web_path = $this->xe_path . '/' . ltrim(preg_replace('@^' . preg_quote(_XE_PATH_, '@') . '|\./@', '', $this->path), '/');
|
||||
// set absolute URL of template path
|
||||
$this->web_path = \RX_BASEURL . ltrim(preg_replace('@^' . preg_quote(\RX_BASEDIR, '@') . '|\./@', '', $this->path), '/');
|
||||
|
||||
// get compiled file name
|
||||
$hash = md5($this->file . __XE_VERSION__);
|
||||
$this->compiled_file = "{$this->compiled_path}{$hash}.compiled.php";
|
||||
|
||||
// compare various file's modified time for check changed
|
||||
$this->handler_mtime = filemtime(__FILE__);
|
||||
|
||||
$skip = array('');
|
||||
// set compiled file name
|
||||
$converted_path = str_replace(array('\\', '..'), array('/', 'dotdot'), ltrim($this->file, './'));
|
||||
$this->compiled_file = \RX_BASEDIR . 'files/cache/template/' . $converted_path . '.php';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -123,7 +116,9 @@ class TemplateHandler
|
|||
// if target file does not exist exit
|
||||
if(!$this->file || !file_exists($this->file))
|
||||
{
|
||||
return "Err : '{$this->file}' template file does not exists.";
|
||||
$error_message = "Template not found: ${tpl_path}${tpl_filename}" . ($tpl_file ? " (${tpl_file})" : '');
|
||||
trigger_error($error_message, \E_USER_WARNING);
|
||||
return escape($error_message);
|
||||
}
|
||||
|
||||
// for backward compatibility
|
||||
|
|
@ -132,8 +127,7 @@ class TemplateHandler
|
|||
self::$rootTpl = $this->file;
|
||||
}
|
||||
|
||||
$source_template_mtime = filemtime($this->file);
|
||||
$latest_mtime = $source_template_mtime > $this->handler_mtime ? $source_template_mtime : $this->handler_mtime;
|
||||
$latest_mtime = max(filemtime($this->file), $this->handler_mtime);
|
||||
|
||||
// make compiled file
|
||||
if(!file_exists($this->compiled_file) || filemtime($this->compiled_file) < $latest_mtime)
|
||||
|
|
@ -184,8 +178,9 @@ class TemplateHandler
|
|||
// if target file does not exist exit
|
||||
if(!$this->file || !file_exists($this->file))
|
||||
{
|
||||
Context::close();
|
||||
exit("Cannot find the template file: '{$this->file}'");
|
||||
$error_message = "Template not found: ${tpl_path}${tpl_filename}";
|
||||
trigger_error($error_message, \E_USER_WARNING);
|
||||
return escape($error_message);
|
||||
}
|
||||
|
||||
return $this->parse();
|
||||
|
|
@ -232,7 +227,7 @@ class TemplateHandler
|
|||
$buff = $this->_parseInline($buff);
|
||||
|
||||
// include, unload/load, import
|
||||
$buff = preg_replace_callback('/{(@[\s\S]+?|(?=\$\w+|_{1,2}[A-Z]+|[!\(+-]|\w+(?:\(|::)|\d+|[\'"].*?[\'"]).+?)}|<(!--[#%])?(include|import|(un)?load(?(4)|(?:_js_plugin)?)|config)(?(2)\(["\']([^"\']+)["\'])(.*?)(?(2)\)--|\/)>|<!--(@[a-z@]*)([\s\S]*?)-->(\s*)/', array($this, '_parseResource'), $buff);
|
||||
$buff = preg_replace_callback('/{(@[\s\S]+?|(?=[\$\\\\]\w+|_{1,2}[A-Z]+|[!\(+-]|\w+(?:\(|::)|\d+|[\'"].*?[\'"]).+?)}|<(!--[#%])?(include|import|(un)?load(?(4)|(?:_js_plugin)?)|config)(?(2)\(["\']([^"\']+)["\'])(.*?)(?(2)\)--|\/)>|<!--(@[a-z@]*)([\s\S]*?)-->(\s*)/', array($this, '_parseResource'), $buff);
|
||||
|
||||
// remove block which is a virtual tag
|
||||
$buff = preg_replace('@</?block\s*>@is', '', $buff);
|
||||
|
|
@ -805,7 +800,7 @@ class TemplateHandler
|
|||
}
|
||||
}
|
||||
|
||||
$path = preg_replace('/^' . preg_quote(_XE_PATH_, '/') . '/', '', $path);
|
||||
$path = preg_replace('/^' . preg_quote(\RX_BASEDIR, '/') . '/', '', $path);
|
||||
|
||||
return $path;
|
||||
}
|
||||
|
|
@ -821,7 +816,17 @@ class TemplateHandler
|
|||
{
|
||||
return '';
|
||||
}
|
||||
return preg_replace('@(?<!::|\\\\|(?<!eval\()\')\$([a-z]|_[a-z0-9])@i', '\$__Context->$1', $php);
|
||||
|
||||
return preg_replace_callback('@(?<!::|\\\\|(?<!eval\()\')\$([a-z_][a-z0-9_]*)@i', function($matches) {
|
||||
if (preg_match('/^(?:GLOBALS|_SERVER|_COOKIE|_GET|_POST|_REQUEST|__Context)$/', $matches[1]))
|
||||
{
|
||||
return '$' . $matches[1];
|
||||
}
|
||||
else
|
||||
{
|
||||
return '$__Context->' . $matches[1];
|
||||
}
|
||||
}, $php);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -275,6 +275,31 @@ class TemplateHandlerTest extends \Codeception\TestCase\Test
|
|||
array(
|
||||
'<input>asdf src="../img/img.gif" asdf</input>',
|
||||
'?><input>asdf src="../img/img.gif" asdf</input>'
|
||||
),
|
||||
// Rhymix improvements (PR #604)
|
||||
array(
|
||||
'<span>{$_SERVER["REMOTE_ADDR"]}</span>',
|
||||
'?><span><?php echo $_SERVER["REMOTE_ADDR"] ?></span>'
|
||||
),
|
||||
array(
|
||||
'<span>{escape($_COOKIE[$var], false)}</span>',
|
||||
'?><span><?php echo escape($_COOKIE[$__Context->var], false) ?></span>'
|
||||
),
|
||||
array(
|
||||
'<span>{$GLOBALS[$__Context->rhymix->rules]}</span>',
|
||||
'?><span><?php echo $GLOBALS[$__Context->rhymix->rules] ?></span>'
|
||||
),
|
||||
array(
|
||||
'<span>{$FOOBAR}</span>',
|
||||
'?><span><?php echo $__Context->FOOBAR ?></span>'
|
||||
),
|
||||
array(
|
||||
'<span>{RX_BASEDIR}</span>',
|
||||
'?><span>{RX_BASEDIR}</span>'
|
||||
),
|
||||
array(
|
||||
'<span>{\RX_BASEDIR}</span>',
|
||||
'?><span><?php echo \RX_BASEDIR ?></span>'
|
||||
),
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue