Chris@0
|
1 <?php
|
Chris@0
|
2
|
Chris@0
|
3 /**
|
Chris@0
|
4 * @file
|
Chris@0
|
5 * Provides Unicode-related conversions and operations.
|
Chris@0
|
6 */
|
Chris@0
|
7
|
Chris@0
|
8 use Drupal\Component\Utility\Unicode;
|
Chris@0
|
9
|
Chris@0
|
10 /**
|
Chris@0
|
11 * Returns Unicode library status and errors.
|
Chris@0
|
12 */
|
Chris@0
|
13 /**
|
Chris@0
|
14 * Moves unicode_requirements() logic to system_requirements().
|
Chris@0
|
15 *
|
Chris@0
|
16 * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0.
|
Chris@0
|
17 *
|
Chris@0
|
18 * @see https://www.drupal.org/node/2884698
|
Chris@0
|
19 */
|
Chris@0
|
20 function unicode_requirements() {
|
Chris@0
|
21 @trigger_error('unicode_requirements() is deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. There is no replacement; system_requirements() now includes the logic instead. See https://www.drupal.org/node/2884698', E_USER_DEPRECATED);
|
Chris@0
|
22
|
Chris@0
|
23 $libraries = [
|
Chris@0
|
24 Unicode::STATUS_SINGLEBYTE => t('Standard PHP'),
|
Chris@0
|
25 Unicode::STATUS_MULTIBYTE => t('PHP Mbstring Extension'),
|
Chris@0
|
26 Unicode::STATUS_ERROR => t('Error'),
|
Chris@0
|
27 ];
|
Chris@0
|
28 $severities = [
|
Chris@0
|
29 Unicode::STATUS_SINGLEBYTE => REQUIREMENT_WARNING,
|
Chris@0
|
30 Unicode::STATUS_MULTIBYTE => NULL,
|
Chris@0
|
31 Unicode::STATUS_ERROR => REQUIREMENT_ERROR,
|
Chris@0
|
32 ];
|
Chris@0
|
33 $failed_check = Unicode::check();
|
Chris@0
|
34 $library = Unicode::getStatus();
|
Chris@0
|
35
|
Chris@0
|
36 $requirements['unicode'] = [
|
Chris@0
|
37 'title' => t('Unicode library'),
|
Chris@0
|
38 'value' => $libraries[$library],
|
Chris@0
|
39 'severity' => $severities[$library],
|
Chris@0
|
40 ];
|
Chris@0
|
41 switch ($failed_check) {
|
Chris@0
|
42 case 'mb_strlen':
|
Chris@0
|
43 $requirements['unicode']['description'] = t('Operations on Unicode strings are emulated on a best-effort basis. Install the <a href="http://php.net/mbstring">PHP mbstring extension</a> for improved Unicode support.');
|
Chris@0
|
44 break;
|
Chris@0
|
45
|
Chris@0
|
46 case 'mbstring.func_overload':
|
Chris@0
|
47 $requirements['unicode']['description'] = t('Multibyte string function overloading in PHP is active and must be disabled. Check the php.ini <em>mbstring.func_overload</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
|
Chris@0
|
48 break;
|
Chris@0
|
49
|
Chris@0
|
50 case 'mbstring.encoding_translation':
|
Chris@0
|
51 $requirements['unicode']['description'] = t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.encoding_translation</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
|
Chris@0
|
52 break;
|
Chris@0
|
53
|
Chris@0
|
54 case 'mbstring.http_input':
|
Chris@0
|
55 $requirements['unicode']['description'] = t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.http_input</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
|
Chris@0
|
56 break;
|
Chris@0
|
57
|
Chris@0
|
58 case 'mbstring.http_output':
|
Chris@0
|
59 $requirements['unicode']['description'] = t('Multibyte string output conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.http_output</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
|
Chris@0
|
60 break;
|
Chris@0
|
61 }
|
Chris@0
|
62
|
Chris@0
|
63 return $requirements;
|
Chris@0
|
64 }
|
Chris@0
|
65
|
Chris@0
|
66 /**
|
Chris@0
|
67 * Prepares a new XML parser.
|
Chris@0
|
68 *
|
Chris@0
|
69 * This is a wrapper around xml_parser_create() which extracts the encoding
|
Chris@0
|
70 * from the XML data first and sets the output encoding to UTF-8. This function
|
Chris@0
|
71 * should be used instead of xml_parser_create(), because PHP 4's XML parser
|
Chris@0
|
72 * doesn't check the input encoding itself. "Starting from PHP 5, the input
|
Chris@0
|
73 * encoding is automatically detected, so that the encoding parameter specifies
|
Chris@0
|
74 * only the output encoding."
|
Chris@0
|
75 *
|
Chris@0
|
76 * This is also where unsupported encodings will be converted. Callers should
|
Chris@0
|
77 * take this into account: $data might have been changed after the call.
|
Chris@0
|
78 *
|
Chris@0
|
79 * @param $data
|
Chris@0
|
80 * The XML data which will be parsed later.
|
Chris@0
|
81 *
|
Chris@0
|
82 * @return
|
Chris@0
|
83 * An XML parser object or FALSE on error.
|
Chris@0
|
84 *
|
Chris@0
|
85 * @ingroup php_wrappers
|
Chris@0
|
86 *
|
Chris@0
|
87 * @deprecated in Drupal 8.3.0 and will bre removed in Drupal 9.0.0. Use
|
Chris@0
|
88 * xml_parser_create() and
|
Chris@0
|
89 * xml_parser_set_option($xml_parser, XML_OPTION_TARGET_ENCODING, 'utf-8')
|
Chris@0
|
90 * instead.
|
Chris@0
|
91 */
|
Chris@0
|
92 function drupal_xml_parser_create(&$data) {
|
Chris@0
|
93 // Default XML encoding is UTF-8
|
Chris@0
|
94 $encoding = 'utf-8';
|
Chris@0
|
95 $bom = FALSE;
|
Chris@0
|
96
|
Chris@0
|
97 // Check for UTF-8 byte order mark (PHP5's XML parser doesn't handle it).
|
Chris@0
|
98 if (!strncmp($data, "\xEF\xBB\xBF", 3)) {
|
Chris@0
|
99 $bom = TRUE;
|
Chris@0
|
100 $data = substr($data, 3);
|
Chris@0
|
101 }
|
Chris@0
|
102
|
Chris@0
|
103 // Check for an encoding declaration in the XML prolog if no BOM was found.
|
Chris@0
|
104 if (!$bom && preg_match('/^<\?xml[^>]+encoding="(.+?)"/', $data, $match)) {
|
Chris@0
|
105 $encoding = $match[1];
|
Chris@0
|
106 }
|
Chris@0
|
107
|
Chris@0
|
108 // Unsupported encodings are converted here into UTF-8.
|
Chris@0
|
109 $php_supported = ['utf-8', 'iso-8859-1', 'us-ascii'];
|
Chris@0
|
110 if (!in_array(strtolower($encoding), $php_supported)) {
|
Chris@0
|
111 $out = Unicode::convertToUtf8($data, $encoding);
|
Chris@0
|
112 if ($out !== FALSE) {
|
Chris@0
|
113 $encoding = 'utf-8';
|
Chris@0
|
114 $data = preg_replace('/^(<\?xml[^>]+encoding)="(.+?)"/', '\\1="utf-8"', $out);
|
Chris@0
|
115 }
|
Chris@0
|
116 else {
|
Chris@0
|
117 \Drupal::logger('php')->warning('Could not convert XML encoding %s to UTF-8.', ['%s' => $encoding]);
|
Chris@0
|
118 return FALSE;
|
Chris@0
|
119 }
|
Chris@0
|
120 }
|
Chris@0
|
121
|
Chris@0
|
122 $xml_parser = xml_parser_create($encoding);
|
Chris@0
|
123 xml_parser_set_option($xml_parser, XML_OPTION_TARGET_ENCODING, 'utf-8');
|
Chris@0
|
124 return $xml_parser;
|
Chris@0
|
125 }
|