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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
|
import Foundation
enum ServiceResult<Value> {
case success(Value)
case empty(String)
case error(String)
}
enum DomainAvailabilityStatus: String, Codable {
case available
case registered
case unknown
}
struct DomainAvailabilityResult: Codable {
let domain: String
let status: DomainAvailabilityStatus
}
struct DomainSuggestionResult: Identifiable, Codable {
let id: UUID
let domain: String
let status: DomainAvailabilityStatus
init(id: UUID = UUID(), domain: String, status: DomainAvailabilityStatus) {
self.id = id
self.domain = domain
self.status = status
}
}
struct WatchedDomain: Codable, Identifiable {
let id: UUID
let domain: String
let createdAt: Date
var lastKnownAvailability: DomainAvailabilityStatus?
init(
id: UUID = UUID(),
domain: String,
createdAt: Date = Date(),
lastKnownAvailability: DomainAvailabilityStatus? = nil
) {
self.id = id
self.domain = domain
self.createdAt = createdAt
self.lastKnownAvailability = lastKnownAvailability
}
}
enum ChangeSeverity: Int, Codable, CaseIterable, Comparable {
case low
case medium
case high
static func < (lhs: ChangeSeverity, rhs: ChangeSeverity) -> Bool {
lhs.rawValue < rhs.rawValue
}
var title: String {
switch self {
case .low:
return "Low"
case .medium:
return "Medium"
case .high:
return "High"
}
}
}
enum CertificateWarningLevel: String, Codable {
case none
case warning
case critical
var title: String {
switch self {
case .none:
return "Healthy"
case .warning:
return "Warning"
case .critical:
return "Critical"
}
}
}
struct DomainChangeSummary: Codable, Equatable {
let hasChanges: Bool
let changedSections: [String]
let message: String
let severity: ChangeSeverity
let generatedAt: Date
init(
hasChanges: Bool,
changedSections: [String],
message: String,
severity: ChangeSeverity,
generatedAt: Date
) {
self.hasChanges = hasChanges
self.changedSections = changedSections
self.message = message
self.severity = severity
self.generatedAt = generatedAt
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
hasChanges = try container.decodeIfPresent(Bool.self, forKey: .hasChanges) ?? false
changedSections = try container.decodeIfPresent([String].self, forKey: .changedSections) ?? []
generatedAt = try container.decode(Date.self, forKey: .generatedAt)
severity = try container.decodeIfPresent(ChangeSeverity.self, forKey: .severity) ?? (hasChanges ? .medium : .low)
message = try container.decodeIfPresent(String.self, forKey: .message)
?? (changedSections.isEmpty ? "No meaningful changes" : changedSections.joined(separator: " • "))
}
}
enum BatchLookupSource: String, Codable {
case manual
case watchlistRefresh
}
enum BatchLookupStatus: String, Codable {
case pending
case running
case completed
case failed
}
struct BatchLookupResult: Identifiable, Codable, Equatable {
let id: UUID
let domain: String
let historyEntryID: UUID?
let availability: DomainAvailabilityStatus?
let primaryIP: String?
let quickStatus: String
let summaryMessage: String?
let changeSeverity: ChangeSeverity?
let certificateWarningLevel: CertificateWarningLevel
let timestamp: Date
let status: BatchLookupStatus
let errorMessage: String?
init(
id: UUID = UUID(),
domain: String,
historyEntryID: UUID?,
availability: DomainAvailabilityStatus?,
primaryIP: String?,
quickStatus: String,
summaryMessage: String? = nil,
changeSeverity: ChangeSeverity? = nil,
certificateWarningLevel: CertificateWarningLevel = .none,
timestamp: Date,
status: BatchLookupStatus,
errorMessage: String? = nil
) {
self.id = id
self.domain = domain
self.historyEntryID = historyEntryID
self.availability = availability
self.primaryIP = primaryIP
self.quickStatus = quickStatus
self.summaryMessage = summaryMessage
self.changeSeverity = changeSeverity
self.certificateWarningLevel = certificateWarningLevel
self.timestamp = timestamp
self.status = status
self.errorMessage = errorMessage
}
}
struct BatchSweepSummary: Identifiable, Equatable {
let id = UUID()
let source: BatchLookupSource
let totalDomains: Int
let changedDomains: Int
let unchangedDomains: Int
let warningDomains: Int
let results: [BatchLookupResult]
let generatedAt: Date
}
enum DataCapability: String, Codable {
case ownershipHistory
case dnsHistory
case extendedSubdomains
case domainPricing
}
enum HistoryDateFilter: String, CaseIterable, Identifiable {
case today
case last7Days
case all
var id: String { rawValue }
var title: String {
switch self {
case .today:
return "Today"
case .last7Days:
return "Last 7 Days"
case .all:
return "All"
}
}
}
enum ChangeFilterOption: String, CaseIterable, Identifiable {
case all
case changed
case unchanged
var id: String { rawValue }
var title: String {
switch self {
case .all:
return "All"
case .changed:
return "Changed"
case .unchanged:
return "Unchanged"
}
}
}
enum HistorySortOption: String, CaseIterable, Identifiable {
case newest
case oldest
case domain
var id: String { rawValue }
var title: String {
switch self {
case .newest:
return "Newest"
case .oldest:
return "Oldest"
case .domain:
return "Domain A-Z"
}
}
}
enum WatchlistFilterOption: String, CaseIterable, Identifiable {
case all
case pinnedOnly
case changedOnly
var id: String { rawValue }
var title: String {
switch self {
case .all:
return "All"
case .pinnedOnly:
return "Pinned Only"
case .changedOnly:
return "Changed Only"
}
}
}
enum WatchlistSortOption: String, CaseIterable, Identifiable {
case pinned
case recentlyUpdated
case alphabetical
var id: String { rawValue }
var title: String {
switch self {
case .pinned:
return "Pinned"
case .recentlyUpdated:
return "Recently Updated"
case .alphabetical:
return "Alphabetical"
}
}
}
enum PremiumCapability: String, Codable {
case unlimitedTrackedDomains
case automatedMonitoring
case pushAlerts
case batchTracking
case advancedExports
}
struct TrackedDomain: Codable, Identifiable, Equatable {
let id: UUID
var domain: String
var createdAt: Date
var updatedAt: Date
var note: String?
var isPinned: Bool
var lastKnownAvailability: DomainAvailabilityStatus?
var lastSnapshotID: UUID?
var lastChangeSummary: DomainChangeSummary?
var lastChangeSeverity: ChangeSeverity?
var certificateWarningLevel: CertificateWarningLevel
var certificateDaysRemaining: Int?
init(
id: UUID = UUID(),
domain: String,
createdAt: Date = Date(),
updatedAt: Date = Date(),
note: String? = nil,
isPinned: Bool = false,
lastKnownAvailability: DomainAvailabilityStatus? = nil,
lastSnapshotID: UUID? = nil,
lastChangeSummary: DomainChangeSummary? = nil,
lastChangeSeverity: ChangeSeverity? = nil,
certificateWarningLevel: CertificateWarningLevel = .none,
certificateDaysRemaining: Int? = nil
) {
self.id = id
self.domain = domain
self.createdAt = createdAt
self.updatedAt = updatedAt
self.note = note
self.isPinned = isPinned
self.lastKnownAvailability = lastKnownAvailability
self.lastSnapshotID = lastSnapshotID
self.lastChangeSummary = lastChangeSummary
self.lastChangeSeverity = lastChangeSeverity
self.certificateWarningLevel = certificateWarningLevel
self.certificateDaysRemaining = certificateDaysRemaining
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(UUID.self, forKey: .id) ?? UUID()
domain = try container.decode(String.self, forKey: .domain)
createdAt = try container.decodeIfPresent(Date.self, forKey: .createdAt) ?? Date()
updatedAt = try container.decodeIfPresent(Date.self, forKey: .updatedAt) ?? createdAt
note = try container.decodeIfPresent(String.self, forKey: .note)
isPinned = try container.decodeIfPresent(Bool.self, forKey: .isPinned) ?? false
lastKnownAvailability = try container.decodeIfPresent(DomainAvailabilityStatus.self, forKey: .lastKnownAvailability)
lastSnapshotID = try container.decodeIfPresent(UUID.self, forKey: .lastSnapshotID)
lastChangeSummary = try container.decodeIfPresent(DomainChangeSummary.self, forKey: .lastChangeSummary)
lastChangeSeverity = try container.decodeIfPresent(ChangeSeverity.self, forKey: .lastChangeSeverity) ?? lastChangeSummary?.severity
certificateWarningLevel = try container.decodeIfPresent(CertificateWarningLevel.self, forKey: .certificateWarningLevel) ?? .none
certificateDaysRemaining = try container.decodeIfPresent(Int.self, forKey: .certificateDaysRemaining)
}
}
// MARK: - DNS Models
enum DNSRecordType: String, CaseIterable, Codable {
case A
case AAAA
case MX
case NS
case TXT
case CNAME
case SOA
case SRV
case CAA
case DS
case PTR
var queryType: Int {
switch self {
case .A: return 1
case .AAAA: return 28
case .MX: return 15
case .NS: return 2
case .TXT: return 16
case .CNAME: return 5
case .SOA: return 6
case .SRV: return 33
case .CAA: return 257
case .DS: return 43
case .PTR: return 12
}
}
var usesRawDataValue: Bool {
switch self {
case .TXT, .SOA, .DS:
return true
default:
return false
}
}
}
struct DNSRecord: Identifiable, Codable {
var id = UUID()
let value: String
let ttl: Int
}
struct DNSSection: Identifiable, Codable {
var id = UUID()
let recordType: DNSRecordType
var records: [DNSRecord]
var wildcardRecords: [DNSRecord] = []
var dnssecSigned: Bool?
var error: String?
}
// MARK: - SSL Models
struct SSLCertificateInfo: Codable {
struct CertChainEntry: Codable {
let subject: String
let issuer: String
}
let commonName: String
let subjectAltNames: [String]
let issuer: String
let validFrom: Date
let validUntil: Date
let daysUntilExpiry: Int
let chainDepth: Int
let tlsVersion: String?
let cipherSuite: String?
let chain: [CertChainEntry]
init(
commonName: String,
subjectAltNames: [String],
issuer: String,
validFrom: Date,
validUntil: Date,
daysUntilExpiry: Int,
chainDepth: Int,
tlsVersion: String? = nil,
cipherSuite: String? = nil,
chain: [CertChainEntry] = []
) {
self.commonName = commonName
self.subjectAltNames = subjectAltNames
self.issuer = issuer
self.validFrom = validFrom
self.validUntil = validUntil
self.daysUntilExpiry = daysUntilExpiry
self.chainDepth = chainDepth
self.tlsVersion = tlsVersion
self.cipherSuite = cipherSuite
self.chain = chain
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
commonName = try container.decode(String.self, forKey: .commonName)
subjectAltNames = try container.decode([String].self, forKey: .subjectAltNames)
issuer = try container.decode(String.self, forKey: .issuer)
validFrom = try container.decode(Date.self, forKey: .validFrom)
validUntil = try container.decode(Date.self, forKey: .validUntil)
daysUntilExpiry = try container.decode(Int.self, forKey: .daysUntilExpiry)
chainDepth = try container.decode(Int.self, forKey: .chainDepth)
tlsVersion = try container.decodeIfPresent(String.self, forKey: .tlsVersion)
cipherSuite = try container.decodeIfPresent(String.self, forKey: .cipherSuite)
chain = try container.decodeIfPresent([CertChainEntry].self, forKey: .chain) ?? []
}
}
// MARK: - HTTP Headers Models
struct HTTPHeader: Identifiable, Codable {
var id = UUID()
let name: String
let value: String
static let securityHeaders: Set<String> = [
"strict-transport-security",
"x-frame-options",
"x-content-type-options",
"content-security-policy",
"referrer-policy"
]
var isSecurityHeader: Bool {
Self.securityHeaders.contains(name.lowercased())
}
}
// MARK: - Reachability Models
struct PortReachability: Identifiable, Codable {
var id = UUID()
let port: UInt16
let reachable: Bool
let latencyMs: Int?
}
// MARK: - IP Geolocation Models
struct IPGeolocation: Codable {
let ip: String
let city: String?
let region: String?
let country_name: String?
let org: String?
let latitude: Double?
let longitude: Double?
}
// MARK: - Ownership Models
struct DomainOwnership: Codable, Equatable {
let registrar: String?
let createdDate: Date?
let expirationDate: Date?
let status: [String]
let nameservers: [String]
let abuseEmail: String?
init(
registrar: String? = nil,
createdDate: Date? = nil,
expirationDate: Date? = nil,
status: [String] = [],
nameservers: [String] = [],
abuseEmail: String? = nil
) {
self.registrar = registrar
self.createdDate = createdDate
self.expirationDate = expirationDate
self.status = status
self.nameservers = nameservers
self.abuseEmail = abuseEmail
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
registrar = try container.decodeIfPresent(String.self, forKey: .registrar)
createdDate = try container.decodeIfPresent(Date.self, forKey: .createdDate)
expirationDate = try container.decodeIfPresent(Date.self, forKey: .expirationDate)
status = try container.decodeIfPresent([String].self, forKey: .status) ?? []
nameservers = try container.decodeIfPresent([String].self, forKey: .nameservers) ?? []
abuseEmail = try container.decodeIfPresent(String.self, forKey: .abuseEmail)
}
}
struct DiscoveredSubdomain: Codable, Equatable, Hashable, Identifiable {
var id: String { hostname }
let hostname: String
}
// MARK: - Email Security Models
struct EmailSecurityResult: Codable {
let spf: EmailSecurityRecord
let dmarc: EmailSecurityRecord
let dkim: EmailSecurityRecord
let bimi: EmailSecurityRecord
let mtaSts: MTASTSResult?
init(
spf: EmailSecurityRecord,
dmarc: EmailSecurityRecord,
dkim: EmailSecurityRecord,
bimi: EmailSecurityRecord = EmailSecurityRecord(found: false, value: nil),
mtaSts: MTASTSResult? = nil
) {
self.spf = spf
self.dmarc = dmarc
self.dkim = dkim
self.bimi = bimi
self.mtaSts = mtaSts
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
spf = try container.decode(EmailSecurityRecord.self, forKey: .spf)
dmarc = try container.decode(EmailSecurityRecord.self, forKey: .dmarc)
dkim = try container.decode(EmailSecurityRecord.self, forKey: .dkim)
bimi = try container.decodeIfPresent(EmailSecurityRecord.self, forKey: .bimi)
?? EmailSecurityRecord(found: false, value: nil)
mtaSts = try container.decodeIfPresent(MTASTSResult.self, forKey: .mtaSts)
}
}
struct EmailSecurityRecord: Codable {
let found: Bool
let value: String?
let matchedSelector: String?
init(found: Bool, value: String?, matchedSelector: String? = nil) {
self.found = found
self.value = value
self.matchedSelector = matchedSelector
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
found = try container.decode(Bool.self, forKey: .found)
value = try container.decodeIfPresent(String.self, forKey: .value)
matchedSelector = try container.decodeIfPresent(String.self, forKey: .matchedSelector)
}
}
struct MTASTSResult: Codable {
let txtFound: Bool
let policyMode: String?
}
// MARK: - Redirect Chain Models
struct RedirectHop: Identifiable, Codable {
var id = UUID()
let stepNumber: Int
let statusCode: Int
let url: String
let isFinal: Bool
}
// MARK: - Port Scan Models
enum PortScanKind: String, Codable {
case standard
case custom
}
struct PortScanResult: Identifiable, Codable {
var id = UUID()
let port: UInt16
let service: String
let open: Bool
var banner: String?
let kind: PortScanKind
let durationMs: Int?
nonisolated init(
port: UInt16,
service: String,
open: Bool,
banner: String? = nil,
kind: PortScanKind = .standard,
durationMs: Int? = nil
) {
self.port = port
self.service = service
self.open = open
self.banner = banner
self.kind = kind
self.durationMs = durationMs
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(UUID.self, forKey: .id) ?? UUID()
port = try container.decode(UInt16.self, forKey: .port)
service = try container.decode(String.self, forKey: .service)
open = try container.decode(Bool.self, forKey: .open)
banner = try container.decodeIfPresent(String.self, forKey: .banner)
kind = try container.decodeIfPresent(PortScanKind.self, forKey: .kind) ?? .standard
durationMs = try container.decodeIfPresent(Int.self, forKey: .durationMs)
}
}
// MARK: - History Models
struct HistoryEntry: Identifiable, Codable {
var id = UUID()
let domain: String
let timestamp: Date
var trackedDomainID: UUID?
let dnsSections: [DNSSection]
let sslInfo: SSLCertificateInfo?
let httpHeaders: [HTTPHeader]
let reachabilityResults: [PortReachability]
let ipGeolocation: IPGeolocation?
var emailSecurity: EmailSecurityResult?
var mtaSts: MTASTSResult?
var ownership: DomainOwnership?
var ptrRecord: String?
var redirectChain: [RedirectHop]
var subdomains: [DiscoveredSubdomain]
var portScanResults: [PortScanResult]
var hstsPreloaded: Bool?
var availabilityResult: DomainAvailabilityResult?
var suggestions: [DomainSuggestionResult]
var resolverDisplayName: String
var resolverURLString: String
var totalLookupDurationMs: Int?
var primaryIP: String?
var finalRedirectURL: String?
var tlsStatusSummary: String?
var emailSecuritySummary: String?
var httpGradeSummary: String?
var changeSummary: DomainChangeSummary?
var sslError: String?
var httpHeadersError: String?
var reachabilityError: String?
var ipGeolocationError: String?
var emailSecurityError: String?
var ownershipError: String?
var ptrError: String?
var redirectChainError: String?
var subdomainsError: String?
var portScanError: String?
init(domain: String, timestamp: Date, trackedDomainID: UUID? = nil, dnsSections: [DNSSection],
sslInfo: SSLCertificateInfo?, httpHeaders: [HTTPHeader],
reachabilityResults: [PortReachability], ipGeolocation: IPGeolocation?,
emailSecurity: EmailSecurityResult? = nil, mtaSts: MTASTSResult? = nil, ownership: DomainOwnership? = nil,
ptrRecord: String? = nil, redirectChain: [RedirectHop] = [], subdomains: [DiscoveredSubdomain] = [],
portScanResults: [PortScanResult] = [],
hstsPreloaded: Bool? = nil, availabilityResult: DomainAvailabilityResult? = nil,
suggestions: [DomainSuggestionResult] = [], resolverDisplayName: String, resolverURLString: String,
totalLookupDurationMs: Int? = nil, primaryIP: String? = nil, finalRedirectURL: String? = nil,
tlsStatusSummary: String? = nil, emailSecuritySummary: String? = nil, httpGradeSummary: String? = nil,
changeSummary: DomainChangeSummary? = nil, sslError: String? = nil, httpHeadersError: String? = nil,
reachabilityError: String? = nil, ipGeolocationError: String? = nil,
emailSecurityError: String? = nil, ownershipError: String? = nil, ptrError: String? = nil,
redirectChainError: String? = nil, subdomainsError: String? = nil, portScanError: String? = nil) {
self.domain = domain
self.timestamp = timestamp
self.trackedDomainID = trackedDomainID
self.dnsSections = dnsSections
self.sslInfo = sslInfo
self.httpHeaders = httpHeaders
self.reachabilityResults = reachabilityResults
self.ipGeolocation = ipGeolocation
self.emailSecurity = emailSecurity
self.mtaSts = mtaSts ?? emailSecurity?.mtaSts
self.ownership = ownership
self.ptrRecord = ptrRecord
self.redirectChain = redirectChain
self.subdomains = subdomains
self.portScanResults = portScanResults
self.hstsPreloaded = hstsPreloaded
self.availabilityResult = availabilityResult
self.suggestions = suggestions
self.resolverDisplayName = resolverDisplayName
self.resolverURLString = resolverURLString
self.totalLookupDurationMs = totalLookupDurationMs
self.primaryIP = primaryIP
self.finalRedirectURL = finalRedirectURL
self.tlsStatusSummary = tlsStatusSummary
self.emailSecuritySummary = emailSecuritySummary
self.httpGradeSummary = httpGradeSummary
self.changeSummary = changeSummary
self.sslError = sslError
self.httpHeadersError = httpHeadersError
self.reachabilityError = reachabilityError
self.ipGeolocationError = ipGeolocationError
self.emailSecurityError = emailSecurityError
self.ownershipError = ownershipError
self.ptrError = ptrError
self.redirectChainError = redirectChainError
self.subdomainsError = subdomainsError
self.portScanError = portScanError
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(UUID.self, forKey: .id) ?? UUID()
domain = try container.decode(String.self, forKey: .domain)
timestamp = try container.decode(Date.self, forKey: .timestamp)
trackedDomainID = try container.decodeIfPresent(UUID.self, forKey: .trackedDomainID)
dnsSections = try container.decode([DNSSection].self, forKey: .dnsSections)
sslInfo = try container.decodeIfPresent(SSLCertificateInfo.self, forKey: .sslInfo)
httpHeaders = try container.decode([HTTPHeader].self, forKey: .httpHeaders)
reachabilityResults = try container.decode([PortReachability].self, forKey: .reachabilityResults)
ipGeolocation = try container.decodeIfPresent(IPGeolocation.self, forKey: .ipGeolocation)
emailSecurity = try container.decodeIfPresent(EmailSecurityResult.self, forKey: .emailSecurity)
mtaSts = try container.decodeIfPresent(MTASTSResult.self, forKey: .mtaSts) ?? emailSecurity?.mtaSts
ownership = try container.decodeIfPresent(DomainOwnership.self, forKey: .ownership)
ptrRecord = try container.decodeIfPresent(String.self, forKey: .ptrRecord)
redirectChain = try container.decodeIfPresent([RedirectHop].self, forKey: .redirectChain) ?? []
subdomains = try container.decodeIfPresent([DiscoveredSubdomain].self, forKey: .subdomains) ?? []
portScanResults = try container.decodeIfPresent([PortScanResult].self, forKey: .portScanResults) ?? []
hstsPreloaded = try container.decodeIfPresent(Bool.self, forKey: .hstsPreloaded)
availabilityResult = try container.decodeIfPresent(DomainAvailabilityResult.self, forKey: .availabilityResult)
suggestions = try container.decodeIfPresent([DomainSuggestionResult].self, forKey: .suggestions) ?? []
resolverDisplayName = try container.decodeIfPresent(String.self, forKey: .resolverDisplayName) ?? "Cloudflare"
resolverURLString = try container.decodeIfPresent(String.self, forKey: .resolverURLString) ?? DNSResolverOption.defaultURLString
totalLookupDurationMs = try container.decodeIfPresent(Int.self, forKey: .totalLookupDurationMs)
primaryIP = try container.decodeIfPresent(String.self, forKey: .primaryIP)
finalRedirectURL = try container.decodeIfPresent(String.self, forKey: .finalRedirectURL)
tlsStatusSummary = try container.decodeIfPresent(String.self, forKey: .tlsStatusSummary)
emailSecuritySummary = try container.decodeIfPresent(String.self, forKey: .emailSecuritySummary)
httpGradeSummary = try container.decodeIfPresent(String.self, forKey: .httpGradeSummary)
changeSummary = try container.decodeIfPresent(DomainChangeSummary.self, forKey: .changeSummary)
sslError = try container.decodeIfPresent(String.self, forKey: .sslError)
httpHeadersError = try container.decodeIfPresent(String.self, forKey: .httpHeadersError)
reachabilityError = try container.decodeIfPresent(String.self, forKey: .reachabilityError)
ipGeolocationError = try container.decodeIfPresent(String.self, forKey: .ipGeolocationError)
emailSecurityError = try container.decodeIfPresent(String.self, forKey: .emailSecurityError)
ownershipError = try container.decodeIfPresent(String.self, forKey: .ownershipError)
ptrError = try container.decodeIfPresent(String.self, forKey: .ptrError)
redirectChainError = try container.decodeIfPresent(String.self, forKey: .redirectChainError)
subdomainsError = try container.decodeIfPresent(String.self, forKey: .subdomainsError)
portScanError = try container.decodeIfPresent(String.self, forKey: .portScanError)
}
}
// MARK: - Cloudflare DNS-over-HTTPS Response
struct CloudflareDNSResponse: Decodable {
let Status: Int
let AD: Bool?
let Answer: [CloudflareDNSAnswer]?
struct CloudflareDNSAnswer: Decodable {
let name: String
let type: Int
let TTL: Int
let data: String
}
}
|