File size: 5,109 Bytes
56b6519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import {
  BarElement,
  CategoryScale,
  Chart as ChartJS,
  ChartOptions,
  Legend,
  LinearScale,
  Title,
  Tooltip,
} from 'chart.js';
import annotationPlugin from 'chartjs-plugin-annotation';
import React, { useEffect, useRef, useState } from 'react';
import { Bar } from 'react-chartjs-2';
import { useParams } from 'react-router-dom';

import { cvssStringToScore } from '@/lib/utils';
import { getAuditById } from '@/services/audits';
import { getAuditsByClientName } from '@/services/clients';

ChartJS.register(
  CategoryScale,
  LinearScale,
  BarElement,
  Title,
  Tooltip,
  Legend,
  annotationPlugin,
);

type AverageCVSSProps = {
  auditId?: string;
  clientName?: string;
};

const AverageCVSS: React.FC<AverageCVSSProps> = ({ auditId, clientName }) => {
  const paramId = useParams().auditId;
  const auditIdRef = useRef(auditId ?? paramId);

  const [averageCVSS, setAverageCVSS] = useState(0);
  const [data, setData] = useState({
    labels: [''],
    datasets: [
      {
        data: [0],
        backgroundColor: '#3498db',
      },
    ],
  });
  useEffect(() => {
    if (auditIdRef.current === undefined) {
      auditIdRef.current = paramId;
    }

    if (clientName === undefined) {
      getAuditById(auditIdRef.current)
        .then(audit => {
          setAverageCVSS(
            Math.round(
              (audit.datas.findings.reduce(
                (acc, finding) => acc + cvssStringToScore(finding.cvssv3 ?? ''),
                0,
              ) /
                audit.datas.findings.length) *
                10,
            ) / 10,
          );
          setData({
            labels: audit.datas.findings.map(finding => finding.title),
            datasets: [
              {
                data: audit.datas.findings.map(finding =>
                  cvssStringToScore(finding.cvssv3 ?? ''),
                ),
                // @ts-expect-error component accepts string[] to put multiple colors, but the type is string
                backgroundColor: audit.datas.findings.map(finding =>
                  cvssStringToScore(finding.cvssv3 ?? '') >= 9
                    ? '#FF4136'
                    : cvssStringToScore(finding.cvssv3 ?? '') >= 7
                      ? '#FF851B'
                      : cvssStringToScore(finding.cvssv3 ?? '') >= 4
                        ? '#FFDC00'
                        : '#2ECC40',
                ),
              },
            ],
          });
        })
        .catch(console.error);
    } else {
      getAuditsByClientName(clientName)
        .then(audits => {
          setAverageCVSS(
            Math.round(
              (audits.reduce(
                (acc, audit) => acc + cvssStringToScore(audit.cvssv3),
                0,
              ) /
                audits.length) *
                10,
            ) / 10,
          );
          setData({
            labels: audits.map(audit => audit.name),
            datasets: [
              {
                data: audits.map(audit => cvssStringToScore(audit.cvssv3)),
                // @ts-expect-error component accepts string[] to put multiple colors, but the type is string
                backgroundColor: audits.map(audit =>
                  cvssStringToScore(audit.cvssv3) >= 9
                    ? '#FF4136'
                    : cvssStringToScore(audit.cvssv3) >= 7
                      ? '#FF851B'
                      : cvssStringToScore(audit.cvssv3) >= 4
                        ? '#FFDC00'
                        : '#2ECC40',
                ),
              },
            ],
          });
        })
        .catch(console.error);
    }
  }, [auditId, averageCVSS, clientName, paramId]);

  const options: ChartOptions<'bar'> = {
    indexAxis: 'y' as const,
    responsive: true,
    maintainAspectRatio: false,
    layout: {
      padding: {
        top: 30,
      },
    },
    scales: {
      x: {
        beginAtZero: true,
        max: 10,
        ticks: {
          stepSize: 2,
          color: 'white' as const,
        },
        grid: {
          color: 'rgba(255, 255, 255, 0.1)' as const,
        },
      },
      y: {
        ticks: {
          color: 'white' as const,
        },
        grid: {
          display: false,
        },
      },
    },
    plugins: {
      legend: {
        display: false,
      },
      datalabels: {
        formatter: () => '',
      },
      annotation: {
        annotations: {
          line1: {
            type: 'line' as const,
            xMin: averageCVSS,
            xMax: averageCVSS,
            borderColor: '#2ecc71' as const,
            borderWidth: 2,
            borderDash: [5, 5],
          },
        },
      },
    },
  };

  return (
    <div className="bg-gray-800 rounded-lg p-6">
      <div className="relative">
        <div className="absolute top-0 left-0 w-full text-right pr-4 text-green-400 text-sm">
          Average CVSS: {averageCVSS}
        </div>
        <div className="chart-container" style={{ height: '400px' }}>
          <Bar data={data} options={options} />
        </div>
      </div>
    </div>
  );
};

export default AverageCVSS;