]> git.mxchange.org Git - friendica.git/blob - src/Util/XML.php
Move methods to new Util/Strings class
[friendica.git] / src / Util / XML.php
1 <?php
2 /**
3  * @file src/Util/XML.php
4  */
5 namespace Friendica\Util;
6
7 use Friendica\Core\Logger;
8 use Friendica\Util\Strings;
9 use DOMXPath;
10 use SimpleXMLElement;
11
12 /**
13  * @brief This class contain methods to work with XML data
14  */
15 class XML
16 {
17         /**
18          * @brief Creates an XML structure out of a given array
19          *
20          * @param array  $array         The array of the XML structure that will be generated
21          * @param object $xml           The createdXML will be returned by reference
22          * @param bool   $remove_header Should the XML header be removed or not?
23          * @param array  $namespaces    List of namespaces
24          * @param bool   $root          interally used parameter. Mustn't be used from outside.
25          *
26          * @return string The created XML
27          */
28         public static function fromArray($array, &$xml, $remove_header = false, $namespaces = [], $root = true)
29         {
30                 if ($root) {
31                         foreach ($array as $key => $value) {
32                                 foreach ($namespaces as $nskey => $nsvalue) {
33                                         $key .= " xmlns".($nskey == "" ? "":":").$nskey.'="'.$nsvalue.'"';
34                                 }
35
36                                 if (is_array($value)) {
37                                         $root = new SimpleXMLElement("<".$key."/>");
38                                         self::fromArray($value, $root, $remove_header, $namespaces, false);
39                                 } else {
40                                         $root = new SimpleXMLElement("<".$key.">".Strings::escape($value)."</".$key.">");
41                                 }
42
43                                 $dom = dom_import_simplexml($root)->ownerDocument;
44                                 $dom->formatOutput = true;
45                                 $xml = $dom;
46
47                                 $xml_text = $dom->saveXML();
48
49                                 if ($remove_header) {
50                                         $xml_text = trim(substr($xml_text, 21));
51                                 }
52
53                                 return $xml_text;
54                         }
55                 }
56
57                 $element = null;
58                 foreach ($array as $key => $value) {
59                         if (!isset($element) && isset($xml)) {
60                                 $element = $xml;
61                         }
62
63                         if (is_integer($key)) {
64                                 if (isset($element)) {
65                                         if (is_scalar($value)) {
66                                                 $element[0] = $value;
67                                         } else {
68                                                 /// @todo: handle nested array values
69                                         }
70                                 }
71                                 continue;
72                         }
73
74                         $element_parts = explode(":", $key);
75                         if ((count($element_parts) > 1) && isset($namespaces[$element_parts[0]])) {
76                                 $namespace = $namespaces[$element_parts[0]];
77                         } elseif (isset($namespaces[""])) {
78                                 $namespace = $namespaces[""];
79                         } else {
80                                 $namespace = null;
81                         }
82
83                         // Remove undefined namespaces from the key
84                         if ((count($element_parts) > 1) && is_null($namespace)) {
85                                 $key = $element_parts[1];
86                         }
87
88                         if (substr($key, 0, 11) == "@attributes") {
89                                 if (!isset($element) || !is_array($value)) {
90                                         continue;
91                                 }
92
93                                 foreach ($value as $attr_key => $attr_value) {
94                                         $element_parts = explode(":", $attr_key);
95                                         if ((count($element_parts) > 1) && isset($namespaces[$element_parts[0]])) {
96                                                 $namespace = $namespaces[$element_parts[0]];
97                                         } else {
98                                                 $namespace = null;
99                                         }
100
101                                         $element->addAttribute($attr_key, $attr_value, $namespace);
102                                 }
103
104                                 continue;
105                         }
106
107                         if (!is_array($value)) {
108                                 $element = $xml->addChild($key, Strings::escape($value), $namespace);
109                         } elseif (is_array($value)) {
110                                 $element = $xml->addChild($key, null, $namespace);
111                                 self::fromArray($value, $element, $remove_header, $namespaces, false);
112                         }
113                 }
114         }
115
116         /**
117          * @brief Copies an XML object
118          *
119          * @param object $source      The XML source
120          * @param object $target      The XML target
121          * @param string $elementname Name of the XML element of the target
122          * @return void
123          */
124         public static function copy(&$source, &$target, $elementname)
125         {
126                 if (count($source->children()) == 0) {
127                         $target->addChild($elementname, Strings::escape($source));
128                 } else {
129                         $child = $target->addChild($elementname);
130                         foreach ($source->children() as $childfield => $childentry) {
131                                 self::copy($childentry, $child, $childfield);
132                         }
133                 }
134         }
135
136         /**
137          * @brief Create an XML element
138          *
139          * @param object $doc        XML root
140          * @param string $element    XML element name
141          * @param string $value      XML value
142          * @param array  $attributes array containing the attributes
143          *
144          * @return object XML element object
145          */
146         public static function createElement($doc, $element, $value = "", $attributes = [])
147         {
148                 $element = $doc->createElement($element, Strings::escape($value));
149
150                 foreach ($attributes as $key => $value) {
151                         $attribute = $doc->createAttribute($key);
152                         $attribute->value = Strings::escape($value);
153                         $element->appendChild($attribute);
154                 }
155                 return $element;
156         }
157
158         /**
159          * @brief Create an XML and append it to the parent object
160          *
161          * @param object $doc        XML root
162          * @param object $parent     parent object
163          * @param string $element    XML element name
164          * @param string $value      XML value
165          * @param array  $attributes array containing the attributes
166          * @return void
167          */
168         public static function addElement($doc, $parent, $element, $value = "", $attributes = [])
169         {
170                 $element = self::createElement($doc, $element, $value, $attributes);
171                 $parent->appendChild($element);
172         }
173
174         /**
175          * @brief Convert an XML document to a normalised, case-corrected array
176          *   used by webfinger
177          *
178          * @param object  $xml_element     The XML document
179          * @param integer $recursion_depth recursion counter for internal use - default 0
180          *                                 internal use, recursion counter
181          *
182          * @return array | string The array from the xml element or the string
183          */
184         public static function elementToArray($xml_element, &$recursion_depth = 0)
185         {
186                 // If we're getting too deep, bail out
187                 if ($recursion_depth > 512) {
188                         return(null);
189                 }
190
191                 $xml_element_copy = '';
192                 if (!is_string($xml_element)
193                         && !is_array($xml_element)
194                         && (get_class($xml_element) == 'SimpleXMLElement')
195                 ) {
196                         $xml_element_copy = $xml_element;
197                         $xml_element = get_object_vars($xml_element);
198                 }
199
200                 if (is_array($xml_element)) {
201                         $result_array = [];
202                         if (count($xml_element) <= 0) {
203                                 return (trim(strval($xml_element_copy)));
204                         }
205
206                         foreach ($xml_element as $key => $value) {
207                                 $recursion_depth++;
208                                 $result_array[strtolower($key)] = self::elementToArray($value, $recursion_depth);
209                                 $recursion_depth--;
210                         }
211
212                         if ($recursion_depth == 0) {
213                                 $temp_array = $result_array;
214                                 $result_array = [
215                                         strtolower($xml_element_copy->getName()) => $temp_array,
216                                 ];
217                         }
218
219                         return ($result_array);
220                 } else {
221                         return (trim(strval($xml_element)));
222                 }
223         }
224
225         /**
226          * @brief Convert the given XML text to an array in the XML structure.
227          *
228          * Xml::toArray() will convert the given XML text to an array in the XML structure.
229          * Link: http://www.bin-co.com/php/scripts/xml2array/
230          * Portions significantly re-written by mike@macgirvin.com for Friendica
231          * (namespaces, lowercase tags, get_attribute default changed, more...)
232          *
233          * Examples: $array =  Xml::toArray(file_get_contents('feed.xml'));
234          *              $array =  Xml::toArray(file_get_contents('feed.xml', true, 1, 'attribute'));
235          *
236          * @param object  $contents       The XML text
237          * @param boolean $namespaces     True or false include namespace information
238          *                                    in the returned array as array elements.
239          * @param integer $get_attributes 1 or 0. If this is 1 the function will get the attributes as well as the tag values -
240          *                                    this results in a different array structure in the return value.
241          * @param string  $priority       Can be 'tag' or 'attribute'. This will change the way the resulting
242          *                                    array sturcture. For 'tag', the tags are given more importance.
243          *
244          * @return array The parsed XML in an array form. Use print_r() to see the resulting array structure.
245          */
246         public static function toArray($contents, $namespaces = true, $get_attributes = 1, $priority = 'attribute')
247         {
248                 if (!$contents) {
249                         return [];
250                 }
251
252                 if (!function_exists('xml_parser_create')) {
253                         Logger::log('Xml::toArray: parser function missing');
254                         return [];
255                 }
256
257
258                 libxml_use_internal_errors(true);
259                 libxml_clear_errors();
260
261                 if ($namespaces) {
262                         $parser = @xml_parser_create_ns("UTF-8", ':');
263                 } else {
264                         $parser = @xml_parser_create();
265                 }
266
267                 if (! $parser) {
268                         Logger::log('Xml::toArray: xml_parser_create: no resource');
269                         return [];
270                 }
271
272                 xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
273                 // http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss
274                 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
275                 xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
276                 @xml_parse_into_struct($parser, trim($contents), $xml_values);
277                 @xml_parser_free($parser);
278
279                 if (! $xml_values) {
280                         Logger::log('Xml::toArray: libxml: parse error: ' . $contents, Logger::DATA);
281                         foreach (libxml_get_errors() as $err) {
282                                 Logger::log('libxml: parse: ' . $err->code . " at " . $err->line . ":" . $err->column . " : " . $err->message, Logger::DATA);
283                         }
284                         libxml_clear_errors();
285                         return;
286                 }
287
288                 //Initializations
289                 $xml_array = [];
290                 $parents = [];
291                 $opened_tags = [];
292                 $arr = [];
293
294                 $current = &$xml_array; // Reference
295
296                 // Go through the tags.
297                 $repeated_tag_index = []; // Multiple tags with same name will be turned into an array
298                 foreach ($xml_values as $data) {
299                         $tag        = $data['tag'];
300                         $type       = $data['type'];
301                         $level      = $data['level'];
302                         $attributes = isset($data['attributes']) ? $data['attributes'] : null;
303                         $value      = isset($data['value']) ? $data['value'] : null;
304
305                         $result = [];
306                         $attributes_data = [];
307
308                         if (isset($value)) {
309                                 if ($priority == 'tag') {
310                                         $result = $value;
311                                 } else {
312                                         $result['value'] = $value; // Put the value in a assoc array if we are in the 'Attribute' mode
313                                 }
314                         }
315
316                         //Set the attributes too.
317                         if (isset($attributes) and $get_attributes) {
318                                 foreach ($attributes as $attr => $val) {
319                                         if ($priority == 'tag') {
320                                                 $attributes_data[$attr] = $val;
321                                         } else {
322                                                 $result['@attributes'][$attr] = $val; // Set all the attributes in a array called 'attr'
323                                         }
324                                 }
325                         }
326
327                         // See tag status and do the needed.
328                         if ($namespaces && strpos($tag, ':')) {
329                                 $namespc = substr($tag, 0, strrpos($tag, ':'));
330                                 $tag = strtolower(substr($tag, strlen($namespc)+1));
331                                 $result['@namespace'] = $namespc;
332                         }
333                         $tag = strtolower($tag);
334
335                         if ($type == "open") {   // The starting of the tag '<tag>'
336                                 $parent[$level-1] = &$current;
337                                 if (!is_array($current) || (!in_array($tag, array_keys($current)))) { // Insert New tag
338                                         $current[$tag] = $result;
339                                         if ($attributes_data) {
340                                                 $current[$tag. '_attr'] = $attributes_data;
341                                         }
342                                         $repeated_tag_index[$tag.'_'.$level] = 1;
343
344                                         $current = &$current[$tag];
345                                 } else { // There was another element with the same tag name
346
347                                         if (isset($current[$tag][0])) { // If there is a 0th element it is already an array
348                                                 $current[$tag][$repeated_tag_index[$tag.'_'.$level]] = $result;
349                                                 $repeated_tag_index[$tag.'_'.$level]++;
350                                         } else { // This section will make the value an array if multiple tags with the same name appear together
351                                                 $current[$tag] = [$current[$tag], $result]; // This will combine the existing item and the new item together to make an array
352                                                 $repeated_tag_index[$tag.'_'.$level] = 2;
353
354                                                 if (isset($current[$tag.'_attr'])) { // The attribute of the last(0th) tag must be moved as well
355                                                         $current[$tag]['0_attr'] = $current[$tag.'_attr'];
356                                                         unset($current[$tag.'_attr']);
357                                                 }
358                                         }
359                                         $last_item_index = $repeated_tag_index[$tag.'_'.$level]-1;
360                                         $current = &$current[$tag][$last_item_index];
361                                 }
362                         } elseif ($type == "complete") { // Tags that ends in 1 line '<tag />'
363                                 //See if the key is already taken.
364                                 if (!isset($current[$tag])) { //New Key
365                                         $current[$tag] = $result;
366                                         $repeated_tag_index[$tag.'_'.$level] = 1;
367                                         if ($priority == 'tag' and $attributes_data) {
368                                                 $current[$tag. '_attr'] = $attributes_data;
369                                         }
370                                 } else { // If taken, put all things inside a list(array)
371                                         if (isset($current[$tag][0]) and is_array($current[$tag])) { // If it is already an array...
372
373                                                 // ...push the new element into that array.
374                                                 $current[$tag][$repeated_tag_index[$tag.'_'.$level]] = $result;
375
376                                                 if ($priority == 'tag' and $get_attributes and $attributes_data) {
377                                                         $current[$tag][$repeated_tag_index[$tag.'_'.$level] . '_attr'] = $attributes_data;
378                                                 }
379                                                 $repeated_tag_index[$tag.'_'.$level]++;
380                                         } else { // If it is not an array...
381                                                 $current[$tag] = [$current[$tag], $result]; //...Make it an array using using the existing value and the new value
382                                                 $repeated_tag_index[$tag.'_'.$level] = 1;
383                                                 if ($priority == 'tag' and $get_attributes) {
384                                                         if (isset($current[$tag.'_attr'])) { // The attribute of the last(0th) tag must be moved as well
385
386                                                                 $current[$tag]['0_attr'] = $current[$tag.'_attr'];
387                                                                 unset($current[$tag.'_attr']);
388                                                         }
389
390                                                         if ($attributes_data) {
391                                                                 $current[$tag][$repeated_tag_index[$tag.'_'.$level] . '_attr'] = $attributes_data;
392                                                         }
393                                                 }
394                                                 $repeated_tag_index[$tag.'_'.$level]++; // 0 and 1 indexes are already taken
395                                         }
396                                 }
397                         } elseif ($type == 'close') { // End of tag '</tag>'
398                                 $current = &$parent[$level-1];
399                         }
400                 }
401
402                 return($xml_array);
403         }
404
405         /**
406          * @brief Delete a node in a XML object
407          *
408          * @param object $doc  XML document
409          * @param string $node Node name
410          * @return void
411          */
412         public static function deleteNode(&$doc, $node)
413         {
414                 $xpath = new DOMXPath($doc);
415                 $list = $xpath->query("//".$node);
416                 foreach ($list as $child) {
417                         $child->parentNode->removeChild($child);
418                 }
419         }
420
421         public static function parseString($s, $strict = true)
422         {
423                 // the "strict" parameter is deactivated
424                 libxml_use_internal_errors(true);
425
426                 $x = @simplexml_load_string($s);
427                 if (!$x) {
428                         Logger::log('libxml: parse: error: ' . $s, Logger::DATA);
429                         foreach (libxml_get_errors() as $err) {
430                                 Logger::log('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, Logger::DATA);
431                         }
432                         libxml_clear_errors();
433                 }
434                 return $x;
435         }
436
437         public static function getFirstNodeValue($xpath, $element, $context = null)
438         {
439                 $result = $xpath->evaluate($element, $context);
440                 if (!is_object($result)) {
441                         return '';
442                 }
443
444                 $first_item = $result->item(0);
445                 if (!is_object($first_item)) {
446                         return '';
447                 }
448
449                 return $first_item->nodeValue;
450         }
451
452         public static function getFirstAttributes($xpath, $element, $context = null)
453         {
454                 $result = $xpath->query($element, $context);
455                 if (!is_object($result)) {
456                         return false;
457                 }
458
459                 $first_item = $result->item(0);
460                 if (!is_object($first_item)) {
461                         return false;
462                 }
463
464                 return $first_item->attributes;
465         }
466 }