forked from emaag/interactive-decision-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.decisiontree.php
213 lines (189 loc) · 6.25 KB
/
class.decisiontree.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
<?php
class DecisionTree{
var $treeID;
var $title;
var $description;
var $branches = array();
var $revisions = array();
var $xmlDirPath = XML_DIR_PATH;
function __construct( $treeID = '' ){
if( !empty( $treeID ) ){
$this->treeID = $treeID;
$this->loadData();
}
}
function createNewTree(){
$newFileName = 'tree' . time() . '.xml';
while( file_exists( XML_DIR_PATH . $newFileName ) ){
$newFileName = 'tree' . time() . '.xml';
}
$xmlData = new SimpleXMLElement("<tree></tree>");
$xmlData->asXML( $newFileName );
$this->treeID = str_replace( XML_DIR_PATH, '', $newFileName );
}
function loadRevision( $revision ){
$revisionFile = $this->xmlDirPath . $this->treeID . '.' . $revision;
if( !file_exists( $revisionFile ) ){
die( "Cannot load XML data: " . $revision );
}
if( $xmlData = simplexml_load_file( $revisionFile ) ){
$this->title = (string)$xmlData->title;
$this->description = (string)$xmlData->description;
$this->branches = array();
foreach( $xmlData->branch as $branch ){
$thisBranch = new Branch();
$thisBranch->ID = (string)$branch['id'];
$thisBranch->content = (string)$branch->content;
foreach( $branch->fork as $fork ){
$thisBranch->forks[(string)$fork['target']] = (string)$fork;
}
array_push( $this->branches, $thisBranch );
}
}else{
die( "Cannot parse XML data: " . $this->xmlDirPath . $treeID );
}
}
function loadData(){
if( !file_exists( $this->xmlDirPath . $this->treeID ) ){
die( "Cannot load XML data: " . $this->xmlDirPath . $this->treeID );
}
if( $xmlData = simplexml_load_file( $this->xmlDirPath . $this->treeID ) ){
$this->title = (string)$xmlData->title;
$this->description = (string)$xmlData->description;
foreach( $xmlData->branch as $branch ){
$thisBranch = new Branch();
$thisBranch->ID = (string)$branch['id'];
$thisBranch->content = (string)$branch->content;
foreach( $branch->fork as $fork ){
$thisBranch->forks[(string)$fork['target']] = (string)$fork;
}
array_push( $this->branches, $thisBranch );
}
foreach( $xmlData->revision as $revision ){
array_push( $this->revisions, (string)$revision );
}
}else{
die( "Cannot parse XML data: " . $this->xmlDirPath . $treeID );
}
}
function getBranch( $branchID ){
foreach( $this->branches as $branch ){
if( strval( $branch->ID ) === strval( $branchID ) ){
return $branch;
}
}
return false;
}
function overview(){
if( empty( $this->branches ) ){
?>
Alas. This decision tree is currently void of any questions or decisions.<br />
<a href="<?php echo EDITOR_URL; ?>?cmd=new-branch&treeID=<?php echo $this->treeID; ?>&branchID=1">Add the first question/decision</a>
<?php
}else{
echo '<ul class="tree-overview">';
$this->getTargetBranches( 1 );
echo '</ul>';
}
}
function saveBranch( $branch ){
// look for existing branch to replace
foreach( $this->branches as $branchIndex => $treeBranch ){
if( strval( $branch->ID ) === strval( $treeBranch->ID ) ){
$this->branches[$branchIndex] = $branch;
return true;
}
}
// must be a new branch, so we'll add it
array_push( $this->branches, $branch );
}
function removeBranch( $branchID ){
// look for existing branch to replace
foreach( $this->branches as $branchIndex => $treeBranch ){
if( strval( $branchID ) === strval( $treeBranch->ID ) ){
unset( $this->branches[$branchIndex] );
return true;
}
}
}
function saveData(){
$xmlData = new SimpleXMLElement("<tree></tree>");
$xmlData->addChild( 'title', $this->title );
$xmlData->addChild( 'description', $this->description );
foreach( $this->branches as $branch ){
$branchXML = $xmlData->addChild( 'branch' );
$branchXML->addAttribute( 'id', $branch->ID );
$branchXML->addChild( 'content', htmlspecialchars( $branch->content ) );
foreach( $branch->forks as $forkTarget => $forkLabel ){
$forkXML = $branchXML->addChild( 'fork', $forkLabel );
$forkXML->addAttribute( 'target', $forkTarget );
}
}
if( file_exists( $this->xmlDirPath . $this->treeID ) ){
$destPath = $this->xmlDirPath . str_replace( '.xml', '.xml.' . time(), $this->treeID );
rename( $this->xmlDirPath . $this->treeID, $destPath );
}
foreach( $this->revisions as $revision ){
if( !empty( $revision ) ){
$xmlData->addChild( 'revision', $revision );
}
}
$xmlData->addChild( 'revision', $destPath );
$xmlData->asXML( $this->xmlDirPath . $this->treeID );
}
function getTargetBranches( $branchID, $forkLabel = '' ){
foreach( $this->branches as $branch ){
if( strval( $branch->ID ) === strval( $branchID ) ){
$class = '';
if( empty( $branch->content ) ){
$class = 'class="missing-content"';
}
echo '<li ' . $class . '>' . $forkLabel . $branch->content . '<br /><a href="' . EDITOR_URL . '?cmd=edit-branch&treeID=' . $this->treeID . '&branchID=' . $branchID . '">Edit</a>';
if( !empty( $branch->forks ) ){
echo '<ul>';
foreach( $branch->forks as $forkID => $forkLabel ){
$this->getTargetBranches( $forkID, '<em>' . $forkLabel . '</em>: <br />' );
}
echo '</ul>';
}
echo '</li>';
}
}
}
function listAll(){
if( !is_dir( $this->xmlDirPath ) ){
die("Cannot access XML directory: $xmlDirPath");
}
?>
<dl>
<?php
if( $dh = opendir( $this->xmlDirPath ) ){
while( $file = readdir( $dh ) ){
if( strtolower( substr( $file, -4, 4 ) ) == '.xml' ){
if( $xmlData = simplexml_load_file( $this->xmlDirPath . $file ) ){
$treeID = str_replace( '.xml', '', substr( $file, 4 ) );
?>
<dt><?php echo $xmlData->title; ?>
<span class="action-links"><a target="_blank" href="<?php echo VIEWER_URL; ?>?<?php echo $treeID ; ?>">View</a> |
<a href="<?php echo EDITOR_URL . '?cmd=edit-tree&treeID=' . $file; ?>">Edit</a></span></dt>
<dd><?php echo $xmlData->description; ?></dd>
<?php
}
}
}
}
?>
</dl>
<?php
}
}
class Branch{
var $ID;
var $content;
var $forks = array();
function __construct(){
}
function saveData(){
}
}
?>