OIDErrorUtilities.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*! @file OIDErrorUtilities.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. #import "OIDError.h"
  18. NS_ASSUME_NONNULL_BEGIN
  19. /*! @brief Convenience methods for creating standardized \NSError instances.
  20. */
  21. @interface OIDErrorUtilities : NSObject
  22. /*! @brief Creates a standard \NSError from an @c ::OIDErrorCode and custom user info.
  23. Automatically populates the localized error description.
  24. @param code The error code.
  25. @param underlyingError The underlying error which occurred, if applicable.
  26. @param description A custom description, if applicable.
  27. @return An \NSError representing the error code.
  28. */
  29. + (NSError *)errorWithCode:(OIDErrorCode)code
  30. underlyingError:(nullable NSError *)underlyingError
  31. description:(nullable NSString *)description;
  32. /*! @brief Creates a standard \NSError from an @c ::OIDErrorCode and custom user info.
  33. Automatically populates the localized error description.
  34. @param OAuthErrorDomain The OAuth error domain. Must be @c ::OIDOAuthAuthorizationErrorDomain or
  35. @c ::OIDOAuthTokenErrorDomain.
  36. @param errorResponse The dictionary from an OAuth error response (as per RFC6749 Section 5.2).
  37. @param underlyingError The underlying error which occurred, if applicable.
  38. @return An \NSError representing the OAuth error.
  39. @see https://tools.ietf.org/html/rfc6749#section-5.2
  40. */
  41. + (NSError *)OAuthErrorWithDomain:(NSString *)OAuthErrorDomain
  42. OAuthResponse:(NSDictionary *)errorResponse
  43. underlyingError:(nullable NSError *)underlyingError;
  44. /*! @brief Creates a \NSError indicating that the resource server responded with an authorization
  45. error.
  46. @param code Your error code.
  47. @param errorResponse The resource server error response, if any.
  48. @param underlyingError The underlying error which occurred, if applicable.
  49. @return An \NSError representing the authorization error from the resource server.
  50. */
  51. + (NSError *)resourceServerAuthorizationErrorWithCode:(NSInteger)code
  52. errorResponse:(nullable NSDictionary *)errorResponse
  53. underlyingError:(nullable NSError *)underlyingError;
  54. /*! @brief Creates a standard \NSError from an \NSHTTPURLResponse. Automatically
  55. populates the localized error description with the response data associated with the
  56. \NSHTTPURLResponse, if available.
  57. @param HTTPURLResponse The response which indicates an error occurred.
  58. @param data The response data associated with the response which should be converted to an
  59. @c NSString assuming a UTF-8 encoding, if available.
  60. @return An \NSError representing the error.
  61. */
  62. + (NSError *)HTTPErrorWithHTTPResponse:(NSHTTPURLResponse *)HTTPURLResponse
  63. data:(nullable NSData *)data;
  64. /*! @brief Raises an exception with the given name as both the name, and the message.
  65. @param name The name of the exception.
  66. */
  67. + (void)raiseException:(NSString *)name;
  68. /*! @brief Raises an exception with the given name and message.
  69. @param name The name of the exception.
  70. @param message The message of the exception.
  71. */
  72. + (void)raiseException:(NSString *)name message:(NSString *)message;
  73. /*! @brief Converts an OAuth error code into an @c ::OIDErrorCodeOAuth error code.
  74. @param errorCode The OAuth error code.
  75. @discussion Returns @c ::OIDErrorCodeOAuthOther if the string is not in AppAuth's list.
  76. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  77. @see https://tools.ietf.org/html/rfc6749#section-5.2
  78. */
  79. + (OIDErrorCodeOAuth)OAuthErrorCodeFromString:(NSString *)errorCode;
  80. /*! @brief Returns true if the given error domain is an OAuth error domain.
  81. @param errorDomain The error domain to test.
  82. @discussion An OAuth error domain is used for errors returned per RFC6749 sections 4.1.2.1 and
  83. 5.2. Other errors, such as network errors can also occur but they will not have an OAuth
  84. error domain.
  85. @see https://tools.ietf.org/html/rfc6749#section-4.1.2.1
  86. @see https://tools.ietf.org/html/rfc6749#section-5.2
  87. */
  88. + (BOOL)isOAuthErrorDomain:(NSString*)errorDomain;
  89. @end
  90. NS_ASSUME_NONNULL_END