aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/v2impact.go
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-01 12:48:15 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-01 12:48:15 -0500
commit465f427a04c2f10bc5163f6bceef13693f7e99e6 (patch)
treead4c963ee1b918fee01436030ceda2e6c882b225 /internal/feed/v2impact.go
parentf4f3bf7f03e790b5d98004de3498c102bdac50ad (diff)
downloadcvez-465f427a04c2f10bc5163f6bceef13693f7e99e6.tar.bz2
cvez-465f427a04c2f10bc5163f6bceef13693f7e99e6.zip
internal/feed: add v2impact, v3impact, and tests
Diffstat (limited to 'internal/feed/v2impact.go')
-rw-r--r--internal/feed/v2impact.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/internal/feed/v2impact.go b/internal/feed/v2impact.go
new file mode 100644
index 0000000..1585e18
--- /dev/null
+++ b/internal/feed/v2impact.go
@@ -0,0 +1,42 @@
+package feed
+
+//go:generate stringer -linecomment -type=V2Impact
+
+import (
+ "encoding/json"
+ "fmt"
+)
+
+// CVSS v2 impact level.
+type V2Impact byte
+
+const (
+ V2ImpactNone V2Impact = iota // NONE
+ V2ImpactPartial // PARTIAL
+ V2ImpactComplete // COMPLETE
+)
+
+// Unmarshal CVSS v2 impact level from JSON.
+func (me *V2Impact) UnmarshalJSON(b []byte) error {
+ // decode string, check for error
+ var s string
+ if err := json.Unmarshal(b, &s); err != nil {
+ return err
+ }
+
+ // check value
+ switch s {
+ case "NONE":
+ *me = V2ImpactNone
+ case "PARTIAL":
+ *me = V2ImpactPartial
+ case "COMPLETE":
+ *me = V2ImpactComplete
+ default:
+ // return error
+ return fmt.Errorf("unknown CVSS v2 impact: %s", s)
+ }
+
+ // return success
+ return nil
+}