forked from brookinsconsulting/ezcommunity2
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathezxml.php
executable file
·339 lines (270 loc) · 11.4 KB
/
ezxml.php
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<?php
//
// $Id: ezxml.php 8931 2002-01-11 18:58:09Z kaid $
//
// Definition of eZXML class
//
// B�rd Farstad <bf@ez.no>
// Created on: <16-Nov-2001 11:26:01 bf>
//
// This source file is part of eZ publish, publishing software.
// Copyright (C) 1999-2000 eZ systems as
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, US
//
//!! eZXML
//! eZXML handles parsing of well formed XML documents.
/*!
eZXML will create a DOM tree from well formed XML documents.
\code
\endcode
*/
// include_once( "ezxml/classes/ezdomnode.php" );
// include_once( "ezxml/classes/ezdomdocument.php" );
class eZXML
{
/*!
Constructor, should not be used all functions are static.
*/
function __construct( )
{
print( "Use the static functions: eZXML::domTree()" );
}
/*!
\static
Will return an DOM object tree from the well formed XML.
$params["TrimWhiteSpace"] = false/true : if the XML parser should ignore whitespace between tags.
*/
static public function domTree( $xmlDoc, $params=array() )
{
$TagStack = array();
// get document version
// stip the !doctype (xdutoit modification)
$xmlDoc =& preg_replace( "%<\!DOCTYPE.*?>%is", "", $xmlDoc );
// strip header
$xmlDoc =& preg_replace( "#<\?.*?\?>#", "", $xmlDoc );
// strip comments
$xmlDoc =& eZXML::stripComments( $xmlDoc );
// libxml compatible object creation
$domDocument = new eZDOMDocument();
$domDocument->version = "1.0";
$domDocument->root =& $domDocument->children;
$currentNode =& $domDocument;
$pos = 0;
$endTagPos = 0;
while ( $pos < strlen( $xmlDoc ) )
{
$char = $xmlDoc[$pos];
if ( $char == "<" )
{
// find tag name
$endTagPos = strpos( $xmlDoc, ">", $pos );
// tag name with attributes
$tagName = substr( $xmlDoc, $pos + 1, $endTagPos - ( $pos + 1 ) );
// check if it's an endtag </tagname>
if ( $tagName[0] == "/" )
{
$lastNodeArray = array_pop( $TagStack );
$lastTag = $lastNodeArray["TagName"];
$lastNode =& $lastNodeArray["ParentNodeObject"];
unset( $currentNode );
$currentNode =& $lastNode;
$tagName = substr( $tagName, 1, strlen( $tagName ) );
// strip out namespace; nameSpace:Name
$colonPos = strpos( $tagName, ":" );
if ( $colonPos > 0 )
$tagName = substr( $tagName, $colonPos + 1, strlen( $tagName ) );
//gb: not understanding what this was original intended on doing so we disable it to proceed.
if ( $lastTag != $tagName )
{
//print( "Error parsing XML, unmatched tags $tagName vs $lastTag" );
//return false;
}
else
{
// print( "endtag name: $tagName ending: $lastTag <br> " );
}
}
else
{
$firstSpaceEnd = strpos( $tagName, " " );
$firstNewlineEnd = strpos( $tagName, "\n" );
if ( $firstNewlineEnd != false )
{
if ( $firstSpaceEnd != false )
{
$tagNameEnd = min( $firstSpaceEnd, $firstNewlineEnd );
}
else
{
$tagNameEnd = $firstNewlineEnd;
}
}
else
{
if ( $firstSpaceEnd != false )
{
$tagNameEnd = $firstSpaceEnd;
}
else
{
$tagNameEnd = 0;
}
}
if ( $tagNameEnd > 0 )
{
$justName = substr( $tagName, 0, $tagNameEnd );
}
else
$justName = $tagName;
// strip out namespace; nameSpace:Name
$colonPos = strpos( $justName, ":" );
if ( $colonPos > 0 )
$justName = substr( $justName, $colonPos + 1, strlen( $justName ) );
// remove trailing / from the name if exists
if ( $justName[strlen($justName) - 1] == "/" )
{
$justName = substr( $justName, 0, strlen( $justName ) - 1 );
}
// check for CDATA
$cdataSection = "";
$isCDATASection = false;
$cdataPos = strpos( $xmlDoc, "<![CDATA[", $pos );
if ( $cdataPos == $pos && $pos > 0)
{
$isCDATASection = true;
$endTagPos = strpos( $xmlDoc, "]]>", $cdataPos );
$cdataSection =& substr( $xmlDoc, $cdataPos + 9, $endTagPos - ( $cdataPos + 9 ) );
// new CDATA node
unset( $subNode );
$subNode = new eZDOMNode();
$subNode->name = "cdata-section";
$subNode->content = $cdataSection;
$subNode->type = 4;
$currentNode->children[] =& $subNode;
$pos = $endTagPos;
$endTagPos += 2;
}
else
{
// normal start tag
unset( $subNode );
$subNode = new eZDOMNode();
$subNode->name = $justName;
$subNode->type = 1;
$currentNode->children[] =& $subNode;
}
// find attributes
if ( $tagNameEnd > 0 )
{
$attributePart =& substr( $tagName, $tagNameEnd, strlen( $tagName ) );
// attributes
unset( $attr );
$attr =& eZXML::parseAttributes( $attributePart );
if ( $attr != false )
$subNode->attributes =& $attr;
}
// check it it's a oneliner: <tagname /> or a cdata section
if ( $isCDATASection == false )
if ( $tagName[strlen($tagName) - 1] != "/" )
{
array_push( $TagStack,
array( "TagName" => $justName, "ParentNodeObject" => &$currentNode ) );
unset( $currentNode );
$currentNode =& $subNode;
}
}
}
$pos = strpos( $xmlDoc, "<", $pos + 1 );
if ( $pos == false )
{
// end of document
$pos = strlen( $xmlDoc );
}
else
{
// content tag
$tagContent = substr( $xmlDoc, $endTagPos + 1, $pos - ( $endTagPos + 1 ) );
if ( !isset( $params["TrimWhiteSpace"] ) )
$params["TrimWhiteSpace"] = false;
if ( ( ( $params["TrimWhiteSpace"] == true ) and ( trim( $tagContent ) != "" ) ) or ( $params["TrimWhiteSpace"] == false ) )
{
unset( $subNode );
$subNode = new eZDOMNode();
$subNode->name = "text";
$subNode->type = 3;
// convert special chars
$tagContent =& str_replace(">", ">", $tagContent );
$tagContent =& str_replace("<", "<", $tagContent );
$tagContent =& str_replace("'", "'", $tagContent );
$tagContent =& str_replace(""", '"', $tagContent );
$tagContent =& str_replace("&", "&", $tagContent );
$subNode->content = $tagContent;
$currentNode->children[] =& $subNode;
}
}
}
return $domDocument;
}
/*!
\static
\private
*/
static public function stripComments( &$str )
{
$str =& preg_replace( "#<\!--.*?-->#s", "", $str );
return $str;
}
/*!
\static
\private
Parses the attributes. Returns false if no attributes in the supplied string is found.
*/
static public function &parseAttributes( $attributeString )
{
$ret = array();
preg_match_all( "/([a-zA-Z:]+=\".*?\")/i", $attributeString, $attributeArray );
foreach ( $attributeArray[0] as $attributePart )
{
$attributePart = $attributePart;
if ( trim( $attributePart ) != "" && trim( $attributePart ) != "/" )
{
$attributeTmpArray = explode( "=\"", $attributePart );
$attributeName = $attributeTmpArray[0];
// strip out namespace; nameSpace:Name
$colonPos = strpos( $attributeName, ":" );
if ( $colonPos > 0 )
$attributeName = substr( $attributeName, $colonPos + 1, strlen( $attributeName ) );
$attributeValue = $attributeTmpArray[1];
// remove " from value part
$attributeValue = substr( $attributeValue, 0, strlen( $attributeValue ) - 1);
unset( $attrNode );
$attrNode = new eZDOMNode();
$attrNode->name = $attributeName;
$attrNode->type = 2;
$attrNode->content = $attributeValue;
unset( $nodeValue );
$nodeValue = new eZDOMNode();
$nodeValue->name = "text";
$nodeValue->type = 3;
$nodeValue->content = $attributeValue;
$attrNode->children[] =& $nodeValue;
$ret[] =& $attrNode;
}
}
return $ret;
}
}
?>