forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDmarcReportPage.js
More file actions
410 lines (382 loc) · 10.4 KB
/
DmarcReportPage.js
File metadata and controls
410 lines (382 loc) · 10.4 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import React, { useState } from 'react'
import { useUserState } from './UserState'
import { useQuery } from '@apollo/client'
import {
DMARC_REPORT_DETAIL_TABLES,
DMARC_REPORT_SUMMARY_LIST,
} from './graphql/queries'
import DmarcTimeGraph from './DmarcReportSummaryGraph'
import { Box, Heading, Select, Stack, Text } from '@chakra-ui/core'
import DmarcReportTable from './DmarcReportTable'
import { t, Trans } from '@lingui/macro'
import { number } from 'prop-types'
import { useLingui } from '@lingui/react'
import { useParams, useHistory } from 'react-router-dom'
import {months} from "./months";
export default function DmarcReportPage({ summaryListResponsiveWidth }) {
const { currentUser } = useUserState()
const { i18n } = useLingui()
const { domainSlug, period, year } = useParams()
const history = useHistory()
const currentDate = new Date()
const [selectedPeriod, setSelectedPeriod] = useState(period || 'LAST30DAYS')
const [selectedYear, setSelectedYear] = useState(
year || currentDate.getFullYear().toString(),
)
const [selectedDate, setSelectedDate] = useState(
`${selectedPeriod}, ${selectedYear}`,
)
const { loading: barLoading, error: barError, data: barData } = useQuery(
DMARC_REPORT_SUMMARY_LIST,
{
context: {
headers: {
authorization: currentUser.jwt,
},
},
variables: { domainSlug: domainSlug },
},
)
const {
loading: tableLoading,
error: tableError,
data: tableData,
} = useQuery(DMARC_REPORT_DETAIL_TABLES, {
context: {
headers: {
authorization: currentUser.jwt,
},
},
variables: {
domainSlug: domainSlug,
period: selectedPeriod,
year: selectedYear,
},
})
if (tableLoading && barLoading)
return (
<Text>
<Trans>Loading...</Trans>
</Text>
)
const options = [
<option
key="LAST30DAYS"
value={`LAST30DAYS, ${currentDate.getFullYear().toString()}`}
>
{i18n._(t`Last 30 Days`)}
</option>,
]
// add dmarc date selection options
for (let i = currentDate.getMonth(), j = 13; j > 0; i--, j--) {
// handle previous year
if (i < 0) {
const value = `${months[months.length + i].toUpperCase()}, ${
currentDate.getFullYear() - 1
}`
const translatedValue = `${i18n
._(months[months.length + i])
.toUpperCase()}, ${currentDate.getFullYear() - 1}`
options.push(
<option key={value} value={value}>
{translatedValue}
</option>,
)
}
// handle current year
else {
const value = `${months[i].toUpperCase()}, ${currentDate.getFullYear()}`
const translatedValue = `${i18n
._(months[i])
.toUpperCase()}, ${currentDate.getFullYear()}`
options.push(
<option key={value} value={value}>
{translatedValue}
</option>,
)
}
}
// Show data for newly selected date
const handleChange = (e) => {
setSelectedDate(e.target.value)
const [newPeriod, newYear] = e.target.value.split(', ')
setSelectedPeriod(newPeriod)
setSelectedYear(newYear)
history.push(`/domains/${domainSlug}/dmarc-report/${newPeriod}/${newYear}`)
}
// Create dmarc bar graph if not loading and no errors
let barDisplay
if (!barLoading && !barError) {
const strengths = {
strong: [
{
name: 'fullPass',
displayName: i18n._(t`Pass`),
},
],
moderate: [
{
name: 'passSpfOnly',
displayName: i18n._(t`Pass Only SPF`),
},
],
moderateAlt: [
{
name: 'passDkimOnly',
displayName: i18n._(t`Pass Only DKIM`),
},
],
weak: [
{
name: 'fail',
displayName: i18n._(t`Fail`),
},
],
}
const formattedBarData = {
periods: barData.dmarcReportSummaryList.map((entry) => {
return { month: entry.month, year: entry.year, ...entry.categoryTotals }
}),
}
formattedBarData.strengths = strengths
barDisplay = (
<DmarcTimeGraph
data={formattedBarData}
width="100%"
mr="400px"
responsiveWidth={summaryListResponsiveWidth}
/>
)
} else {
// handle errors / loading
barDisplay = (
<Heading as="h3" size="lg" textAlign="center">
{barLoading ? (
<Trans>Loading...</Trans>
) : barError ? (
<Trans>Error while querying for summary bar graph</Trans>
) : (
''
)}
</Heading>
)
}
// Create report tables if no errors and message data exist
let tableDisplay
if (
!tableError &&
!tableLoading &&
tableData.dmarcReportDetailTables.detailTables.fullPass.length > 0
) {
const detailTablesData = tableData.dmarcReportDetailTables.detailTables
const fullPassData = detailTablesData.fullPass
const spfFailureData = detailTablesData.spfFailure
const spfMisalignedData = detailTablesData.spfMisaligned
const dkimFailureData = detailTablesData.dkimFailure
const dkimMisalignedData = detailTablesData.dkimMisaligned
const dmarcFailureData = detailTablesData.dmarcFailure
// Initial sorting category for detail tables
const initialSort = [{ id: 'totalMessages', desc: true }]
const [
sourceIpAddress,
envelopeFrom,
dkimDomains,
dkimSelectors,
totalMessages,
countryCode,
prefixOrg,
dnsHost,
spfDomains,
] = [
{ Header: i18n._(t`Source IP Address`), accessor: 'sourceIpAddress' },
{ Header: i18n._(t`Envelope From`), accessor: 'envelopeFrom' },
{ Header: i18n._(t`DKIM Domains`), accessor: 'dkimDomains' },
{ Header: i18n._(t`DKIM Selectors`), accessor: 'dkimSelectors' },
{ Header: i18n._(t`Total Messages`), accessor: 'totalMessages' },
{ Header: i18n._(t`Country Code`), accessor: 'countryCode' },
{ Header: i18n._(t`Prefix Org`), accessor: 'prefixOrg' },
{ Header: i18n._(t`DNS Host`), accessor: 'dnsHost' },
{ Header: i18n._(t`SPF Domains`), accessor: 'spfDomains' },
]
const fullPassColumns = [
{
Header: i18n._(t`Fully Aligned by IP Address`),
hidden: true,
columns: [
sourceIpAddress,
envelopeFrom,
countryCode,
prefixOrg,
dnsHost,
spfDomains,
dkimDomains,
dkimSelectors,
totalMessages,
],
},
]
const spfFailureColumns = [
{
Header: i18n._(t`SPF Failures by IP Address`),
hidden: true,
columns: [
sourceIpAddress,
envelopeFrom,
countryCode,
prefixOrg,
dnsHost,
spfDomains,
totalMessages,
],
},
]
const spfMisalignedColumns = [
{
Header: i18n._(t`SPF Misalignment by IP Address`),
hidden: true,
columns: [
sourceIpAddress,
envelopeFrom,
countryCode,
prefixOrg,
dnsHost,
spfDomains,
totalMessages,
],
},
]
const dkimFailureColumns = [
{
Header: i18n._(t`DKIM Failures by IP Address`),
hidden: true,
columns: [
sourceIpAddress,
envelopeFrom,
countryCode,
prefixOrg,
dnsHost,
dkimDomains,
dkimSelectors,
totalMessages,
],
},
]
const dkimMisalignedColumns = [
{
Header: i18n._(t`DKIM Misalignment by IP Address`),
hidden: true,
columns: [
sourceIpAddress,
envelopeFrom,
countryCode,
prefixOrg,
dnsHost,
dkimDomains,
dkimSelectors,
totalMessages,
],
},
]
const dmarcFailureColumns = [
{
Header: i18n._(t`DMARC Failures by IP Address`),
hidden: true,
columns: [
sourceIpAddress,
envelopeFrom,
countryCode,
prefixOrg,
dnsHost,
spfDomains,
dkimDomains,
dkimSelectors,
totalMessages,
],
},
]
tableDisplay = (
<>
<DmarcReportTable
data={fullPassData}
columns={fullPassColumns}
title={i18n._(t`Fully Aligned by IP Address`)}
initialSort={initialSort}
mb="8"
/>
<DmarcReportTable
data={spfFailureData}
columns={spfFailureColumns}
title={i18n._(t`SPF Failures by IP Address`)}
initialSort={initialSort}
mb="8"
/>
<DmarcReportTable
data={spfMisalignedData}
columns={spfMisalignedColumns}
title={i18n._(t`SPF Misalignment by IP Address`)}
initialSort={initialSort}
mb="8"
/>
<DmarcReportTable
data={dkimFailureData}
columns={dkimFailureColumns}
title={i18n._(t`DKIM Failures by IP Address`)}
initialSort={initialSort}
mb="8"
/>
<DmarcReportTable
data={dkimMisalignedData}
columns={dkimMisalignedColumns}
title={i18n._(t`DKIM Misalignment by IP Address`)}
initialSort={initialSort}
mb="8"
/>
<DmarcReportTable
data={dmarcFailureData}
columns={dmarcFailureColumns}
title={i18n._(t`DMARC Failures by IP Address`)}
initialSort={initialSort}
mb="8"
/>
</>
)
}
// handle errors / loading / no data
else
tableDisplay = (
<Heading as="h3" size="lg" textAlign="center">
{tableLoading ? (
<Trans>Loading...</Trans>
) : tableError ? (
<Trans>Error while querying for summary tables</Trans>
) : (
''
)}
</Heading>
)
return (
<Box width="100%">
<Heading as="h1" textAlign="center">
{domainSlug.toUpperCase()}
</Heading>
{barDisplay}
<Stack isInline align="center" mb="16px">
<Text fontWeight="bold" textAlign="center">
<Trans>Showing data for period: </Trans>
</Text>
<Select
width="fit-content"
onChange={(e) => handleChange(e)}
value={selectedDate}
>
{options}
</Select>
</Stack>
{tableDisplay}
</Box>
)
}
DmarcReportPage.propTypes = {
// Need to allow summaryList ResponsiveContainer width as a set number for tests to work
summaryListResponsiveWidth: number,
}