2013-07-14 22:15:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Smarty plugin
|
|
|
|
*
|
2014-06-06 02:40:04 +00:00
|
|
|
* @package Smarty
|
2013-07-14 22:15:45 +00:00
|
|
|
* @subpackage PluginsModifierCompiler
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Smarty escape modifier plugin
|
2017-11-11 07:11:33 +01:00
|
|
|
* Type: modifier
|
|
|
|
* Name: escape
|
2013-07-14 22:15:45 +00:00
|
|
|
* Purpose: escape string for output
|
|
|
|
*
|
2014-06-06 02:40:04 +00:00
|
|
|
* @link http://www.smarty.net/docsv2/en/language.modifier.escape count_characters (Smarty online manual)
|
2013-07-14 22:15:45 +00:00
|
|
|
* @author Rodney Rehm
|
2014-06-06 02:40:04 +00:00
|
|
|
*
|
2018-08-19 02:35:46 +02:00
|
|
|
* @param array $params parameters
|
2018-06-12 09:58:15 +02:00
|
|
|
* @param Smarty_Internal_TemplateCompilerBase $compiler
|
2014-06-06 02:40:04 +00:00
|
|
|
*
|
2013-07-14 22:15:45 +00:00
|
|
|
* @return string with compiled code
|
2018-03-28 07:35:52 +02:00
|
|
|
* @throws \SmartyException
|
2013-07-14 22:15:45 +00:00
|
|
|
*/
|
2018-03-28 07:35:52 +02:00
|
|
|
function smarty_modifiercompiler_escape($params, Smarty_Internal_TemplateCompilerBase $compiler)
|
2013-07-14 22:15:45 +00:00
|
|
|
{
|
|
|
|
static $_double_encode = null;
|
2017-05-27 11:04:00 +02:00
|
|
|
static $is_loaded = false;
|
2018-06-12 09:58:15 +02:00
|
|
|
$compiler->template->_checkPlugins(
|
2018-08-31 16:45:09 +02:00
|
|
|
array(
|
|
|
|
array(
|
|
|
|
'function' => 'smarty_literal_compiler_param',
|
|
|
|
'file' => SMARTY_PLUGINS_DIR . 'shared.literal_compiler_param.php'
|
|
|
|
)
|
|
|
|
)
|
2018-06-12 09:58:15 +02:00
|
|
|
);
|
2013-07-14 22:15:45 +00:00
|
|
|
if ($_double_encode === null) {
|
|
|
|
$_double_encode = version_compare(PHP_VERSION, '5.2.3', '>=');
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
$esc_type = smarty_literal_compiler_param($params, 1, 'html');
|
|
|
|
$char_set = smarty_literal_compiler_param($params, 2, Smarty::$_CHARSET);
|
|
|
|
$double_encode = smarty_literal_compiler_param($params, 3, true);
|
|
|
|
if (!$char_set) {
|
|
|
|
$char_set = Smarty::$_CHARSET;
|
|
|
|
}
|
|
|
|
switch ($esc_type) {
|
2018-08-19 02:35:46 +02:00
|
|
|
case 'html':
|
|
|
|
if ($_double_encode) {
|
|
|
|
return 'htmlspecialchars(' . $params[ 0 ] . ', ENT_QUOTES, ' . var_export($char_set, true) . ', ' .
|
|
|
|
var_export($double_encode, true) . ')';
|
|
|
|
} elseif ($double_encode) {
|
|
|
|
return 'htmlspecialchars(' . $params[ 0 ] . ', ENT_QUOTES, ' . var_export($char_set, true) . ')';
|
|
|
|
} else {
|
|
|
|
// fall back to modifier.escape.php
|
|
|
|
}
|
2018-08-31 16:45:09 +02:00
|
|
|
// no break
|
2018-08-19 02:35:46 +02:00
|
|
|
case 'htmlall':
|
|
|
|
if (Smarty::$_MBSTRING) {
|
|
|
|
if ($_double_encode) {
|
|
|
|
// php >=5.2.3 - go native
|
|
|
|
return 'mb_convert_encoding(htmlspecialchars(' . $params[ 0 ] . ', ENT_QUOTES, ' .
|
|
|
|
var_export($char_set, true) . ', ' . var_export($double_encode, true) .
|
|
|
|
'), "HTML-ENTITIES", ' . var_export($char_set, true) . ')';
|
|
|
|
} elseif ($double_encode) {
|
|
|
|
// php <5.2.3 - only handle double encoding
|
|
|
|
return 'mb_convert_encoding(htmlspecialchars(' . $params[ 0 ] . ', ENT_QUOTES, ' .
|
|
|
|
var_export($char_set, true) . '), "HTML-ENTITIES", ' . var_export($char_set, true) . ')';
|
|
|
|
} else {
|
|
|
|
// fall back to modifier.escape.php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// no MBString fallback
|
2013-07-14 22:15:45 +00:00
|
|
|
if ($_double_encode) {
|
|
|
|
// php >=5.2.3 - go native
|
2018-08-19 02:35:46 +02:00
|
|
|
return 'htmlentities(' . $params[ 0 ] . ', ENT_QUOTES, ' . var_export($char_set, true) . ', ' .
|
|
|
|
var_export($double_encode, true) . ')';
|
2013-07-14 22:15:45 +00:00
|
|
|
} elseif ($double_encode) {
|
|
|
|
// php <5.2.3 - only handle double encoding
|
2018-08-19 02:35:46 +02:00
|
|
|
return 'htmlentities(' . $params[ 0 ] . ', ENT_QUOTES, ' . var_export($char_set, true) . ')';
|
2013-07-14 22:15:45 +00:00
|
|
|
} else {
|
|
|
|
// fall back to modifier.escape.php
|
|
|
|
}
|
2018-08-31 16:45:09 +02:00
|
|
|
// no break
|
2018-08-19 02:35:46 +02:00
|
|
|
case 'url':
|
|
|
|
return 'rawurlencode(' . $params[ 0 ] . ')';
|
|
|
|
case 'urlpathinfo':
|
|
|
|
return 'str_replace("%2F", "/", rawurlencode(' . $params[ 0 ] . '))';
|
|
|
|
case 'quotes':
|
|
|
|
// escape unescaped single quotes
|
|
|
|
return 'preg_replace("%(?<!\\\\\\\\)\'%", "\\\'",' . $params[ 0 ] . ')';
|
|
|
|
case 'javascript':
|
|
|
|
// escape quotes and backslashes, newlines, etc.
|
2021-02-28 16:43:54 +03:00
|
|
|
// see https://html.spec.whatwg.org/multipage/scripting.html#restrictions-for-contents-of-script-elements
|
2018-08-19 02:35:46 +02:00
|
|
|
return 'strtr(' .
|
|
|
|
$params[ 0 ] .
|
2021-02-28 16:43:54 +03:00
|
|
|
', array("\\\\" => "\\\\\\\\", "\'" => "\\\\\'", "\"" => "\\\\\"", "\\r" => "\\\\r", "\\n" => "\\\n", "</" => "<\/", "<!--" => "<\!--", "<s" => "<\s", "<S" => "<\S" ))';
|
2013-07-14 22:15:45 +00:00
|
|
|
}
|
2018-08-31 16:45:09 +02:00
|
|
|
} catch (SmartyException $e) {
|
2013-07-14 22:15:45 +00:00
|
|
|
// pass through to regular plugin fallback
|
|
|
|
}
|
|
|
|
// could not optimize |escape call, so fallback to regular plugin
|
|
|
|
if ($compiler->template->caching && ($compiler->tag_nocache | $compiler->nocache)) {
|
2018-03-28 07:35:52 +02:00
|
|
|
$compiler->required_plugins[ 'nocache' ][ 'escape' ][ 'modifier' ][ 'file' ] =
|
2016-02-09 01:27:15 +01:00
|
|
|
SMARTY_PLUGINS_DIR . 'modifier.escape.php';
|
2018-03-28 07:35:52 +02:00
|
|
|
$compiler->required_plugins[ 'nocache' ][ 'escape' ][ 'modifier' ][ 'function' ] =
|
2016-02-09 01:27:15 +01:00
|
|
|
'smarty_modifier_escape';
|
2013-07-14 22:15:45 +00:00
|
|
|
} else {
|
2018-03-28 07:35:52 +02:00
|
|
|
$compiler->required_plugins[ 'compiled' ][ 'escape' ][ 'modifier' ][ 'file' ] =
|
2016-02-09 01:27:15 +01:00
|
|
|
SMARTY_PLUGINS_DIR . 'modifier.escape.php';
|
2018-03-28 07:35:52 +02:00
|
|
|
$compiler->required_plugins[ 'compiled' ][ 'escape' ][ 'modifier' ][ 'function' ] =
|
2016-02-09 01:27:15 +01:00
|
|
|
'smarty_modifier_escape';
|
2013-07-14 22:15:45 +00:00
|
|
|
}
|
2014-06-06 02:40:04 +00:00
|
|
|
return 'smarty_modifier_escape(' . join(', ', $params) . ')';
|
2013-07-14 22:15:45 +00:00
|
|
|
}
|