OIDAuthorizationResponse.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*! @file OIDAuthorizationResponse.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. @class OIDAuthorizationRequest;
  18. @class OIDTokenRequest;
  19. NS_ASSUME_NONNULL_BEGIN
  20. /*! @brief Represents the response to an authorization request.
  21. @see https://tools.ietf.org/html/rfc6749#section-4.1.2
  22. @see https://tools.ietf.org/html/rfc6749#section-5.1
  23. @see http://openid.net/specs/openid-connect-core-1_0.html#ImplicitAuthResponse
  24. */
  25. @interface OIDAuthorizationResponse : NSObject <NSCopying, NSSecureCoding>
  26. /*! @brief The request which was serviced.
  27. */
  28. @property(nonatomic, readonly) OIDAuthorizationRequest *request;
  29. /*! @brief The authorization code generated by the authorization server.
  30. @discussion Set when the response_type requested includes 'code'.
  31. @remarks code
  32. */
  33. @property(nonatomic, readonly, nullable) NSString *authorizationCode;
  34. /*! @brief REQUIRED if the "state" parameter was present in the client authorization request. The
  35. exact value received from the client.
  36. @remarks state
  37. */
  38. @property(nonatomic, readonly, nullable) NSString *state;
  39. /*! @brief The access token generated by the authorization server.
  40. @discussion Set when the response_type requested includes 'token'.
  41. @remarks access_token
  42. @see http://openid.net/specs/openid-connect-core-1_0.html#ImplicitAuthResponse
  43. */
  44. @property(nonatomic, readonly, nullable) NSString *accessToken;
  45. /*! @brief The approximate expiration date & time of the access token.
  46. @discussion Set when the response_type requested includes 'token'.
  47. @remarks expires_in
  48. @seealso OIDAuthorizationResponse.accessToken
  49. @see http://openid.net/specs/openid-connect-core-1_0.html#ImplicitAuthResponse
  50. */
  51. @property(nonatomic, readonly, nullable) NSDate *accessTokenExpirationDate;
  52. /*! @brief Typically "Bearer" when present. Otherwise, another token_type value that the Client has
  53. negotiated with the Authorization Server.
  54. @discussion Set when the response_type requested includes 'token'.
  55. @remarks token_type
  56. @see http://openid.net/specs/openid-connect-core-1_0.html#ImplicitAuthResponse
  57. */
  58. @property(nonatomic, readonly, nullable) NSString *tokenType;
  59. /*! @brief ID Token value associated with the authenticated session.
  60. @discussion Set when the response_type requested includes 'id_token'.
  61. @remarks id_token
  62. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  63. @see http://openid.net/specs/openid-connect-core-1_0.html#ImplicitAuthResponse
  64. */
  65. @property(nonatomic, readonly, nullable) NSString *idToken;
  66. /*! @brief The scope of the access token. OPTIONAL, if identical to the scopes requested, otherwise,
  67. REQUIRED.
  68. @remarks scope
  69. @see https://tools.ietf.org/html/rfc6749#section-5.1
  70. */
  71. @property(nonatomic, readonly, nullable) NSString *scope;
  72. /*! @brief Additional parameters returned from the authorization server.
  73. */
  74. @property(nonatomic, readonly, nullable)
  75. NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters;
  76. /*! @internal
  77. @brief Unavailable. Please use initWithRequest:parameters:.
  78. */
  79. - (instancetype)init NS_UNAVAILABLE;
  80. /*! @brief Designated initializer.
  81. @param request The serviced request.
  82. @param parameters The decoded parameters returned from the Authorization Server.
  83. @remarks Known parameters are extracted from the @c parameters parameter and the normative
  84. properties are populated. Non-normative parameters are placed in the
  85. @c #additionalParameters dictionary.
  86. */
  87. - (instancetype)initWithRequest:(OIDAuthorizationRequest *)request
  88. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
  89. NS_DESIGNATED_INITIALIZER;
  90. /*! @brief Creates a token request suitable for exchanging an authorization code for an access
  91. token.
  92. @return A @c OIDTokenRequest suitable for exchanging an authorization code for an access
  93. token.
  94. @see https://tools.ietf.org/html/rfc6749#section-4.1.3
  95. */
  96. - (nullable OIDTokenRequest *)tokenExchangeRequest;
  97. /*! @brief Creates a token request suitable for exchanging an authorization code for an access
  98. token.
  99. @param additionalParameters Additional parameters for the token request.
  100. @return A @c OIDTokenRequest suitable for exchanging an authorization code for an access
  101. token.
  102. @see https://tools.ietf.org/html/rfc6749#section-4.1.3
  103. */
  104. - (nullable OIDTokenRequest *)tokenExchangeRequestWithAdditionalParameters:
  105. (nullable NSDictionary<NSString *, NSString *> *)additionalParameters;
  106. @end
  107. NS_ASSUME_NONNULL_END