2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Library of conversion functions, implemented as static methods.
|
|
|
|
*
|
|
|
|
* The methods are all of the form (format)2(format), where the format is one of
|
|
|
|
*
|
|
|
|
* raw: A UTF8 string
|
|
|
|
* attr: A UTF8 string suitable for inclusion in an HTML attribute
|
|
|
|
* js: A UTF8 string suitable for inclusion in a double-quoted javascript string.
|
|
|
|
*
|
|
|
|
* array: A PHP associative array
|
|
|
|
* json: JavaScript object notation
|
|
|
|
*
|
|
|
|
* html: HTML source suitable for use in a page or email
|
|
|
|
* text: Plain-text content, suitable for display to a user as-is, or insertion in a plaintext email.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* Objects of type {@link ViewableData} can have an "escaping type",
|
|
|
|
* which determines if they are automatically escaped before output by {@link SSViewer}.
|
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-02-25 03:10:37 +01:00
|
|
|
* @subpackage misc
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2010-05-25 06:19:38 +02:00
|
|
|
class Convert {
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2009-05-20 05:09:50 +02:00
|
|
|
/**
|
|
|
|
* Convert a value to be suitable for an XML attribute.
|
|
|
|
*
|
|
|
|
* @param array|string $val String to escape, or array of strings
|
|
|
|
* @return array|string
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function raw2att($val) {
|
2010-12-16 23:55:17 +01:00
|
|
|
return self::raw2xml($val);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2010-12-16 23:55:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a value to be suitable for an HTML attribute.
|
|
|
|
*
|
|
|
|
* @param string|array $val String to escape, or array of strings
|
|
|
|
* @return array|string
|
|
|
|
*/
|
|
|
|
static function raw2htmlatt($val) {
|
|
|
|
return self::raw2att($val);
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2009-05-20 05:09:50 +02:00
|
|
|
* Convert a value to be suitable for an HTML attribute.
|
|
|
|
*
|
|
|
|
* This is useful for converting human readable values into
|
|
|
|
* a value suitable for an ID or NAME attribute.
|
|
|
|
*
|
2007-07-19 12:40:28 +02:00
|
|
|
* @see http://www.w3.org/TR/REC-html40/types.html#type-cdata
|
2009-05-20 05:09:50 +02:00
|
|
|
* @uses Convert::raw2att()
|
|
|
|
* @param array|string $val String to escape, or array of strings
|
|
|
|
* @return array|string
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2010-12-16 23:55:17 +01:00
|
|
|
static function raw2htmlname($val) {
|
2007-07-19 12:40:28 +02:00
|
|
|
if(is_array($val)) {
|
2010-12-16 23:55:17 +01:00
|
|
|
foreach($val as $k => $v) $val[$k] = self::raw2htmlname($v);
|
2007-07-19 12:40:28 +02:00
|
|
|
return $val;
|
|
|
|
} else {
|
2010-12-16 23:55:17 +01:00
|
|
|
return preg_replace('/[^a-zA-Z0-9\-_:.]+/','', $val);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 07:19:48 +01:00
|
|
|
/**
|
|
|
|
* Ensure that text is properly escaped for XML.
|
2009-05-20 05:09:50 +02:00
|
|
|
*
|
|
|
|
* @see http://www.w3.org/TR/REC-xml/#dt-escape
|
2009-01-05 07:19:48 +01:00
|
|
|
* @param array|string $val String to escape, or array of strings
|
|
|
|
* @return array|string
|
|
|
|
*/
|
|
|
|
static function raw2xml($val) {
|
2007-07-19 12:40:28 +02:00
|
|
|
if(is_array($val)) {
|
|
|
|
foreach($val as $k => $v) $val[$k] = self::raw2xml($v);
|
|
|
|
return $val;
|
|
|
|
} else {
|
2010-12-16 23:55:17 +01:00
|
|
|
return htmlspecialchars($val, ENT_QUOTES, 'UTF-8');
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2009-01-05 07:19:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that text is properly escaped for Javascript.
|
|
|
|
*
|
|
|
|
* @param array|string $val String to escape, or array of strings
|
|
|
|
* @return array|string
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function raw2js($val) {
|
|
|
|
if(is_array($val)) {
|
|
|
|
foreach($val as $k => $v) $val[$k] = self::raw2js($v);
|
|
|
|
return $val;
|
|
|
|
} else {
|
2009-01-05 07:19:48 +01:00
|
|
|
return str_replace(array("\\", '"', "\n", "\r", "'"), array("\\\\", '\"', '\n', '\r', "\\'"), $val);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2012-03-30 05:18:14 +02:00
|
|
|
|
2008-08-09 08:46:48 +02:00
|
|
|
/**
|
2012-03-30 05:18:14 +02:00
|
|
|
* Encode a value as a JSON encoded string.
|
2008-08-09 08:46:48 +02:00
|
|
|
*
|
2012-03-30 05:18:14 +02:00
|
|
|
* @param mixed $val Value to be encoded
|
|
|
|
* @return string JSON encoded string
|
2008-08-09 08:46:48 +02:00
|
|
|
*/
|
|
|
|
static function raw2json($val) {
|
2012-03-30 05:18:14 +02:00
|
|
|
return json_encode($val);
|
2008-08-09 08:46:48 +02:00
|
|
|
}
|
2012-03-30 05:18:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Encode an array as a JSON encoded string.
|
|
|
|
* THis is an alias to {@link raw2json()}
|
|
|
|
*
|
|
|
|
* @param array $val Array to convert
|
|
|
|
* @return string JSON encoded string
|
|
|
|
*/
|
|
|
|
static function array2json($val) {
|
|
|
|
return self::raw2json($val);
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static function raw2sql($val) {
|
|
|
|
if(is_array($val)) {
|
|
|
|
foreach($val as $k => $v) $val[$k] = self::raw2sql($v);
|
|
|
|
return $val;
|
|
|
|
} else {
|
2009-03-11 22:44:10 +01:00
|
|
|
return DB::getConn()->addslashes($val);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-05-20 05:09:50 +02:00
|
|
|
* Convert XML to raw text.
|
2008-10-16 13:49:51 +02:00
|
|
|
* @uses html2raw()
|
2007-07-19 12:40:28 +02:00
|
|
|
* @todo Currently &#xxx; entries are stripped; they should be converted
|
|
|
|
*/
|
|
|
|
static function xml2raw($val) {
|
|
|
|
if(is_array($val)) {
|
|
|
|
foreach($val as $k => $v) $val[$k] = self::xml2raw($v);
|
|
|
|
return $val;
|
|
|
|
} else {
|
2009-05-20 05:09:50 +02:00
|
|
|
// More complex text needs to use html2raw instead
|
2007-07-19 12:40:28 +02:00
|
|
|
if(strpos($val,'<') !== false) return self::html2raw($val);
|
2010-12-16 23:55:17 +01:00
|
|
|
else return html_entity_decode($val, ENT_QUOTES, 'UTF-8');
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2012-03-30 05:18:14 +02:00
|
|
|
|
2008-08-09 09:03:24 +02:00
|
|
|
/**
|
2010-05-25 05:53:58 +02:00
|
|
|
* Convert a JSON encoded string into an object.
|
2008-08-09 09:03:24 +02:00
|
|
|
*
|
|
|
|
* @param string $val
|
2012-03-30 05:23:55 +02:00
|
|
|
* @return object|boolean
|
2008-08-09 09:03:24 +02:00
|
|
|
*/
|
|
|
|
static function json2obj($val) {
|
2012-03-30 05:18:14 +02:00
|
|
|
return json_decode($val);
|
2008-08-09 09:03:24 +02:00
|
|
|
}
|
|
|
|
|
2008-10-16 13:49:51 +02:00
|
|
|
/**
|
2009-05-21 00:52:33 +02:00
|
|
|
* Convert a JSON string into an array.
|
|
|
|
*
|
2008-10-16 13:49:51 +02:00
|
|
|
* @uses json2obj
|
2009-05-21 00:52:33 +02:00
|
|
|
* @param string $val JSON string to convert
|
|
|
|
* @return array|boolean
|
2008-10-16 13:49:51 +02:00
|
|
|
*/
|
2008-08-09 09:03:24 +02:00
|
|
|
static function json2array($val) {
|
2012-03-30 05:18:14 +02:00
|
|
|
return json_decode($val, true);
|
2008-08-09 09:03:24 +02:00
|
|
|
}
|
|
|
|
|
2008-10-16 13:49:51 +02:00
|
|
|
/**
|
2010-12-20 04:18:51 +01:00
|
|
|
* Converts an XML string to a PHP array
|
|
|
|
*
|
2011-10-07 22:57:04 +02:00
|
|
|
* @uses recursiveXMLToArray()
|
2010-12-20 04:18:51 +01:00
|
|
|
* @param string
|
|
|
|
*
|
|
|
|
* @return array
|
2008-10-16 13:49:51 +02:00
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function xml2array($val) {
|
2008-08-09 09:03:24 +02:00
|
|
|
$xml = new SimpleXMLElement($val);
|
2008-08-25 01:39:32 +02:00
|
|
|
return self::recursiveXMLToArray($xml);
|
|
|
|
}
|
2009-05-20 06:18:28 +02:00
|
|
|
|
|
|
|
/**
|
2010-12-20 04:18:51 +01:00
|
|
|
* Convert a XML string to a PHP array recursively. Do not
|
|
|
|
* call this function directly, Please use {@link Convert::xml2array()}
|
|
|
|
*
|
|
|
|
* @param SimpleXMLElement
|
|
|
|
*
|
|
|
|
* @return mixed
|
2009-05-20 06:18:28 +02:00
|
|
|
*/
|
2008-10-16 13:49:51 +02:00
|
|
|
protected static function recursiveXMLToArray($xml) {
|
2009-07-16 05:44:15 +02:00
|
|
|
if(is_object($xml) && get_class($xml) == 'SimpleXMLElement') {
|
2009-05-20 06:18:28 +02:00
|
|
|
$attributes = $xml->attributes();
|
|
|
|
foreach($attributes as $k => $v) {
|
|
|
|
if($v) $a[$k] = (string) $v;
|
|
|
|
}
|
|
|
|
$x = $xml;
|
|
|
|
$xml = get_object_vars($xml);
|
|
|
|
}
|
|
|
|
if(is_array($xml)) {
|
|
|
|
if(count($xml) == 0) return (string) $x; // for CDATA
|
|
|
|
foreach($xml as $key => $value) {
|
|
|
|
$r[$key] = self::recursiveXMLToArray($value);
|
|
|
|
}
|
|
|
|
if(isset($a)) $r['@'] = $a; // Attributes
|
|
|
|
return $r;
|
|
|
|
}
|
2010-12-20 04:18:51 +01:00
|
|
|
|
2009-05-20 06:18:28 +02:00
|
|
|
return (string) $xml;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a link if the string is a valid URL
|
2010-12-20 04:18:51 +01:00
|
|
|
*
|
2007-07-19 12:40:28 +02:00
|
|
|
* @param string The string to linkify
|
|
|
|
* @return A link to the URL if string is a URL
|
|
|
|
*/
|
|
|
|
static function linkIfMatch($string) {
|
|
|
|
if( preg_match( '/^[a-z+]+\:\/\/[a-zA-Z0-9$-_.+?&=!*\'()%]+$/', $string ) )
|
|
|
|
return "<a style=\"white-space: nowrap\" href=\"$string\">$string</a>";
|
|
|
|
else
|
|
|
|
return $string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple conversion of HTML to plaintext.
|
|
|
|
*
|
|
|
|
* @param $data string
|
|
|
|
* @param $preserveLinks boolean
|
|
|
|
* @param $wordwrap array
|
|
|
|
*/
|
|
|
|
static function html2raw($data, $preserveLinks = false, $wordWrap = 60, $config = null) {
|
|
|
|
$defaultConfig = array(
|
|
|
|
'PreserveLinks' => false,
|
|
|
|
'ReplaceBoldAsterisk' => true,
|
|
|
|
'CompressWhitespace' => true,
|
|
|
|
'ReplaceImagesWithAlt' => true,
|
|
|
|
);
|
|
|
|
if(isset($config)) {
|
|
|
|
$config = array_merge($defaultConfig,$config);
|
|
|
|
} else {
|
|
|
|
$config = $defaultConfig;
|
|
|
|
}
|
|
|
|
|
2012-02-14 19:55:52 +01:00
|
|
|
$data = preg_replace("/<style([^A-Za-z0-9>][^>]*)?>.*?<\/style[^>]*>/is","", $data);
|
|
|
|
$data = preg_replace("/<script([^A-Za-z0-9>][^>]*)?>.*?<\/script[^>]*>/is","", $data);
|
2010-10-15 05:51:55 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($config['ReplaceBoldAsterisk']) {
|
2010-10-15 05:51:55 +02:00
|
|
|
$data = preg_replace('%<(strong|b)( [^>]*)?>|</(strong|b)>%i','*',$data);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2010-10-15 05:51:55 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Expand hyperlinks
|
2009-06-08 02:11:22 +02:00
|
|
|
if(!$preserveLinks && !$config['PreserveLinks']) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$data = preg_replace('/<a[^>]*href\s*=\s*"([^"]*)">(.*?)<\/a>/ie', "Convert::html2raw('\\2').'[\\1]'", $data);
|
|
|
|
$data = preg_replace('/<a[^>]*href\s*=\s*([^ ]*)>(.*?)<\/a>/ie', "Convert::html2raw('\\2').'[\\1]'", $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace images with their alt tags
|
|
|
|
if($config['ReplaceImagesWithAlt']) {
|
2012-02-27 22:14:02 +01:00
|
|
|
$data = preg_replace('/<img[^>]*alt *= *"([^"]*)"[^>]*>/i', ' \\1 ', $data);
|
|
|
|
$data = preg_replace('/<img[^>]*alt *= *([^ ]*)[^>]*>/i', ' \\1 ', $data);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compress whitespace
|
|
|
|
if($config['CompressWhitespace']) {
|
2012-02-27 22:14:02 +01:00
|
|
|
$data = preg_replace("/\s+/", " ", $data);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse newline tags
|
2012-02-27 22:14:02 +01:00
|
|
|
$data = preg_replace("/\s*<[Hh][1-6]([^A-Za-z0-9>][^>]*)?> */", "\n\n", $data);
|
|
|
|
$data = preg_replace("/\s*<[Pp]([^A-Za-z0-9>][^>]*)?> */", "\n\n", $data);
|
|
|
|
$data = preg_replace("/\s*<[Dd][Ii][Vv]([^A-Za-z0-9>][^>]*)?> */", "\n\n", $data);
|
|
|
|
$data = preg_replace("/\n\n\n+/", "\n\n", $data);
|
|
|
|
|
|
|
|
$data = preg_replace("/<[Bb][Rr]([^A-Za-z0-9>][^>]*)?> */", "\n", $data);
|
|
|
|
$data = preg_replace("/<[Tt][Rr]([^A-Za-z0-9>][^>]*)?> */", "\n", $data);
|
2012-02-28 00:44:27 +01:00
|
|
|
$data = preg_replace("/<\/[Tt][Dd]([^A-Za-z0-9>][^>]*)?> */", " ", $data);
|
2007-07-19 12:40:28 +02:00
|
|
|
$data = preg_replace('/<\/p>/i', "\n\n", $data );
|
|
|
|
|
|
|
|
// Replace HTML entities
|
2008-10-25 08:05:27 +02:00
|
|
|
//$data = preg_replace("/&#([0-9]+);/e", 'chr(\1)', $data);
|
|
|
|
//$data = str_replace(array("<",">","&"," "), array("<", ">", "&", " "), $data);
|
|
|
|
$data = html_entity_decode($data, ENT_COMPAT , 'UTF-8');
|
2007-07-19 12:40:28 +02:00
|
|
|
// Remove all tags (but optionally keep links)
|
|
|
|
|
|
|
|
// strip_tags seemed to be restricting the length of the output
|
|
|
|
// arbitrarily. This essentially does the same thing.
|
2009-06-08 02:11:22 +02:00
|
|
|
if(!$preserveLinks && !$config['PreserveLinks']) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$data = preg_replace('/<\/?[^>]*>/','', $data);
|
|
|
|
} else {
|
|
|
|
$data = strip_tags($data, '<a>');
|
|
|
|
}
|
|
|
|
return trim(wordwrap(trim($data), $wordWrap));
|
|
|
|
}
|
2012-02-27 22:14:02 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* There are no real specifications on correctly encoding mailto-links,
|
|
|
|
* but this seems to be compatible with most of the user-agents.
|
|
|
|
* Does nearly the same as rawurlencode().
|
|
|
|
* Please only encode the values, not the whole url, e.g.
|
|
|
|
* "mailto:test@test.com?subject=" . Convert::raw2mailto($subject)
|
|
|
|
*
|
|
|
|
* @param $data string
|
|
|
|
* @return string
|
|
|
|
* @see http://www.ietf.org/rfc/rfc1738.txt
|
|
|
|
*/
|
|
|
|
static function raw2mailto($data) {
|
|
|
|
return str_ireplace(
|
|
|
|
array("\n",'?','=',' ','(',')','&','@','"','\'',';'),
|
|
|
|
array('%0A','%3F','%3D','%20','%28','%29','%26','%40','%22','%27','%3B'),
|
|
|
|
$data
|
|
|
|
);
|
|
|
|
}
|
2011-02-21 22:53:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a string (normally a title) to a string suitable for using in
|
2011-11-14 12:26:51 +01:00
|
|
|
* urls and other html attributes. Uses {@link URLSegmentFilter}.
|
2011-02-21 22:53:58 +01:00
|
|
|
*
|
|
|
|
* @param string
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function raw2url($title) {
|
2012-04-04 16:59:30 +02:00
|
|
|
$f = URLSegmentFilter::create();
|
2011-11-14 12:26:51 +01:00
|
|
|
return $f->filter($title);
|
2011-02-21 22:53:58 +01:00
|
|
|
}
|
2012-02-27 22:14:02 +01:00
|
|
|
}
|