forked from pattern-lab/patternlab-php-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDocumentationRule.php
96 lines (75 loc) · 2.94 KB
/
DocumentationRule.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
<?php
/*!
* Pattern Data Documentation Rule Class
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
*
* If a documentation file (.md) it is parsed and the info added to PatternData::$store
*
*/
namespace PatternLab\PatternData\Rules;
use \PatternLab\Config;
use \PatternLab\PatternData;
use \PatternLab\Parsers\Documentation;
use \PatternLab\Timer;
class DocumentationRule extends \PatternLab\PatternData\Rule {
public function __construct($options) {
parent::__construct($options);
$this->depthProp = 3; // 3 means that depth won't be checked
$this->extProp = "md";
$this->isDirProp = false;
$this->isFileProp = true;
$this->searchProp = "";
$this->ignoreProp = "";
}
public function run($depth, $ext, $path, $pathName, $name) {
// default vars
$patternSourceDir = Config::getOption("patternSourceDir");
// parse data
$text = file_get_contents($patternSourceDir.DIRECTORY_SEPARATOR.$pathName);
list($yaml,$markdown) = Documentation::parse($text);
if (isset($yaml["patternType"])) {
$name = $yaml["patternType"];
unset($yaml["patternType"]);
}
// load default vars
$patternType = PatternData::getPatternType();
$patternTypeDash = PatternData::getPatternTypeDash();
$dirSep = PatternData::getDirSep();
// set-up the names, $name == 00-colors.md
$doc = str_replace(".".$this->extProp,"",$name); // 00-colors
$docDash = $this->getPatternName(str_replace("_","",$doc),false); // colors
$docPartial = $patternTypeDash."-".$docDash;
// grab the title and unset it from the yaml so it doesn't get duped in the meta
if (isset($yaml["title"])) {
$title = $yaml["title"];
unset($yaml["title"]);
}
// figure out if this is a pattern subtype
$patternSubtypeDoc = false;
if ($depth == 1) {
// go through all of the directories to see if this one matches our doc
foreach (glob($patternSourceDir.DIRECTORY_SEPARATOR.$patternType.DIRECTORY_SEPARATOR."*",GLOB_ONLYDIR) as $dir) {
$dir = str_replace($patternSourceDir.DIRECTORY_SEPARATOR.$patternType.DIRECTORY_SEPARATOR,"",$dir);
if ($dir == $doc) {
$patternSubtypeDoc = true;
break;
}
}
}
$category = ($patternSubtypeDoc) ? "patternSubtype" : "pattern";
$patternStoreKey = ($patternSubtypeDoc) ? $docPartial."-plsubtype" : $docPartial;
$patternStoreData = array("category" => $category,
"desc" => trim($markdown),
"descExists" => true,
"meta" => $yaml,
"full" => $doc);
if (isset($title)) {
$patternStoreData["nameClean"] = $title;
}
// if the pattern data store already exists make sure this data overwrites it
$patternStoreData = (PatternData::checkOption($patternStoreKey)) ? array_replace_recursive(PatternData::getOption($patternStoreKey),$patternStoreData) : $patternStoreData;
PatternData::setOption($patternStoreKey, $patternStoreData);
}
}