forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.php
More file actions
229 lines (201 loc) · 6.26 KB
/
graph.php
File metadata and controls
229 lines (201 loc) · 6.26 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
<?php
/**
* graph.php
*
* @package default
*/
$title = "Dependencies";
include_once "head.php";
?>
<body>
<?php
include_once "navi.php"
?>
<h1>Dependencies</h1>
<h2>Navigation</h2>
<?php
include_once "data.php";
/**
* Return true if has dependsOn.
*
* @param unknown $activities
* @return unknown
*/
function hasElementChildren($activities) {
foreach ($activities as $activityName => $activity) {
if ($activity["dependsOn"] ?? null)
return true;
}
return false;
}
foreach (getActions($dimensions) as list($dimension, $subdimension, $activities)) {
if (hasElementChildren($activities)) {
echo "<a href='#" . base64_encode($subdimension)
. "'> $dimension - $subdimension </a><br />";
}
}
?>
<style>
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
#licensing {
fill: green;
}
.link.licensing {
stroke: green;
}
.link.resolved {
stroke-dasharray: 0, 2 1;
}
circle {
fill: #ccc;
stroke: #333;
stroke-width: 1.5px;
}
text {
font: 10px sans-serif;
pointer-events: none;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}
</style>
<?php
/**
*
* @param unknown $activityName
* @param unknown $subdimension
* @param unknown $parent (optional)
* @return unknown
*/
function getSourceAndParent($activityName, $subdimension, $parent = "") {
return "{source: \"$activityName\", target: \"$parent\", type: \"" . base64_encode($subdimension) . "\"}";
}
foreach (getActions($dimensions) as list($dimension, $subdimension, $element)) {
if (!hasElementChildren($element)) {
continue;
}
echo "<h2 id='" .urlencode( base64_encode($subdimension)) . "'>$dimension - $subdimension</h2>";
?>
<script>
(function () {
var links = [
<?php
$first = true;
//if($subdimension != "Erzeugung") continue;
foreach ($element as $activityName => $content) {
if (!array_key_exists("dependsOn", $content)) {
continue;
}
$parent = "Ohne";
if (array_key_exists("dependsOn", $content)) {
$parent = $content["dependsOn"][0];
}
if (array_key_exists("dependsOn", $content)) {
foreach ($content["dependsOn"] as $dependsOn) {
if (!$first) {
echo ",";
}
$first = false;
echo getSourceAndParent($activityName, $subdimension, $dependsOn);
}
} else {
if (!$first) {
echo ",";
}
$first = false;
echo getSourceAndParent($activityName, $subdimension, $parent);
}
}
?>
]
var nodes = {};
// Compute the distinct nodes from the links.
links.forEach(function (link) {
link.source = nodes[link.source] || (nodes[link.source] = {name: link.source});
link.target = nodes[link.target] || (nodes[link.target] = {name: link.target});
});
var width = 960,
height = 500;
var force = d3.layout.force()
.nodes(d3.values(nodes))
.links(links)
.size([width, height])
.linkDistance(60)
.charge(-300)
.on("tick", tick)
.start();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// Per-type markers, as they don't inherit styles.
svg.append("defs").selectAll("marker")
.data([
<?php
$isFirst = true;
foreach ($dimensions as $dimension => $subdimensions) {
foreach ($subdimensions as $subdimension => $element) {
if (!$isFirst) {
echo ",";
}
$isFirst = false;
echo "\"" .urlencode( base64_encode($subdimension) ). "\"";
}
}
?>
])
.enter().append("marker")
.attr("id", function (d) {
return d;
})
.attr("viewBox", "0 -5 10 10")
.attr("refX", 15)
.attr("refY", -1.5)
.attr("markerWidth", 6)
.attr("markerHeight", 6)
.attr("orient", "auto")
.append("path")
.attr("d", "M0,-5L10,0L0,5");
var path = svg.append("g").selectAll("path")
.data(force.links())
.enter().append("path")
.attr("class", function (d) {
return "link " + d.type;
})
.attr("marker-end", function (d) {
return "url(#" + d.type + ")";
});
var circle = svg.append("g").selectAll("circle")
.data(force.nodes())
.enter().append("circle")
.attr("r", 6)
.call(force.drag);
var text = svg.append("g").selectAll("text")
.data(force.nodes())
.enter().append("text")
.attr("x", 8)
.attr("y", ".31em")
.text(function (d) {
return d.name;
});
// Use elliptical arc path segments to doubly-encode directionality.
function tick() {
path.attr("d", linkArc);
circle.attr("transform", transform);
text.attr("transform", transform);
}
function linkArc(d) {
var dx = d.target.x - d.source.x,
dy = d.target.y - d.source.y,
dr = Math.sqrt(dx * dx + dy * dy);
return "M" + d.source.x + "," + d.source.y + "A" + dr + "," + dr + " 0 0,1 " + d.target.x + "," + d.target.y;
}
function transform(d) {
return "translate(" + d.x + "," + d.y + ")";
}
})();
</script>
<?php
}
?>