game/onyx2/modules/templates/smarty/plugins/function.mailto.php

158 lines
5.2 KiB
PHP
Raw Normal View History

2009-11-01 11:00:00 +00:00
<?php
/**
2020-11-15 15:12:32 +00:00
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFunction
*/
2009-11-01 11:00:00 +00:00
/**
2020-11-15 15:12:32 +00:00
* Smarty {mailto} function plugin
*
* Type: function<br>
* Name: mailto<br>
* Date: May 21, 2002
* Purpose: automate mailto address link creation, and optionally
* encode them.<br>
*
* Examples:
* <pre>
* {mailto address="me@domain.com"}
* {mailto address="me@domain.com" encode="javascript"}
* {mailto address="me@domain.com" encode="hex"}
* {mailto address="me@domain.com" subject="Hello to you!"}
* {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"}
* {mailto address="me@domain.com" extra='class="mailto"'}
* </pre>
*
* @link http://smarty.php.net/manual/en/language.function.mailto.php {mailto}
(Smarty online manual)
* @version 1.2
* @author Monte Ohrt <monte at ohrt dot com>
* @author credits to Jason Sweat (added cc, bcc and subject functionality)
* @param array $params parameters
* Input:<br>
* - address = e-mail address
* - text = (optional) text to display, default is address
* - encode = (optional) can be one of:
* * none : no encoding (default)
* * javascript : encode with javascript
* * javascript_charcode : encode with javascript charcode
* * hex : encode with hexidecimal (no javascript)
* - cc = (optional) address(es) to carbon copy
* - bcc = (optional) address(es) to blind carbon copy
* - subject = (optional) e-mail subject
* - newsgroups = (optional) newsgroup(s) to post to
* - followupto = (optional) address(es) to follow up to
* - extra = (optional) extra tags for the href link
* @param object $smarty Smarty object
* @param object $template template object
* @return string
*/
function smarty_function_mailto($params, $smarty, $template)
2009-11-01 11:00:00 +00:00
{
$extra = '';
if (empty($params['address'])) {
2020-11-15 15:12:32 +00:00
throw new Exception ("mailto: missing 'address' parameter");
2009-11-01 11:00:00 +00:00
return;
} else {
$address = $params['address'];
2020-11-15 15:12:32 +00:00
}
2009-11-01 11:00:00 +00:00
2020-11-15 15:12:32 +00:00
$text = $address;
2009-11-01 11:00:00 +00:00
// netscape and mozilla do not decode %40 (@) in BCC field (bug?)
// so, don't encode it.
$search = array('%40', '%2C');
2020-11-15 15:12:32 +00:00
$replace = array('@', ',');
2009-11-01 11:00:00 +00:00
$mail_parms = array();
2020-11-15 15:12:32 +00:00
foreach ($params as $var => $value) {
2009-11-01 11:00:00 +00:00
switch ($var) {
case 'cc':
case 'bcc':
case 'followupto':
if (!empty($value))
2020-11-15 15:12:32 +00:00
$mail_parms[] = $var . '=' . str_replace($search, $replace, rawurlencode($value));
2009-11-01 11:00:00 +00:00
break;
2020-11-15 15:12:32 +00:00
2009-11-01 11:00:00 +00:00
case 'subject':
case 'newsgroups':
2020-11-15 15:12:32 +00:00
$mail_parms[] = $var . '=' . rawurlencode($value);
2009-11-01 11:00:00 +00:00
break;
case 'extra':
case 'text':
$$var = $value;
default:
2020-11-15 15:12:32 +00:00
}
}
2009-11-01 11:00:00 +00:00
$mail_parm_vals = '';
2020-11-15 15:12:32 +00:00
for ($i = 0; $i < count($mail_parms); $i++) {
$mail_parm_vals .= (0 == $i) ? '?' : '&';
2009-11-01 11:00:00 +00:00
$mail_parm_vals .= $mail_parms[$i];
2020-11-15 15:12:32 +00:00
}
2009-11-01 11:00:00 +00:00
$address .= $mail_parm_vals;
$encode = (empty($params['encode'])) ? 'none' : $params['encode'];
2020-11-15 15:12:32 +00:00
if (!in_array($encode, array('javascript', 'javascript_charcode', 'hex', 'none'))) {
throw new Exception ("mailto: 'encode' parameter must be none, javascript or hex");
2009-11-01 11:00:00 +00:00
return;
2020-11-15 15:12:32 +00:00
}
2009-11-01 11:00:00 +00:00
2020-11-15 15:12:32 +00:00
if ($encode == 'javascript') {
$string = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');';
2009-11-01 11:00:00 +00:00
$js_encode = '';
2020-11-15 15:12:32 +00:00
for ($x = 0; $x < strlen($string); $x++) {
2009-11-01 11:00:00 +00:00
$js_encode .= '%' . bin2hex($string[$x]);
2020-11-15 15:12:32 +00:00
}
2009-11-01 11:00:00 +00:00
2020-11-15 15:12:32 +00:00
return '<script type="text/javascript">eval(unescape(\'' . $js_encode . '\'))</script>';
} elseif ($encode == 'javascript_charcode') {
$string = '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>';
2009-11-01 11:00:00 +00:00
2020-11-15 15:12:32 +00:00
for($x = 0, $y = strlen($string); $x < $y; $x++) {
$ord[] = ord($string[$x]);
}
2009-11-01 11:00:00 +00:00
$_ret = "<script type=\"text/javascript\" language=\"javascript\">\n";
$_ret .= "<!--\n";
$_ret .= "{document.write(String.fromCharCode(";
2020-11-15 15:12:32 +00:00
$_ret .= implode(',', $ord);
2009-11-01 11:00:00 +00:00
$_ret .= "))";
$_ret .= "}\n";
$_ret .= "//-->\n";
$_ret .= "</script>\n";
2020-11-15 15:12:32 +00:00
2009-11-01 11:00:00 +00:00
return $_ret;
} elseif ($encode == 'hex') {
2020-11-15 15:12:32 +00:00
preg_match('!^(.*)(\?.*)$!', $address, $match);
if (!empty($match[2])) {
throw new Exception ("mailto: hex encoding does not work with extra attributes. Try javascript.");
2009-11-01 11:00:00 +00:00
return;
2020-11-15 15:12:32 +00:00
}
2009-11-01 11:00:00 +00:00
$address_encode = '';
2020-11-15 15:12:32 +00:00
for ($x = 0; $x < strlen($address); $x++) {
if (preg_match('!\w!', $address[$x])) {
2009-11-01 11:00:00 +00:00
$address_encode .= '%' . bin2hex($address[$x]);
} else {
$address_encode .= $address[$x];
2020-11-15 15:12:32 +00:00
}
}
2009-11-01 11:00:00 +00:00
$text_encode = '';
2020-11-15 15:12:32 +00:00
for ($x = 0; $x < strlen($text); $x++) {
$text_encode .= '&#x' . bin2hex($text[$x]) . ';';
}
2009-11-01 11:00:00 +00:00
$mailto = "&#109;&#97;&#105;&#108;&#116;&#111;&#58;";
2020-11-15 15:12:32 +00:00
return '<a href="' . $mailto . $address_encode . '" ' . $extra . '>' . $text_encode . '</a>';
2009-11-01 11:00:00 +00:00
} else {
// no encoding
2020-11-15 15:12:32 +00:00
return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>';
}
}
2009-11-01 11:00:00 +00:00
?>