-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathOperationDecodingError.swift
150 lines (130 loc) · 5.23 KB
/
OperationDecodingError.swift
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
//
// OperationDecodingError.swift
//
//
// Created by Mathew Polzin on 2/23/20.
//
import OpenAPIKitCore
extension OpenAPI.Error.Decoding {
public struct Operation: OpenAPIError {
public let endpoint: OpenAPI.HttpMethod
public let context: Context
internal let relativeCodingPath: [CodingKey]
public enum Context: Sendable {
case request(Request)
case response(Response)
case inconsistency(InconsistencyError)
case other(Swift.DecodingError)
case neither(EitherDecodeNoTypesMatchedError)
}
}
}
extension OpenAPI.Error.Decoding.Operation {
public var subjectName: String {
switch context {
case .request(let error):
return error.subjectName
case .response(let error):
return error.subjectName
case .inconsistency(let error):
return error.subjectName
case .other(let decodingError):
return decodingError.subjectName
case .neither(let eitherError):
return eitherError.subjectName
}
}
public var contextString: String { "" }
public var errorCategory: ErrorCategory {
switch context {
case .request(let error):
return error.errorCategory
case .response(let error):
return error.errorCategory
case .inconsistency(let error):
return .inconsistency(details: error.details)
case .other(let decodingError):
return decodingError.errorCategory
case .neither(let eitherError):
return eitherError.errorCategory
}
}
public var codingPath: [CodingKey] {
switch context {
case .request(let error):
return error.codingPath
case .response(let error):
return error.codingPath
case .inconsistency(let error):
return error.codingPath
case .other(let decodingError):
return decodingError.codingPath
case .neither(let eitherError):
return eitherError.codingPath
}
}
internal var relativeCodingPathString: String {
relativeCodingPath.stringValue
}
internal init(_ error: OpenAPI.Error.Decoding.Request) {
var codingPath = error.codingPath.dropFirst(2)
// this part of the coding path is structurally guaranteed to be an HTTP verb.
let verb = OpenAPI.HttpMethod(rawValue: codingPath.removeFirst().stringValue.uppercased())!
endpoint = verb
context = .request(error)
relativeCodingPath = Array(codingPath)
}
internal init(_ error: OpenAPI.Error.Decoding.Response) {
var codingPath = error.codingPath.dropFirst(2)
// this part of the coding path is structurally guaranteed to be an HTTP verb.
let verb = OpenAPI.HttpMethod(rawValue: codingPath.removeFirst().stringValue.uppercased())!
endpoint = verb
context = .response(error)
relativeCodingPath = Array(codingPath)
}
internal init(_ error: InconsistencyError) {
var codingPath = error.codingPath.dropFirst(2)
// this part of the coding path is structurally guaranteed to be an HTTP verb.
let verb = OpenAPI.HttpMethod(rawValue: codingPath.removeFirst().stringValue.uppercased())!
endpoint = verb
context = .inconsistency(error)
relativeCodingPath = Array(codingPath)
}
internal init(_ error: Swift.DecodingError) {
var codingPath = error.codingPathWithoutSubject.dropFirst(2)
// this part of the coding path is structurally guaranteed to be an HTTP verb.
let verb = OpenAPI.HttpMethod(rawValue: codingPath.removeFirst().stringValue.uppercased())!
endpoint = verb
context = .other(error)
relativeCodingPath = Array(codingPath)
}
internal init(_ eitherError: EitherDecodeNoTypesMatchedError) {
if let eitherBranchToDigInto = Self.eitherBranchToDigInto(eitherError) {
self = Self(unwrapping: eitherBranchToDigInto)
return
}
var codingPath = eitherError.codingPath.dropFirst(2)
// this part of the coding path is structurally guaranteed to be an HTTP verb.
let verb = OpenAPI.HttpMethod(rawValue: codingPath.removeFirst().stringValue.uppercased())!
endpoint = verb
context = .neither(eitherError)
relativeCodingPath = Array(codingPath)
}
}
extension OpenAPI.Error.Decoding.Operation: DiggingError {
public init(unwrapping error: Swift.DecodingError) {
if let decodingError = error.underlyingError as? Swift.DecodingError {
self = Self(unwrapping: decodingError)
} else if let responseError = error.underlyingError as? OpenAPI.Error.Decoding.Request {
self = Self(responseError)
} else if let responseError = error.underlyingError as? OpenAPI.Error.Decoding.Response {
self = Self(responseError)
} else if let inconsistencyError = error.underlyingError as? InconsistencyError {
self = Self(inconsistencyError)
} else if let eitherError = error.underlyingError as? EitherDecodeNoTypesMatchedError {
self = Self(eitherError)
} else {
self = Self(error)
}
}
}