| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- // Copyright 2022 Google LLC
- //
- // 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
- /// The error domain for codes in the ``FunctionsErrorCode`` enum.
- public let FunctionsErrorDomain: String = "com.firebase.functions"
- /// The key for finding error details in the `NSError` userInfo.
- public let FunctionsErrorDetailsKey: String = "details"
- /**
- * The set of error status codes that can be returned from a Callable HTTPS trigger. These are the
- * canonical error codes for Google APIs, as documented here:
- * https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto#L26
- */
- @objc(FIRFunctionsErrorCode) public enum FunctionsErrorCode: Int {
- /** The operation completed successfully. */
- case OK = 0
- /** The operation was cancelled (typically by the caller). */
- case cancelled = 1
- /** Unknown error or an error from a different error domain. */
- case unknown = 2
- /**
- * Client specified an invalid argument. Note that this differs from `FailedPrecondition`.
- * `InvalidArgument` indicates arguments that are problematic regardless of the state of the
- * system (e.g., an invalid field name).
- */
- case invalidArgument = 3
- /**
- * Deadline expired before operation could complete. For operations that change the state of the
- * system, this error may be returned even if the operation has completed successfully. For
- * example, a successful response from a server could have been delayed long enough for the
- * deadline to expire.
- */
- case deadlineExceeded = 4
- /** Some requested document was not found. */
- case notFound = 5
- /** Some document that we attempted to create already exists. */
- case alreadyExists = 6
- /** The caller does not have permission to execute the specified operation. */
- case permissionDenied = 7
- /**
- * Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system
- * is out of space.
- */
- case resourceExhausted = 8
- /**
- * Operation was rejected because the system is not in a state required for the operation's
- * execution.
- */
- case failedPrecondition = 9
- /**
- * The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.
- */
- case aborted = 10
- /** Operation was attempted past the valid range. */
- case outOfRange = 11
- /** Operation is not implemented or not supported/enabled. */
- case unimplemented = 12
- /**
- * Internal errors. Means some invariant expected by underlying system has been broken. If you
- * see one of these errors, something is very broken.
- */
- case `internal` = 13
- /**
- * The service is currently unavailable. This is a most likely a transient condition and may be
- * corrected by retrying with a backoff.
- */
- case unavailable = 14
- /** Unrecoverable data loss or corruption. */
- case dataLoss = 15
- /** The request does not have valid authentication credentials for the operation. */
- case unauthenticated = 16
- }
- extension FunctionsErrorCode {
- /// Takes an HTTP status code and returns the corresponding `FIRFunctionsErrorCode` error code.
- ///
- /// + This is the standard HTTP status code -> error mapping defined in:
- /// https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
- ///
- /// - Parameter status: An HTTP status code.
- /// - Returns: A `FunctionsErrorCode`. Falls back to `internal` for unknown status codes.
- static func errorCode(forHTTPStatus status: Int) -> Self {
- switch status {
- case 200: .OK
- case 400: .invalidArgument
- case 401: .unauthenticated
- case 403: .permissionDenied
- case 404: .notFound
- case 409: .alreadyExists
- case 429: .resourceExhausted
- case 499: .cancelled
- case 500: .internal
- case 501: .unimplemented
- case 503: .unavailable
- case 504: .deadlineExceeded
- default: .internal
- }
- }
- static func errorCode(forName name: String) -> FunctionsErrorCode {
- switch name {
- case "OK": return .OK
- case "CANCELLED": return .cancelled
- case "UNKNOWN": return .unknown
- case "INVALID_ARGUMENT": return .invalidArgument
- case "DEADLINE_EXCEEDED": return .deadlineExceeded
- case "NOT_FOUND": return .notFound
- case "ALREADY_EXISTS": return .alreadyExists
- case "PERMISSION_DENIED": return .permissionDenied
- case "RESOURCE_EXHAUSTED": return .resourceExhausted
- case "FAILED_PRECONDITION": return .failedPrecondition
- case "ABORTED": return .aborted
- case "OUT_OF_RANGE": return .outOfRange
- case "UNIMPLEMENTED": return .unimplemented
- case "INTERNAL": return .internal
- case "UNAVAILABLE": return .unavailable
- case "DATA_LOSS": return .dataLoss
- case "UNAUTHENTICATED": return .unauthenticated
- default: return .internal
- }
- }
- var descriptionForErrorCode: String {
- switch self {
- case .OK:
- return "OK"
- case .cancelled:
- return "CANCELLED"
- case .unknown:
- return "UNKNOWN"
- case .invalidArgument:
- return "INVALID ARGUMENT"
- case .deadlineExceeded:
- return "DEADLINE EXCEEDED"
- case .notFound:
- return "NOT FOUND"
- case .alreadyExists:
- return "ALREADY EXISTS"
- case .permissionDenied:
- return "PERMISSION DENIED"
- case .resourceExhausted:
- return "RESOURCE EXHAUSTED"
- case .failedPrecondition:
- return "FAILED PRECONDITION"
- case .aborted:
- return "ABORTED"
- case .outOfRange:
- return "OUT OF RANGE"
- case .unimplemented:
- return "UNIMPLEMENTED"
- case .internal:
- return "INTERNAL"
- case .unavailable:
- return "UNAVAILABLE"
- case .dataLoss:
- return "DATA LOSS"
- case .unauthenticated:
- return "UNAUTHENTICATED"
- }
- }
- func generatedError(userInfo: [String: Any]? = nil) -> NSError {
- return NSError(domain: FunctionsErrorDomain,
- code: rawValue,
- userInfo: userInfo ?? [NSLocalizedDescriptionKey: descriptionForErrorCode])
- }
- static func errorForResponse(status: Int,
- body: Data?,
- serializer: FunctionsSerializer) -> NSError? {
- // Start with reasonable defaults from the status code.
- var code = FunctionsErrorCode.errorCode(forHTTPStatus: status)
- var description = code.descriptionForErrorCode
- var details: AnyObject?
- // Then look through the body for explicit details.
- if let body,
- let json = try? JSONSerialization.jsonObject(with: body) as? NSDictionary,
- let errorDetails = json["error"] as? NSDictionary {
- if let status = errorDetails["status"] as? String {
- code = .errorCode(forName: status)
- // If the code in the body is invalid, treat the whole response as malformed.
- guard code != .internal else {
- return code.generatedError(userInfo: nil)
- }
- }
- if let message = errorDetails["message"] as? String {
- description = message
- } else {
- description = code.descriptionForErrorCode
- }
- details = errorDetails["details"] as AnyObject?
- // Update `details` only if decoding succeeds;
- // otherwise, keep the original object.
- if let innerDetails = details,
- let decodedDetails = try? serializer.decode(innerDetails) {
- details = decodedDetails
- }
- }
- if code == .OK {
- // Technically, there's an edge case where a developer could explicitly return an error code
- // of
- // OK, and we will treat it as success, but that seems reasonable.
- return nil
- }
- var userInfo = [String: Any]()
- userInfo[NSLocalizedDescriptionKey] = description
- if let details {
- userInfo[FunctionsErrorDetailsKey] = details
- }
- return code.generatedError(userInfo: userInfo)
- }
- }
|