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
|
<?php /** * Loads Loco configuration file into a bundle definition */ class Loco_config_BundleReader {
/** * @var Loco_package_Bundle */ private $bundle;
/** * Constructor initializes empty dom */ public function __construct( Loco_package_Bundle $bundle ){ $this->bundle = $bundle; }
/** * @return Loco_package_Bundle */ public function loadXml( Loco_fs_File $file ){ $this->bundle->setDirectoryPath( $file->dirname() ); $model = new Loco_config_XMLModel; $model->loadXml( $file->getContents() ); return $this->loadModel( $model ); }
/** * @return Loco_package_Bundle */ public function loadJson( Loco_fs_File $file ){ $this->bundle->setDirectoryPath( $file->dirname() ); return $this->loadArray( json_decode( $file->getContents(), true ) ); }
/** * @return Loco_package_Bundle */ public function loadArray( array $raw ){ $model = new Loco_config_ArrayModel; $model->loadArray( $raw ); return $this->loadModel( $model ); }
/** * Agnostic construction of Bundle from any configuration format * @return Loco_package_Bundle */ public function loadModel( Loco_config_Model $model ){ // Base directory required to resolve relative paths $bundle = $this->bundle; $model->setDirectoryPath( $bundle->getDirectoryPath() );
$dom = $model->getDom(); $bundleElement = $dom->documentElement; if( ! $bundleElement || 'bundle' !== $bundleElement->nodeName ){ throw new InvalidArgumentException('Expected root bundle element'); }
// Set bundle meta data if configured // note that bundles have no inherent slug as it can change according to plugin/theme directory naming if( $bundleElement->hasAttribute('name') ){ $bundle->setName( $bundleElement->getAttribute('name') ); } // Bundle-level path exclusions foreach( $model->query('exclude/*',$bundleElement) as $fileElement ){ $bundle->excludeLocation( $model->evaluateFileElement($fileElement) ); }
/* @var $domainElement LocoConfigElement */ foreach( $model->query('domain',$bundleElement) as $domainElement ){ $slug = $domainElement->getAttribute('name') or $slug = $bundle->getSlug(); // bundle may not have a handle set (most likely only in tests) if( ! $bundle->getHandle() ){ $bundle->setHandle( $slug ); } // Text Domain may also be declared by bundle author $domain = new Loco_package_TextDomain( $slug ); $declared = $bundle->getHeaderInfo(); if( $declared && $declared->TextDomain === $slug ){ $domain->setCanonical( true ); } /* @var $projectElement LocoConfigElement */ foreach( $model->query('project',$domainElement) as $projectElement ){ $name = $projectElement->getAttribute('name') or $name = $bundle->getName(); $project = new Loco_package_Project( $bundle, $domain, $name ); if( $projectElement->hasAttribute('slug') ){ $project->setSlug( $projectElement->getAttribute('slug') ); } // <source> foreach( $model->query('source',$projectElement) as $sourceElement ){ // sources may be <file>, <directory> or pass in special <path> if it could be either foreach( $model->query('file',$sourceElement) as $fileElement ){ $project->addSourceFile( $model->evaluateFileElement($fileElement) ); } foreach( $model->query('directory',$sourceElement) as $fileElement ){ $project->addSourceDirectory( $model->evaluateFileElement($fileElement) ); } foreach( $model->query('path',$sourceElement) as $fileElement ){ $project->addSourceLocation( $model->evaluateFileElement($fileElement) ); } foreach( $model->query('exclude/*', $sourceElement) as $fileElement ){ $project->excludeSourcePath( $model->evaluateFileElement($fileElement) ); } } // Avoid having no source locations if( ! $project->hasSourceFiles() ){ if( $bundle->isSingleFile() ){ $project->addSourceFile( $bundle->getBootstrapPath() ); } else { $project->addSourceDirectory( $bundle->getDirectoryPath() ); } } // <target> foreach( $model->query('target',$projectElement) as $targetElement ){ // targets support only directory paths: foreach( $model->query('directory',$targetElement) as $fileElement ){ $project->addTargetDirectory( $model->evaluateFileElement($fileElement) ); } foreach( $model->query('exclude/*', $targetElement) as $fileElement ){ $project->excludeTargetPath( $model->evaluateFileElement($fileElement) ); } } // Avoid having no target locations .. if( 0 === count($project->getConfiguredTargets() ) ){ // .. unless the inherited root is a global location if( $bundle->isTheme() || ( $bundle->isPlugin() && ! $bundle->isSingleFile() ) ){ $project->addTargetDirectory( $bundle->getDirectoryPath() ); } } // <template> // configure POT file, should only be one foreach( $model->query('template',$projectElement) as $templateElement ){ if( $model->evaluateBooleanAttribute( $templateElement, 'locked') ){ $project->setPotLock( true ); } foreach( $model->query('file',$templateElement) as $fileElement ){ $project->setPot( $model->evaluateFileElement( $fileElement ) ); break 2; } } // add project last for additional configs to be appended $bundle->addProject( $project ); } } return $bundle; }
}
|