-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathOAuth2Error.swift
More file actions
352 lines (282 loc) · 12.4 KB
/
Copy pathOAuth2Error.swift
File metadata and controls
352 lines (282 loc) · 12.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
//
// OAuth2Error.swift
// OAuth2
//
// Created by Pascal Pfiffner on 16/11/15.
// Copyright © 2015 Pascal Pfiffner. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
import Foundation
/**
All errors that might occur.
The response errors return a description as defined in the spec: http://tools.ietf.org/html/rfc6749#section-4.1.2.1
*/
public enum OAuth2Error: Error, CustomStringConvertible, Equatable {
/// An error for which we don't have a specific one.
case generic(String)
/// An error holding on to an NSError.
case nsError(Foundation.NSError)
/// Invalid URL components, failed to create a URL
case invalidURLComponents(URLComponents)
// MARK: - Client errors
/// There is no client id.
case noClientId
/// There is no client secret.
case noClientSecret
/// There is no redirect URL.
case noRedirectURL
/// There is no username.
case noUsername
/// There is no password.
case noPassword
/// The client is already authorizing.
case alreadyAuthorizing
/// There is no authorization context.
case noAuthorizationContext
/// The authorization context is invalid.
case invalidAuthorizationContext
/// The redirect URL is invalid; with explanation.
case invalidRedirectURL(String)
/// There is no access token.
case noAccessToken
/// There is no refresh token.
case noRefreshToken
/// There is no registration URL.
case noRegistrationURL
/// The login controller does not have a valid type
case invalidLoginController(actualType: String, expectedType: String)
/// There is no delegate associated with the password grant flow instance.
case noPasswordGrantDelegate
/// Generic server error 5xx
case serverErrorWithStatus(Int)
// MARK: - Request errors
/// The request is not using SSL/TLS.
case notUsingTLS
/// Unable to open the authorize URL.
case unableToOpenAuthorizeURL
/// The request is invalid. Passes the underlying error_description.
case invalidRequest(String?)
/// The request was canceled.
case requestCancelled
// MARK: - Response Errors
/// There was no token type in the response.
case noTokenType
/// The token type is not supported. Passes the underlying error_description.
case unsupportedTokenType(String)
/// There was no data in the response.
case noDataInResponse
/// Some prerequisite failed; with explanation.
case prerequisiteFailed(String)
/// The state parameter was missing in the response.
case missingState
/// The state parameter was invalid.
case invalidState
/// The JSON response could not be parsed.
case jsonParserError
/// Unable to UTF-8 encode.
case utf8EncodeError
/// Unable to decode to UTF-8.
case utf8DecodeError
// MARK: - OAuth2 errors
/// The client is unauthorized (HTTP status 401). Passes the underlying error_description.
case unauthorizedClient(String?)
/// The request was forbidden (HTTP status 403).
case forbidden
/// Username or password was wrong (HTTP status 403 on password grant).
case wrongUsernamePassword
/// Access was denied. Passes the underlying error_description.
case accessDenied(String?)
/// Response type is not supported. Passes the underlying error_description.
case unsupportedResponseType(String?)
/// Scope was invalid. Passes the underlying error_description.
case invalidScope(String?)
/// A 500 was thrown.
case serverError
/// The service is temporarily unavailable. Passes the underlying error_description.
case temporarilyUnavailable(String?)
/// Invalid grant. Passes the underlying error_description.
case invalidGrant(String?)
/// Other response error, as defined in its String.
case responseError(String)
/**
Instantiate the error corresponding to the OAuth2 response code, if it is known.
- parameter code: The code, like "access_denied", that should be interpreted
- parameter description: The description provided in the response
- parameter fallback: The error string to use in case the error code is not known
- returns: An appropriate OAuth2Error
*/
public static func fromResponseError(_ code: String, description: String? = nil, fallback: String? = nil) -> OAuth2Error {
switch code {
case "invalid_request":
return .invalidRequest(description)
case "unauthorized_client":
return .unauthorizedClient(description)
case "access_denied":
return .accessDenied(description)
case "unsupported_response_type":
return .unsupportedResponseType(description)
case "invalid_scope":
return .invalidScope(description)
case "server_error":
return .serverError
case "temporarily_unavailable":
return .temporarilyUnavailable(description)
case "invalid_grant":
return .invalidGrant(description)
default:
return .responseError(description ?? fallback ?? "Authorization error: \(code)")
}
}
/// Human understandable error string.
public var description: String {
switch self {
case .generic(let message):
return message
case .nsError(let error):
return error.localizedDescription
case .invalidURLComponents(let components):
return "Failed to create URL from components: \(components)"
case .noClientId:
return "Client id not set"
case .noClientSecret:
return "Client secret not set"
case .noRedirectURL:
return "Redirect URL not set"
case .noUsername:
return "No username"
case .noPassword:
return "No password"
case .invalidLoginController(let expectedType, let actualType):
return "The login controller of type \(actualType) cannot be displayed. Expecting a \(expectedType)."
case .noPasswordGrantDelegate:
return "The password grant flow needs to be set a delegate to present the login controller."
case .alreadyAuthorizing:
return "The client is already authorizing, wait for it to finish or abort authorization before trying again"
case .noAuthorizationContext:
return "No authorization context present"
case .invalidAuthorizationContext:
return "Invalid authorization context"
case .invalidRedirectURL(let url):
return "Invalid redirect URL: \(url)"
case .noAccessToken:
return "I don't have an access token, cannot sign request"
case .noRefreshToken:
return "I don't have a refresh token, not trying to refresh"
case .noRegistrationURL:
return "No registration URL defined"
case .notUsingTLS:
return "You MUST use HTTPS/SSL/TLS"
case .unableToOpenAuthorizeURL:
return "Cannot open authorize URL"
case .invalidRequest:
return "The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed."
case .requestCancelled:
return "The request has been canceled"
case .noTokenType:
return "No token type received, will not use the token"
case .unsupportedTokenType(let message):
return message
case .noDataInResponse:
return "No data in the response"
case .prerequisiteFailed(let message):
return message
case .missingState:
return "The state parameter was missing in the response"
case .invalidState:
return "The state parameter did not check out"
case .jsonParserError:
return "Error parsing JSON"
case .utf8EncodeError:
return "Failed to UTF-8 encode the given string"
case .utf8DecodeError:
return "Failed to decode given data as a UTF-8 string"
case .unauthorizedClient(let message):
return message ?? "Unauthorized"
case .forbidden:
return "Forbidden"
case .wrongUsernamePassword:
return "The username or password is incorrect"
case .accessDenied(let message):
return message ?? "The resource owner or authorization server denied the request."
case .unsupportedResponseType(let message):
return message ?? "The authorization server does not support obtaining an access token using this method."
case .invalidScope(let message):
return message ?? "The requested scope is invalid, unknown, or malformed."
case .serverError:
return "The authorization server encountered an unexpected condition that prevented it from fulfilling the request."
case .serverErrorWithStatus(let statusCode):
return "The authorization server encountered an unexpected condition, returning \(statusCode)"
case .temporarilyUnavailable(let message):
return message ?? "The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server."
case .invalidGrant(let message):
return message ?? "The authorization grant or refresh token is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client."
case .responseError(let message):
return message
}
}
// MARK: - Equatable
public static func ==(lhs: OAuth2Error, rhs: OAuth2Error) -> Bool {
switch (lhs, rhs) {
case (.generic(let lhm), .generic(let rhm)): return lhm == rhm
case (.nsError(let lhe), .nsError(let rhe)): return lhe.isEqual(rhe)
case (.invalidURLComponents(let lhe), .invalidURLComponents(let rhe)): return (lhe == rhe)
case (.noClientId, .noClientId): return true
case (.noClientSecret, .noClientSecret): return true
case (.noRedirectURL, .noRedirectURL): return true
case (.noUsername, .noUsername): return true
case (.noPassword, .noPassword): return true
case (.alreadyAuthorizing, .alreadyAuthorizing): return true
case (.noAuthorizationContext, .noAuthorizationContext): return true
case (.invalidAuthorizationContext, .invalidAuthorizationContext): return true
case (.invalidRedirectURL(let lhu), .invalidRedirectURL(let rhu)): return lhu == rhu
case (.noAccessToken, .noAccessToken): return true
case (.noRefreshToken, .noRefreshToken): return true
case (.notUsingTLS, .notUsingTLS): return true
case (.unableToOpenAuthorizeURL, .unableToOpenAuthorizeURL): return true
case (.invalidRequest, .invalidRequest): return true
case (.requestCancelled, .requestCancelled): return true
case (.noTokenType, .noTokenType): return true
case (.unsupportedTokenType(let lhm), .unsupportedTokenType(let rhm)): return lhm == rhm
case (.noDataInResponse, .noDataInResponse): return true
case (.prerequisiteFailed(let lhm), .prerequisiteFailed(let rhm)): return lhm == rhm
case (.missingState, .missingState): return true
case (.invalidState, .invalidState): return true
case (.jsonParserError, .jsonParserError): return true
case (.utf8EncodeError, .utf8EncodeError): return true
case (.utf8DecodeError, .utf8DecodeError): return true
case (.unauthorizedClient(let lhm), .unauthorizedClient(let rhm)): return lhm == rhm
case (.forbidden, .forbidden): return true
case (.wrongUsernamePassword, .wrongUsernamePassword): return true
case (.accessDenied(let lhm), .accessDenied(let rhm)): return lhm == rhm
case (.unsupportedResponseType, .unsupportedResponseType): return true
case (.invalidScope(let lhm), .invalidScope(let rhm)): return lhm == rhm
case (.serverError, .serverError): return true
case (.temporarilyUnavailable(let lhm), .temporarilyUnavailable(let rhm)): return lhm == rhm
case (.invalidGrant(let lhm), .invalidGrant(let rhm)): return lhm == rhm
case (.responseError(let lhm), .responseError(let rhm)): return lhm == rhm
default: return false
}
}
}
public extension Error {
/**
Convenience getter to easily retrieve an OAuth2Error from any Error.
*/
public var asOAuth2Error: OAuth2Error {
if let oaerror = self as? OAuth2Error {
return oaerror
}
return OAuth2Error.nsError(self as NSError)
}
}