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
629 lines (590 loc) · 16.3 KB
/
Copy pathDmarcReportPage.js
File metadata and controls
629 lines (590 loc) · 16.3 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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
import React, { useState } from 'react'
import { useUserState } from './UserState'
import { useQuery } from '@apollo/client'
import {
DMARC_REPORT_GRAPH,
PAGINATED_DKIM_FAILURE_REPORT as DKIM_FAILURE_FORWARD,
PAGINATED_DMARC_FAILURE_REPORT as DMARC_FAILURE_FORWARD,
PAGINATED_FULL_PASS_REPORT as FULL_PASS_FORWARD,
PAGINATED_SPF_FAILURE_REPORT as SPF_FAILURE_FORWARD,
} from './graphql/queries'
import DmarcTimeGraph from './DmarcReportSummaryGraph'
import { Box, Heading, IconButton, Select, Stack, Text } from '@chakra-ui/core'
import DmarcReportTable from './DmarcReportTable'
import { t, Trans } from '@lingui/macro'
import { useLingui } from '@lingui/react'
import { number } from 'prop-types'
import { useHistory, useParams } from 'react-router-dom'
import { months } from './months'
import { ErrorBoundary } from 'react-error-boundary'
import { ErrorFallbackMessage } from './ErrorFallbackMessage'
import { LoadingMessage } from './LoadingMessage'
export default function DmarcReportPage({ summaryListResponsiveWidth }) {
const { currentUser } = useUserState()
const { domainSlug, period, year } = useParams()
const history = useHistory()
const { i18n } = useLingui()
const currentDate = new Date()
const [selectedPeriod, setSelectedPeriod] = useState(period)
const [selectedYear, setSelectedYear] = useState(year)
const [selectedDate, setSelectedDate] = useState(
`${selectedPeriod}, ${selectedYear}`,
)
// Allows the use of forward/backward navigation
if (selectedPeriod !== period) setSelectedPeriod(period)
if (selectedYear !== year) setSelectedPeriod(year)
if (selectedDate !== `${period}, ${year}`)
setSelectedDate(`${period}, ${year}`)
const {
loading: graphLoading,
error: graphError,
data: graphData,
} = useQuery(DMARC_REPORT_GRAPH, {
context: {
headers: {
authorization: currentUser.jwt,
},
},
variables: {
domain: domainSlug,
},
})
const { loading: dkimLoading, error: dkimError, data: dkimData } = useQuery(
DKIM_FAILURE_FORWARD,
{
context: {
headers: { authorization: currentUser.jwt },
},
variables: {
month: selectedPeriod,
year: selectedYear,
domain: domainSlug,
first: 50,
after: '',
},
},
)
const {
loading: dmarcFailureLoading,
error: dmarcFailureError,
data: dmarcFailureData,
} = useQuery(DMARC_FAILURE_FORWARD, {
context: {
headers: { authorization: currentUser.jwt },
},
variables: {
month: selectedPeriod,
year: selectedYear,
domain: domainSlug,
first: 50,
after: '',
},
})
const {
loading: spfFailureLoading,
error: spfFailureError,
data: spfFailureData,
} = useQuery(SPF_FAILURE_FORWARD, {
context: {
headers: { authorization: currentUser.jwt },
},
variables: {
month: selectedPeriod,
year: selectedYear,
domain: domainSlug,
first: 50,
after: '',
},
})
const {
loading: fullPassLoading,
error: fullPassError,
data: fullPassData,
} = useQuery(FULL_PASS_FORWARD, {
context: {
headers: { authorization: currentUser.jwt },
},
variables: {
month: selectedPeriod,
year: selectedYear,
domain: domainSlug,
first: 50,
after: '',
},
})
const options = [
<option
key="LAST30DAYS"
value={`LAST30DAYS, ${currentDate.getFullYear().toString()}`}
>
{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 = `${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 = `${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.replace(
`/domains/${domainSlug}/dmarc-report/${newPeriod}/${newYear}`,
)
}
// DMARC bar graph setup
let graphDisplay
// Set DMARC bar graph Loading
if (graphLoading) {
graphDisplay = (
<LoadingMessage>
<Trans>Yearly DMARC Graph</Trans>
</LoadingMessage>
)
}
// Display graph query error if found
else if (graphError) {
graphDisplay = <ErrorFallbackMessage error={graphError} />
}
// Set graph display using data if data exists
else if (graphData?.findDomainByDomain?.yearlyDmarcSummaries?.length > 0) {
const strengths = {
strong: [
{
name: 'fullPass',
displayName: t`Pass`,
},
],
moderate: [
{
name: 'passSpfOnly',
displayName: t`Pass Only SPF`,
},
],
moderateAlt: [
{
name: 'passDkimOnly',
displayName: t`Pass Only DKIM`,
},
],
weak: [
{
name: 'fail',
displayName: t`Fail`,
},
],
}
const formattedGraphData = {
periods: graphData.findDomainByDomain.yearlyDmarcSummaries.map(
(entry) => {
return {
month: entry.month,
year: entry.year,
...entry.categoryTotals,
}
},
),
}
formattedGraphData.strengths = strengths
graphDisplay = (
<ErrorBoundary FallbackComponent={ErrorFallbackMessage}>
<DmarcTimeGraph
data={formattedGraphData}
width="100%"
mr="400px"
responsiveWidth={summaryListResponsiveWidth}
/>
</ErrorBoundary>
)
}
// If no data exists for DMARC graph, display message saying so
else {
graphDisplay = (
<Heading as="h3" size="lg">
* <Trans>No data for the DMARC yearly report graph</Trans> *
</Heading>
)
}
const sourceIpAddress = {
Header: i18n._(t`Source IP Address`),
accessor: 'sourceIpAddress',
style: { whiteSpace: 'nowrap' },
}
const envelopeFrom = {
Header: i18n._(t`Envelope From`),
accessor: 'envelopeFrom',
style: { whiteSpace: 'nowrap' },
}
const dkimDomains = {
Header: i18n._(t`DKIM Domains`),
accessor: 'dkimDomains',
}
const dkimSelectors = {
Header: i18n._(t`DKIM Selectors`),
accessor: 'dkimSelectors',
}
const totalMessages = {
Header: i18n._(t`Total Messages`),
accessor: 'totalMessages',
Cell: ({ value }) => value.toLocaleString(i18n.locale),
style: { textAlign: 'right' },
}
const dnsHost = { Header: i18n._(t`DNS Host`), accessor: 'dnsHost' }
const spfDomains = {
Header: i18n._(t`SPF Domains`),
accessor: 'spfDomains',
}
const headerFrom = {
Header: i18n._(t`Header From`),
accessor: 'headerFrom',
style: { whiteSpace: 'nowrap' },
}
const guidance = { Header: i18n._(t`Guidance`), accessor: 'guidance' }
const spfAligned = {
Header: i18n._(t`SPF Aligned`),
accessor: 'spfAligned',
}
const spfResults = {
Header: i18n._(t`SPF Results`),
accessor: 'spfResults',
}
const dkimAligned = {
Header: i18n._(t`DKIM Aligned`),
accessor: 'dkimAligned',
}
const dkimResults = {
Header: i18n._(t`DKIM Results`),
accessor: 'dkimResults',
}
const disposition = {
Header: i18n._(t`Disposition`),
accessor: 'disposition',
}
// Initial sorting category for detail tables
const initialSort = [{ id: 'totalMessages', desc: true }]
// DKIM Failure Table setup
let dkimFailureTable
// Set DKIM Failure Table Loading
if (dkimLoading) {
dkimFailureTable = (
<LoadingMessage>
<Trans>DKIM Failure Table</Trans>
</LoadingMessage>
)
}
// DKIM Failure query no longer loading, check if data exists
else if (
dkimData?.findDomainByDomain?.dmarcSummaryByPeriod?.detailTables
?.dkimFailure?.edges.length > 0
) {
const dkimFailureColumns = [
{
Header: t`DKIM Failures by IP Address`,
hidden: true,
columns: [
sourceIpAddress,
dnsHost,
envelopeFrom,
headerFrom,
dkimDomains,
dkimSelectors,
dkimResults,
dkimAligned,
totalMessages,
guidance,
],
},
]
// Convert boolean values to string and properly format
const dkimFailureNodes = dkimData.findDomainByDomain.dmarcSummaryByPeriod.detailTables.dkimFailure.edges.map(
(edge) => {
const node = { ...edge.node }
node.dkimAligned = node.dkimAligned.toString()
return node
},
)
dkimFailureTable = (
<ErrorBoundary FallbackComponent={ErrorFallbackMessage}>
<DmarcReportTable
mt="30px"
data={dkimFailureNodes}
columns={dkimFailureColumns}
title={t`DKIM Failures by IP Address`}
initialSort={initialSort}
frontendPagination={true}
/>
</ErrorBoundary>
)
}
// Display DKIM Failure if found
else if (dkimError) {
dkimFailureTable = <ErrorFallbackMessage error={dkimError} />
}
// If no data exists for DKIM Failure table, display message saying so
else {
dkimFailureTable = (
<Heading as="h3" size="lg">
* <Trans>No data for the DKIM Failures by IP Address table</Trans> *
</Heading>
)
}
// Fully Aligned Table setup
let fullPassTable
// Set Fully Aligned Table Loading
if (fullPassLoading) {
fullPassTable = (
<LoadingMessage>
<Trans>Fully Aligned Table</Trans>
</LoadingMessage>
)
}
// Full pass query no longer loading, check if data exists
else if (
fullPassData?.findDomainByDomain?.dmarcSummaryByPeriod?.detailTables
?.fullPass?.edges.length > 0
) {
const fullPassColumns = [
{
Header: t`Fully Aligned by IP Address`,
hidden: true,
columns: [
sourceIpAddress,
dnsHost,
envelopeFrom,
headerFrom,
spfDomains,
dkimDomains,
dkimSelectors,
totalMessages,
],
},
]
// Convert boolean values to string and properly format
const fullPassNodes = fullPassData.findDomainByDomain.dmarcSummaryByPeriod.detailTables.fullPass.edges.map(
(edge) => {
return { ...edge.node }
},
)
fullPassTable = (
<ErrorBoundary FallbackComponent={ErrorFallbackMessage}>
<DmarcReportTable
data={fullPassNodes}
columns={fullPassColumns}
title={t`Fully Aligned by IP Address`}
initialSort={initialSort}
frontendPagination={true}
/>
</ErrorBoundary>
)
}
// Display Fully Aligned Error if found
else if (fullPassError) {
fullPassTable = <ErrorFallbackMessage error={fullPassError} />
}
// If no data exists for Fully Aligned table, display message saying so
else {
fullPassTable = (
<Heading as="h3" size="lg">
* <Trans>No data for the Fully Aligned by IP Address table</Trans> *
</Heading>
)
}
// SPF Failure Table setup
let spfFailureTable
// Set SPF Failure Table Loading
if (spfFailureLoading) {
spfFailureTable = (
<LoadingMessage>
<Trans>SPF Failure Table</Trans>
</LoadingMessage>
)
}
// SPF Failure query no longer loading, check if data exists
else if (
spfFailureData?.findDomainByDomain?.dmarcSummaryByPeriod?.detailTables
?.spfFailure?.edges.length > 0
) {
const spfFailureColumns = [
{
Header: t`SPF Failures by IP Address`,
hidden: true,
columns: [
sourceIpAddress,
dnsHost,
envelopeFrom,
headerFrom,
spfDomains,
spfResults,
spfAligned,
totalMessages,
guidance,
],
},
]
// Convert boolean values to string and properly format
const spfFailureNodes = spfFailureData.findDomainByDomain.dmarcSummaryByPeriod.detailTables.spfFailure.edges.map(
(edge) => {
const node = { ...edge.node }
node.spfAligned = node.spfAligned.toString()
return node
},
)
spfFailureTable = (
<ErrorBoundary FallbackComponent={ErrorFallbackMessage}>
<DmarcReportTable
mt="30px"
data={spfFailureNodes}
columns={spfFailureColumns}
title={t`SPF Failures by IP Address`}
initialSort={initialSort}
frontendPagination={true}
/>
</ErrorBoundary>
)
}
// Display SPF Failure if found
else if (spfFailureError) {
spfFailureTable = <ErrorFallbackMessage error={spfFailureError} />
}
// If no data exists for SPF Failure table, display message saying so
else {
spfFailureTable = (
<Heading as="h3" size="lg">
* <Trans>No data for the SPF Failures by IP Address table</Trans> *
</Heading>
)
}
// DMARC Failure Table setup
let dmarcFailureTable
// Set DMARC Failure Table Loading
if (dmarcFailureLoading) {
dmarcFailureTable = (
<LoadingMessage>
<Trans>DMARC Failure Table</Trans>
</LoadingMessage>
)
}
// DMARC Failure query no longer loading, check if data exists
else if (
dmarcFailureData?.findDomainByDomain?.dmarcSummaryByPeriod?.detailTables
?.dmarcFailure?.edges.length > 0
) {
const dmarcFailureColumns = [
{
Header: t`DMARC Failures by IP Address`,
hidden: true,
columns: [
sourceIpAddress,
dnsHost,
envelopeFrom,
headerFrom,
spfDomains,
dkimDomains,
dkimSelectors,
disposition,
totalMessages,
],
},
]
// Convert boolean values to string and properly format
const dmarcFailureNodes = dmarcFailureData.findDomainByDomain.dmarcSummaryByPeriod.detailTables.dmarcFailure.edges.map(
(edge) => {
return { ...edge.node }
},
)
dmarcFailureTable = (
<ErrorBoundary FallbackComponent={ErrorFallbackMessage}>
<DmarcReportTable
mt="30px"
data={dmarcFailureNodes}
columns={dmarcFailureColumns}
title={t`DMARC Failures by IP Address`}
initialSort={initialSort}
frontendPagination={true}
/>
</ErrorBoundary>
)
}
// Display DMARC Failure if found
else if (dmarcFailureError) {
dmarcFailureTable = <ErrorFallbackMessage error={dmarcFailureError} />
}
// If no data exists for DMARC Failure table, display message saying so
else {
dmarcFailureTable = (
<Heading as="h3" size="lg">
* <Trans>No data for the DMARC Failures by IP Address table</Trans> *
</Heading>
)
}
const tableDisplay = (
<ErrorBoundary FallbackComponent={ErrorFallbackMessage}>
{fullPassTable}
{spfFailureTable}
{dkimFailureTable}
{dmarcFailureTable}
</ErrorBoundary>
)
return (
<Box width="100%" px="4" mx="auto" overflow="hidden">
<Stack isInline align="center">
<IconButton
icon="arrow-left"
onClick={history.goBack}
color="gray.900"
fontSize="2xl"
aria-label="back to dmarc summaries"
align="left"
/>
<Heading as="h1" textAlign="center">
{domainSlug.toUpperCase()}
</Heading>
</Stack>
{graphDisplay}
<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,
}