This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathannotations_levels.js
61 lines (55 loc) · 1.99 KB
/
annotations_levels.js
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
// Copyright 2018 VMware, Inc.
// SPDX-License-Identifier: BSD-2-Clause
const { annotationsLevels } = require('./config')
/**
* @param {Object[]} annotations the issues found by a security linter wrapped into this object:
* https://developer.github.com/v3/checks/runs/#annotations-object
*/
function countAnnotationLevels (annotations) {
let errors = 0
let warnings = 0
let notices = 0
for (let annotation of annotations) {
if (annotation.annotation_level === 'failure') {
errors += 1
} else if (annotation.annotation_level === 'warning') {
warnings += 1
} else {
notices += 1
}
}
return { errors, warnings, notices }
}
/**
* @param {String} severity issue severity from bandit analyze
* @param {String} confidence issue confidence from bandit analyze
* @returns {String} the true annotation level
*/
function getAnnotationLevel (severity, confidence) {
let result = 'warning'
switch (severity) {
case 'HIGH' :
switch (confidence) {
case 'HIGH' : result = annotationsLevels.severityHIGHconfidenceHIGH; break
case 'MEDIUM' : result = annotationsLevels.severityHIGHconfidenceMEDIUM; break
case 'LOW' : result = annotationsLevels.severityHIGHconfidenceLOW; break
}
break
case 'MEDIUM' :
switch (confidence) {
case 'HIGH' : result = annotationsLevels.severityMEDIUMconfidenceHIGH; break
case 'MEDIUM' : result = annotationsLevels.severityMEDIUMconfidenceMEDIUM; break
case 'LOW' : result = annotationsLevels.severityMEDIUMconfidenceLOW; break
}
break
case 'LOW' :
switch (confidence) {
case 'HIGH' : result = annotationsLevels.severityLOWconfidenceHIGH; break
case 'MEDIUM' : result = annotationsLevels.severityLOWconfidenceMEDIUM; break
case 'LOW' : result = annotationsLevels.severityLOWconfidenceLOW; break
}
}
return result
}
module.exports.getAnnotationLevel = getAnnotationLevel
module.exports.countIssueLevels = countAnnotationLevels