Blame view

lib/XmlParser.php 3.01 KB
8e128526   Mihail   add xlsx parser
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  <?php
  /**
   * Created by PhpStorm.
   * User: Cibermag
   * Date: 10.09.2015
   * Time: 17:47
   */
  
  namespace artweb\yii_multiparser;
  
  
  use common\components\CustomVarDamp;
  use common\components\CustomArrayHelper;
  
  class XmlParser extends  Parser{
  
      public $node;
  
      public function read()
      {
          $file = $this->file;
          $result = $this->xmlToArray( $file->getPathname() );
  
          if ( isset($this->node) ) {
  
              $result = $result[ $this->node ];
  
          }
  
          return $result;
      }
  
  
      /**
       * Converts an XML string to a PHP array
       *
       * @uses recursiveXMLToArray()
       * @param string $file_path
       * @return array
       */
      protected function xmlToArray( $file_path ) {
  
          try {
              $xml = new \SimpleXMLElement( $file_path, 0, true );
              //\common\components\CustomVarDamp::dumpAndDie($xml->children()->children());
              $result = $this->recursiveXMLToArray( $xml );
          } catch(Exception $ex) {
  
              throw $ex;
          }
  
          return $result;
      }
  
      /**
       * Convert a XML string to a PHP array recursively. Do not
       * call this function directly
       *
       * @param SimpleXMLElement
       *
       * @return mixed
       */
      protected  function recursiveXMLToArray($xml) {
          if( $xml instanceof \SimpleXMLElement ) {
              $attributes = $xml->attributes();
  
              foreach( $attributes as $key => $value ) {
                  if( $value ) {
                      $attribute_array[$key] = (string) $value;
                  }
              }
              $previous_xml = $xml;
              $xml = get_object_vars($xml);
          }
  
          if(is_array($xml)) {
  
              if( count($xml) == 0 )
                  return (string) $previous_xml; // for CDATA
  
              foreach($xml as $key => $value) {
                  $row[$key] = $this->recursiveXMLToArray($value);
              }
              if ( is_string($value) ) {
                  // дошли до конца рекурсии
                  // преобразуем ряд согласно конфигурации
                  if ( $this->keys !== NULL ) {
                      // назначим ключи из конфигурации, согласно массиву $keys
                      $row = $this->compareArrayWithKeys( $row );
                  }
                  $row = $this->convert( $row );
  
              }
  
  
              if( isset( $attribute_array ) )
                  $row['@'] = $attribute_array; // Attributes
  
              return $row;
          }
          return (string) $xml;
      }
  
      /**
       * @param array $value_arr - текущий ряд, массив, которому нужно назначить конфигурационные ключи ($keys)
       * @return array
       */
      protected function compareArrayWithKeys( array $value_arr ){
          $res = $this->keys;
          foreach ( $this->keys as $key => $value ) {
              if ( array_key_exists( $value, $value_arr ) ) {
                  $res[$key] = $value_arr[$value];
              }
          }
          return $res;
      }
  
  }