forked from pattern-lab/patternlab-php-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.php
More file actions
364 lines (269 loc) · 9.69 KB
/
Copy pathData.php
File metadata and controls
364 lines (269 loc) · 9.69 KB
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
<?php
/*!
* Data Class
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
*
* Acts as the overall data store for Pattern Lab. Takes in data found in JSON and YAML files.
*
*/
namespace PatternLab;
use \PatternLab\Config;
use \PatternLab\Console;
use \PatternLab\Dispatcher;
use \PatternLab\Timer;
use \Symfony\Component\Finder\Finder;
use \Symfony\Component\Yaml\Exception\ParseException;
use \Symfony\Component\Yaml\Yaml;
class Data {
protected static $store = array();
protected static $reservedKeys = array("listItems","cacheBuster","link","patternSpecific","patternLabHead","patternLabFoot");
/**
* Clear all of the data in the $store
*/
public static function clear() {
self::$store = array();
}
/**
* Gather data from any JSON and YAML files in source/_data
*
* Reserved attributes:
* - Data::$store["listItems"] : listItems from listitems.json, duplicated into separate arrays for Data::$store["listItems"]["one"], Data::$store["listItems"]["two"]... etc.
* - Data::$store["link"] : the links to each pattern
* - Data::$store["cacheBuster"] : the cache buster value to be appended to URLs
* - Data::$store["patternSpecific"] : holds attributes from the pattern-specific data files
*
* @return {Array} populates Data::$store
*/
public static function gather($options = array()) {
// set-up the dispatcher
$dispatcherInstance = Dispatcher::getInstance();
// dispatch that the data gather has started
$dispatcherInstance->dispatch("data.gatherStart");
// default vars
$found = false;
$dataJSON = array();
$dataYAML = array();
$listItemsJSON = array();
$listItemsYAML = array();
$sourceDir = Config::getOption("sourceDir");
// iterate over all of the other files in the source directory
if (!is_dir($sourceDir."/_data/")) {
Console::writeWarning("<path>_data/</path> doesn't exist so you won't have dynamic data...");
mkdir($sourceDir."/_data/");
}
// find the markdown-based annotations
$finder = new Finder();
$finder->files()->in($sourceDir."/_data/");
$finder->sortByName();
foreach ($finder as $name => $file) {
$ext = $file->getExtension();
$data = array();
$fileName = $file->getFilename();
$hidden = ($fileName[0] == "_");
$isListItems = strpos("listitems",$fileName);
$pathName = $file->getPathname();
$pathNameClean = str_replace($sourceDir."/","",$pathName);
if (!$hidden && (($ext == "json") || ($ext == "yaml"))) {
if ($isListItems === false) {
if ($ext == "json") {
$file = file_get_contents($pathName);
$data = json_decode($file,true);
if ($jsonErrorMessage = JSON::hasError()) {
JSON::lastErrorMsg($pathNameClean,$jsonErrorMessage,$data);
}
} else if ($ext == "yaml") {
$file = file_get_contents($pathName);
try {
$data = YAML::parse($file);
} catch (ParseException $e) {
printf("unable to parse ".$pathNameClean.": %s..\n", $e->getMessage());
}
// single line of text won't throw a YAML error. returns as string
if (gettype($data) == "string") {
$data = array();
}
}
self::$store = array_replace_recursive(self::$store,$data);
} else if ($isListItems !== false) {
$data = ($ext == "json") ? self::getListItems("data/listitems.json") : self::getListItems("data/listitems.yaml","yaml");
if (!isset(self::$store["listItems"])) {
self::$store["listItems"] = array();
}
self::$store["listItems"] = array_replace_recursive(self::$store["listItems"],$data);
}
}
}
if (is_array(self::$store)) {
foreach (self::$reservedKeys as $reservedKey) {
if (array_key_exists($reservedKey,self::$store)) {
Console::writeWarning("\"".$reservedKey."\" is a reserved key in Pattern Lab. the data using that key will be overwritten. please choose a new key...");
}
}
}
self::$store["cacheBuster"] = Config::getOption("cacheBuster");
self::$store["link"] = array();
self::$store["patternSpecific"] = array();
$dispatcherInstance->dispatch("data.gatherEnd");
}
/**
* Grab a copy of the $store
*
* @return {Array} the store
*/
public static function get() {
return self::$store;
}
/**
* Generate the listItems array
* @param {String} the filename for the pattern to be parsed
* @param {String} the extension so that a flag switch can be used to parse data
*
* @return {Array} the final set of list items
*/
protected static function getListItems($filepath,$ext = "json") {
// set-up the dispatcher
$dispatcherInstance = Dispatcher::getInstance();
// dispatch that the data gather has started
$dispatcherInstance->dispatch("data.getListItemsStart");
// default vars
$sourceDir = Config::getOption("sourceDir");
$listItems = array();
$listItemsData = array();
// add list item data, makes 'listItems' a reserved word
if (file_exists($sourceDir."/".$filepath)) {
$file = file_get_contents($sourceDir."/".$filepath);
if ($ext == "json") {
$listItemsData = json_decode($file, true);
if ($jsonErrorMessage = JSON::hasError()) {
JSON::lastErrorMsg($filepath,$jsonErrorMessage,$listItems);
}
} else {
try {
$listItemsData = YAML::parse($file);
} catch (ParseException $e) {
printf("unable to parse ".$pathNameClean.": %s..\n", $e->getMessage());
}
// single line of text won't throw a YAML error. returns as string
if (gettype($listItemsData) == "string") {
$listItemsData = array();
}
}
$numbers = array("one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve");
$i = 0;
$k = 1;
$c = count($listItemsData)+1;
while ($k < $c) {
shuffle($listItemsData);
$itemsArray = array();
while ($i < $k) {
$itemsArray[] = $listItemsData[$i];
$i++;
}
$listItems[$numbers[$k-1]] = $itemsArray;
$i = 0;
$k++;
}
}
$dispatcherInstance->dispatch("data.getListItemsEnd");
return $listItems;
}
/**
* Return the value for an option
*
* @return {String} the value of the option requested
*/
public static function getOption($optionName) {
if (isset(self::$store[$optionName])) {
return self::$store[$optionName];
}
return false;
}
/**
* Get the final data array specifically for a pattern
* @param {String} the filename for the pattern to be parsed
* @param {Array} any extra data that should be added to the pattern specific data that's being returned
*
* @return {Array} the final set of list items
*/
public static function getPatternSpecificData($patternPartial,$extraData = array()) {
// if there is pattern-specific data make sure to override the default in $this->d
$d = self::get();
if (isset($d["patternSpecific"]) && array_key_exists($patternPartial,$d["patternSpecific"])) {
if (!empty($d["patternSpecific"][$patternPartial]["data"])) {
$d = array_replace_recursive($d, $d["patternSpecific"][$patternPartial]["data"]);
}
if (!empty($d["patternSpecific"][$patternPartial]["listItems"])) {
$numbers = array("one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve");
$k = 0;
$c = count($d["patternSpecific"][$patternPartial]["listItems"]);
while ($k < $c) {
$section = $numbers[$k];
$d["listItems"][$section] = array_replace_recursive( $d["listItems"][$section], $d["patternSpecific"][$patternPartial]["listItems"][$section]);
$k++;
}
}
}
if (!empty($extraData)) {
$d = array_replace_recursive($d, $extraData);
}
unset($d["patternSpecific"]);
return $d;
}
/**
* Initialize a pattern specific data store under the patternSpecific option
* @param {String} the pattern to create an array for
*/
public static function initPattern($optionName) {
if (!isset(self::$store["patternSpecific"])) {
self::$store["patternSpecific"] = array();
}
if ((!isset(self::$store["patternSpecific"][$optionName])) || (!is_array(self::$store["patternSpecific"][$optionName]))) {
self::$store["patternSpecific"][$optionName] = array();
}
}
/**
* Print out the data var. For debugging purposes
*
* @return {String} the formatted version of the d object
*/
public static function printData() {
print_r(self::$store);
}
/**
* Set an option on a sub element of the data array
* @param {String} name of the option
* @param {String} value for the option
*/
public static function setOptionLink($optionName,$optionValue) {
if (!isset(self::$store["link"])) {
self::$store["link"] = array();
}
self::$store["link"][$optionName] = $optionValue;
}
/**
* Set the pattern data option
* @param {String} name of the pattern
* @param {String} value for the pattern's data attribute
*/
public static function setPatternData($optionName,$optionValue) {
if (isset(self::$store["patternSpecific"][$optionName])) {
self::$store["patternSpecific"][$optionName]["data"] = $optionValue;
return true;
}
return false;
}
/**
* Set the pattern listitems option
* @param {String} name of the pattern
* @param {String} value for the pattern's listItem attribute
*/
public static function setPatternListItems($optionName,$optionValue) {
if (isset(self::$store["patternSpecific"][$optionName])) {
self::$store["patternSpecific"][$optionName]["listItems"] = $optionValue;
return true;
}
return false;
}
}