This repository has been archived by the owner on Dec 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuildParser.class.php
483 lines (407 loc) · 13.1 KB
/
BuildParser.class.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
/**
* \details © 2011 Open Ximdex Evolution SL [http://www.ximdex.org]
*
* Ximdex a Semantic Content Management System (CMS)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* See the Affero GNU General Public License for more details.
* You should have received a copy of the Affero GNU General Public License
* version 3 along with Ximdex (see LICENSE file).
*
* If not, visit http://gnu.org/licenses/agpl-3.0.html.
*
* @author Ximdex DevTeam <[email protected]>
* @version $Revision$
*/
ModulesManager::file('/inc/fsutils/FsUtils.class.php');
/**
* Parser for a project under a specific path.
*
* The path is defined in a xml file
*/
class BuildParser {
/**
* Full path to config file
* @var string
*/
private $filePath = null;
/**
* Xml object for the config file
* @var DomDocument
*/
private $doc = null;
/**
* XPath object for the config file
* @var XPath
*/
private $xpath = null;
/**
*Constructor. Load project from schema and theme style. It could be the default one.
*@param $schemaVersion. it indicates the folder where find the project files
*@param $themeStyle (òptional). It could be Bootstrap, default or whatever
*/
public function __construct($schemaVersion, $themeStyle=null){
$patternProjectPath = Config::GetValue("AppRoot").MODULE_XSPARROW_PATH.PROJECTS_FOLDER."/$schemaVersion/%s/";
$isDefault = false;
if (!$themeStyle || (strtolower($themeStyle) === strtolower(DEFAULT_PROJECT))){
$isDefault = true;
$themeStyle = DEFAULT_PROJECT;
}
$buildFilePath = sprintf($patternProjectPath,$themeStyle).PROJECT_CONFIG_FILENAME;
$defaultBuildFilePath = sprintf($patternProjectPath,DEFAULT_PROJECT).PROJECT_CONFIG_FILENAME;
$this->filePath = $buildFilePath;
/*If build file not exists in projects folder for this version and theme
style, write message*/
if (!file_exists($buildFilePath)){
if ($isDefault){
XMD_Log::fatal(LOG_PREFIX."Default Build file doesn't found in this path: $buildFilePath.");
return false;
}
XMD_Log::error(LOG_PREFIX." Build file doesn't found in this path: $buildFilePath. It will load Default project");
}else{
$this->doc = DOMDocument::load($buildFilePath);
if (!$this->doc){
error_log("Error al cargar $buildFilePath");
}
$this->xpath = new DOMXPath($this->doc);
if (!$this->xpath){
error_log("Error al cargar XPath para $buildFilePath");
}
}
}
/**
*<p>Get a Loader_Project object from the build.xml file.</p>
*@return Loader_Project object
**/
public function getProject() {
$query = '/project';
$items = $this->xpath->query($query);
return new Loader_Project($items->item(0), $this->xpath, dirname($this->filePath));
}
}
class Loader_XimFile {
protected $path = null;
protected $basename = null;
protected $dirname = null;
protected $filename = null;
protected $extension = null;
protected $nodetypename = null;
public function __construct($nodeTypeName, $path) {
$info = pathinfo($path);
if (isset($info['extension'])) {
$filename = preg_replace(sprintf('/\.%s$/', $info['extension']), '', $info['basename']);
} else {
$filename = $info['basename'];
}
$this->nodetypename = $nodeTypeName;
$this->path = $path;
$this->dirname = $info['dirname'];
$this->basename = $info['basename'];
$this->extension = $info['extension'];
$this->filename = $filename;
}
public function getContent() {
return FsUtils::file_get_contents($this->path);
}
public function setContent($content) {
return FsUtils::file_put_contents($this->path, $content);
}
public function getPath() {
return $this->path;
}
public function __get($name) {
return property_exists($this, $name) ? $this->$name : null;
}
}
abstract class Loader_AbstractNode {
protected $basepath = null;
protected $xpath = null;
protected $node = null;
protected $data = null;
public function __construct($node, $xpath, $basepath) {
$this->node = $node;
$this->xpath = $xpath;
$this->basepath = $basepath;
$this->parseAttributes($this->node);
}
abstract protected function getValidAttributes();
protected function parseAttributes($node) {
$this->data = array();
foreach ($node->attributes as $attr) {
if (!$this->isValidAttribute($attr->name)) continue;
$this->data[$attr->name] = $attr->value;
}
return $this->data;
}
protected function isValidAttribute($name) {
$va = $this->getValidAttributes();
return in_array($name, $va);
}
public function getPath() {
return $this->basepath;
}
public function __get($name) {
//var_dump($name);
if (!$this->isValidAttribute($name)) return null;
return isset($this->data[$name]) ? $this->data[$name] : null;
}
public function __set($name, $value) {
if (!$this->isValidAttribute($name)) return null;
$this->data[$name] = $value;
}
}
class Loader_Project extends Loader_AbstractNode {
protected function getValidAttributes() {
return array('projectid', 'name', 'nodetypename', 'Transformer', 'channel', 'language');
}
public function getSchemes() {
//Backward compatibility. Allow xml transformer.
$extension = 'xml';
$nodetypename = 'RNGVISUALTEMPLATE';
$path = $this->getPath() . '/schemes';
$files = FsUtils::readFolder($path, false);
$ret = array();
if ($files){
foreach ($files as $file) {
if (preg_match(sprintf('/\.%s$/', $extension), $file)) {
$ret[] = new Loader_XimFile($nodetypename, "$path/$file");
}
}
}
return $ret;
}
public function getServers() {
$query = sprintf("//section[@nodetypename='SERVER']");
$items = $this->xpath->query($query, $this->node);
$ret = array();
if ($items){
foreach ($items as $item) {
$ret[] = new Loader_Server($item, $this->xpath, $this->getPath());
}
}
return $ret;
}
public function getXimlink() {
$path = $this->getPath() . '/ximlink';
$files = FsUtils::readFolder($path, false);
$ret = array();
foreach ($files as $file) {
$ret[] = new Loader_XimFile('LINK', "$path/$file");
}
return $ret;
}
public function getTemplates($type='XSL') {
//Backward compatibility. Allow xml transformer.
$extension = $type == 'XSL' ? 'xsl': 'xml';
$nodetypename = $type == 'XSL' ? 'XSLTEMPLATE': 'TEMPLATE';
$path = $this->getPath() . '/templates';
$files = FsUtils::readFolder($path, false);
$ret = array();
if ($files){
foreach ($files as $file) {
if (preg_match(sprintf('/\.%s$/', $extension), $file)) {
$ret[] = new Loader_XimFile($nodetypename, "$path/$file");
}
}
}
return $ret;
}
}
class Loader_Section extends Loader_AbstractNode {
protected function getValidAttributes() {
return array('name', 'nodetypename', 'DefaultSchema', 'Transformer', 'channel', 'language');
}
public function getSections() {
$query = sprintf("//section[@nodetypename='SECTION']");
$items = $this->xpath->query($query, $this->node);
$ret = array();
foreach ($items as $item) {
$ret[] = new Loader_Server($item, $this->xpath, $this->getPath());
}
return $ret;
}
public function getXimdocs() {
$query = sprintf('//ximdoccontainer/document');
$items = $this->xpath->query($query, $this->node);
$ret = array();
foreach ($items as $item) {
$ret[] = new Loader_XimDOC($item, $this->xpath, $this->getPath());
}
return $ret;
}
public function getXimlets() {
$query = sprintf('//ximletcontainer/ximlet');
$items = $this->xpath->query($query, $this->node);
$ret = array();
foreach ($items as $item) {
$ret[] = new Loader_XimLET($item, $this->xpath, $this->getPath());
}
return $ret;
}
public function getCommon($recursiveFolderName="") {
$path = $this->getPath() . '/common'.$recursiveFolderName;
$files = FsUtils::readFolder($path, false);
$recursiveRet = $ret = array();
if ($files){
foreach ($files as $file) {
$newRecursiveFolderName = "";
if (is_dir("$path/$file")){
$newRecursiveFolderName = "$recursiveFolderName/$file";
$recursiveRet = array_merge($this->getCommon($newRecursiveFolderName),$recursiveRet);
}else{
$ret["$recursiveFolderName/$file"] = new Loader_XimFile('TextFile', "$path/$file");
}
}
}
return array_merge($recursiveRet,$ret);
}
public function getImages($recursiveFolderName="") {
$path = $this->getPath() . "/images$recursiveFolderName";
$files = FsUtils::readFolder($path, false);
$recursiveRet = $ret = array();
if ($files){
foreach ($files as $file) {
$newRecursiveFolderName = "";
if (is_dir("$path/$file")){
$newRecursiveFolderName = "$recursiveFolderName/$file";
$recursiveRet = array_merge($this->getImages($newRecursiveFolderName),$recursiveRet);
}else{
$ret["$recursiveFolderName/$file"] = new Loader_XimFile('IMAGEFILE', "$path/$file");
}
}
}
return array_merge($recursiveRet,$ret);
}
public function getXimclude() {
$path = $this->getPath() . '/ximclude';
$files = FsUtils::readFolder($path, false);
$ret = array();
foreach ($files as $file) {
$ret[] = new Loader_XimFile('LINK', "$path/$file");
}
return $ret;
}
public function getXimlet() {
$query = sprintf('//ximletcontainer/ximlet');
$items = $this->xpath->query($query, $this->node);
$ret = array();
foreach ($items as $item) {
$ret[] = new Loader_XimLET($item, $this->xpath, $this->getPath());
}
return $ret;
}
public function getTemplates($type="XSL") {
//Backward compatibility. Allow xml transformer.
$extension = $type == 'XSL' ? 'xsl': 'xml';
$nodetypename = $type == 'XSL' ? 'XSLTEMPLATE': 'TEMPLATE';
$path = $this->getPath() . '/templates';
$files = FsUtils::readFolder($path, false);
$ret = array();
if ($files){
foreach ($files as $file) {
if (preg_match(sprintf('/\.%s$/', $extension), $file)) {
$ret[] = new Loader_XimFile($nodetypename, "$path/$file");
}
}
}
return $ret;
}
}
class Loader_Server extends Loader_Section {
public function __construct($node, $xpath, $basepath) {
parent::__construct($node, $xpath, $basepath);
$this->data['isServerOTF'] = $this->data['isServerOTF'] == 'false'
? false
: true;
}
public function getPath(){
return $this->basepath."/Server";
}
protected function getValidAttributes() {
return array(
'serverid', 'name', 'nodetypename', 'protocol',
'login', 'password', 'host', 'port',
'url', 'initialDirectory', 'overrideLocalPaths',
'enabled', 'previsual', 'description', 'isServerOTF'
);
}
public function getXimdocs() {
$query = sprintf('//ximdoccontainer/document');
$items = $this->xpath->query($query, $this->node);
$ret = array();
foreach ($items as $item) {
$ret[] = new Loader_XimDOC($item, $this->xpath, $this->getPath());
}
return $ret;
}
public function getCSS($recursiveFolderName="") {
$path = $this->getPath() . "/css$recursiveFolderName";
$files = FsUtils::readFolder($path, false);
$recursiveRet = $ret = array();
if ($files){
foreach ($files as $file) {
$newRecursiveFolderName = "";
if (is_dir("$path/$file")){
$newRecursiveFolderName = "$recursiveFolderName/$file";
$recursiveRet = array_merge($this->getCss($newRecursiveFolderName),$recursiveRet);
}else{
$ret["$recursiveFolderName/$file"] = new Loader_XimFile('CSSFILE', "$path/$file");
}
}
}
return array_merge($recursiveRet,$ret);
}
}
class Loader_XimDOC extends Loader_AbstractNode {
protected function getValidAttributes() {
return array('name', 'nodetypename', 'description', 'templatename', 'channel', 'language');
}
public function getPath() {
return $this->basepath . '/documents/' . $this->name . '.xml';
}
public function getContent() {
return FsUtils::file_get_contents($this->getPath());
}
public function setContent($content) {
return FsUtils::file_put_contents($this->getPath(), $content);
}
}
class Loader_XimLET extends Loader_AbstractNode{
protected function getValidAttributes() {
return array('name', 'nodetypename', 'templatename', 'channel', 'language');
}
public function getPath() {
return $this->basepath . '/ximlet/' . $this->name . '.xml';
}
public function getContent() {
return FsUtils::file_get_contents($this->getPath());
}
public function setContent($content) {
return FsUtils::file_put_contents($this->getPath(), $content);
}
}
class Loader_Scheme extends Loader_AbstractNode{
protected function getValidAttributes(){
return array("name", "nodetypename");
}
public function getPath(){
return $this->basepath."/schemes/".$this->name.".xml";
}
public function getContent() {
return FsUtils::file_get_contents($this->getPath());
}
public function setContent($content) {
return FsUtils::file_put_contents($this->getPath(), $content);
}
}
?>