forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspiderwebData.php
More file actions
130 lines (110 loc) · 3.8 KB
/
spiderwebData.php
File metadata and controls
130 lines (110 loc) · 3.8 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
<?php
$elementParam = $_REQUEST['element'] ?? null;
include_once "bib.php";
include_once "data.php";
function getSpiderWebData($dimensions)
{
$data = array();
foreach(getActions($dimensions) as list($dimension, $subdimension, $activities)) {
for ($level = 1; $level <= 4; $level++) {
// initialize $data cells
if (! ($data[$level][$dimension][$subdimension] ?? null)) {
$data[$level][$dimension][$subdimension]['count'] = 0;
$data[$level][$dimension][$subdimension]['selected'] = 0;
}
foreach ($activities as $activityName => $activity) {
if ($level == $activity["level"]) {
$data[$level][$dimension][$subdimension]['count']++;
if (elementIsSelected($activityName)) {
$data[$level][$dimension][$subdimension]['selected']++;
}
}
}
}
}
return $data;
}
function startsWith($haystack, $needle) {
// search backwards starting from haystack length characters from the end
return $needle === "" || strrpos($haystack, $needle, -strlen($haystack)) !== false;
}
function fwritecsv2($filePointer, $dataArray, $delimiter = ",", $enclosure = "\"")
{
// Write a line to a file
// $filePointer = the file resource to write to
// $dataArray = the data to write out
// $delimeter = the field separator
// Build the string
$string = "";
// for each array element, which represents a line in the csv file...
foreach ($dataArray as $line) {
// No leading delimiter
$writeDelimiter = FALSE;
foreach ($line as $dataElement) {
// Replaces a double quote with two double quotes
$dataElement = str_replace("\"", "\"\"", $dataElement);
// Adds a delimiter before each field (except the first)
if ($writeDelimiter) $string .= $delimiter;
// Encloses each field with $enclosure and adds it to the string
$string .= $enclosure . $dataElement . $enclosure;
// Delimiters are used every time except the first.
$writeDelimiter = TRUE;
}
// Append new line
$string .= "\n";
} // end foreach($dataArray as $line)
$string = str_replace('""', '"element"', $string);
if (!startsWith($string, "element") && !startsWith($string, '"element"')) {
$string = "element" . $string;
}
// Write the string to the file
fwrite($filePointer, $string);
}
//var_dump( getSpiderWebData($dimensions));exit;
function deleteElement(&$data, $activityName)
{
$count = 0;
foreach ($data as $element) {
if ($activityName == $element["element"]) {
unset($data[$count]);
}
$count++;
}
}
function isElementExisting($dimensions, $givenElementName)
{
foreach ($dimensions as $dimension => $subdimensions) {
foreach ($subdimensions as $subdimension => $element) {
foreach ($element as $activityName => $content) {
if ($activityName == $givenElementName) {
return true;
}
}
}
}
return false;
}
if ($elementParam == null) {
echo json_encode(getSpiderWebData($dimensions));
return;
}
{
$csvFile = 'selectedData.csv';
$csv = getCsv();
$element = $elementParam;
if (elementIsSelected($element)) {
deleteElement($csv, $element);
} else {
if (!isElementExisting($dimensions, $element)) {
echo "Could not find element";
exit;
}
$newEntry['element'] = $element;
$csv[] = $newEntry;
}
$keys = array_keys($csv[0]);
$csv = array_merge(array($keys), $csv);
$fp = fopen($csvFile, 'w');
fwritecsv2($fp, $csv, ",");
fclose($fp);
}