OIDAuthorizationResponse.m 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*! @file OIDAuthorizationResponse.m
  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 "OIDAuthorizationResponse.h"
  17. #import "OIDAuthorizationRequest.h"
  18. #import "OIDDefines.h"
  19. #import "OIDError.h"
  20. #import "OIDFieldMapping.h"
  21. #import "OIDTokenRequest.h"
  22. #import "OIDTokenUtilities.h"
  23. /*! @brief The key for the @c authorizationCode property in the incoming parameters and for
  24. @c NSSecureCoding.
  25. */
  26. static NSString *const kAuthorizationCodeKey = @"code";
  27. /*! @brief The key for the @c state property in the incoming parameters and for @c NSSecureCoding.
  28. */
  29. static NSString *const kStateKey = @"state";
  30. /*! @brief The key for the @c accessToken property in the incoming parameters and for
  31. @c NSSecureCoding.
  32. */
  33. static NSString *const kAccessTokenKey = @"access_token";
  34. /*! @brief The key for the @c accessTokenExpirationDate property in the incoming parameters and for
  35. @c NSSecureCoding.
  36. */
  37. static NSString *const kExpiresInKey = @"expires_in";
  38. /*! @brief The key for the @c tokenType property in the incoming parameters and for
  39. @c NSSecureCoding.
  40. */
  41. static NSString *const kTokenTypeKey = @"token_type";
  42. /*! @brief The key for the @c idToken property in the incoming parameters and for @c NSSecureCoding.
  43. */
  44. static NSString *const kIDTokenKey = @"id_token";
  45. /*! @brief The key for the @c scope property in the incoming parameters and for @c NSSecureCoding.
  46. */
  47. static NSString *const kScopeKey = @"scope";
  48. /*! @brief Key used to encode the @c additionalParameters property for @c NSSecureCoding
  49. */
  50. static NSString *const kAdditionalParametersKey = @"additionalParameters";
  51. /*! @brief Key used to encode the @c request property for @c NSSecureCoding
  52. */
  53. static NSString *const kRequestKey = @"request";
  54. /*! @brief The exception thrown when a developer tries to create a token exchange request from an
  55. authorization request with no authorization code.
  56. */
  57. static NSString *const kTokenExchangeRequestException =
  58. @"Attempted to create a token exchange request from an authorization response with no "
  59. "authorization code.";
  60. @implementation OIDAuthorizationResponse
  61. /*! @brief Returns a mapping of incoming parameters to instance variables.
  62. @return A mapping of incoming parameters to instance variables.
  63. */
  64. + (NSDictionary<NSString *, OIDFieldMapping *> *)fieldMap {
  65. static NSMutableDictionary<NSString *, OIDFieldMapping *> *fieldMap;
  66. static dispatch_once_t onceToken;
  67. dispatch_once(&onceToken, ^{
  68. fieldMap = [NSMutableDictionary dictionary];
  69. fieldMap[kStateKey] =
  70. [[OIDFieldMapping alloc] initWithName:@"_state" type:[NSString class]];
  71. fieldMap[kAuthorizationCodeKey] =
  72. [[OIDFieldMapping alloc] initWithName:@"_authorizationCode" type:[NSString class]];
  73. fieldMap[kAccessTokenKey] =
  74. [[OIDFieldMapping alloc] initWithName:@"_accessToken" type:[NSString class]];
  75. fieldMap[kExpiresInKey] =
  76. [[OIDFieldMapping alloc] initWithName:@"_accessTokenExpirationDate"
  77. type:[NSDate class]
  78. conversion:^id _Nullable(NSObject *_Nullable value) {
  79. if (![value isKindOfClass:[NSNumber class]]) {
  80. return value;
  81. }
  82. NSNumber *valueAsNumber = (NSNumber *)value;
  83. return [NSDate dateWithTimeIntervalSinceNow:[valueAsNumber longLongValue]];
  84. }];
  85. fieldMap[kTokenTypeKey] =
  86. [[OIDFieldMapping alloc] initWithName:@"_tokenType" type:[NSString class]];
  87. fieldMap[kIDTokenKey] =
  88. [[OIDFieldMapping alloc] initWithName:@"_idToken" type:[NSString class]];
  89. fieldMap[kScopeKey] =
  90. [[OIDFieldMapping alloc] initWithName:@"_scope" type:[NSString class]];
  91. });
  92. return fieldMap;
  93. }
  94. #pragma mark - Initializers
  95. - (instancetype)init
  96. OID_UNAVAILABLE_USE_INITIALIZER(@selector(initWithRequest:parameters:))
  97. - (instancetype)initWithRequest:(OIDAuthorizationRequest *)request
  98. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters {
  99. self = [super init];
  100. if (self) {
  101. _request = [request copy];
  102. NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters =
  103. [OIDFieldMapping remainingParametersWithMap:[[self class] fieldMap]
  104. parameters:parameters
  105. instance:self];
  106. _additionalParameters = additionalParameters;
  107. }
  108. return self;
  109. }
  110. #pragma mark - NSCopying
  111. - (instancetype)copyWithZone:(nullable NSZone *)zone {
  112. // The documentation for NSCopying specifically advises us to return a reference to the original
  113. // instance in the case where instances are immutable (as ours is):
  114. // "Implement NSCopying by retaining the original instead of creating a new copy when the class
  115. // and its contents are immutable."
  116. return self;
  117. }
  118. #pragma mark - NSSecureCoding
  119. + (BOOL)supportsSecureCoding {
  120. return YES;
  121. }
  122. - (instancetype)initWithCoder:(NSCoder *)aDecoder {
  123. OIDAuthorizationRequest *request =
  124. [aDecoder decodeObjectOfClass:[OIDAuthorizationRequest class] forKey:kRequestKey];
  125. self = [self initWithRequest:request parameters:@{ }];
  126. if (self) {
  127. [OIDFieldMapping decodeWithCoder:aDecoder map:[[self class] fieldMap] instance:self];
  128. _additionalParameters = [aDecoder decodeObjectOfClasses:[OIDFieldMapping JSONTypes]
  129. forKey:kAdditionalParametersKey];
  130. }
  131. return self;
  132. }
  133. - (void)encodeWithCoder:(NSCoder *)aCoder {
  134. [aCoder encodeObject:_request forKey:kRequestKey];
  135. [OIDFieldMapping encodeWithCoder:aCoder map:[[self class] fieldMap] instance:self];
  136. [aCoder encodeObject:_additionalParameters forKey:kAdditionalParametersKey];
  137. }
  138. #pragma mark - NSObject overrides
  139. - (NSString *)description {
  140. return [NSString stringWithFormat:@"<%@: %p, authorizationCode: %@, state: \"%@\", accessToken: "
  141. "\"%@\", accessTokenExpirationDate: %@, tokenType: %@, "
  142. "idToken: \"%@\", scope: \"%@\", additionalParameters: %@, "
  143. "request: %@>",
  144. NSStringFromClass([self class]),
  145. (void *)self,
  146. _authorizationCode,
  147. _state,
  148. [OIDTokenUtilities redact:_accessToken],
  149. _accessTokenExpirationDate,
  150. _tokenType,
  151. [OIDTokenUtilities redact:_idToken],
  152. _scope,
  153. _additionalParameters,
  154. _request];
  155. }
  156. #pragma mark -
  157. - (OIDTokenRequest *)tokenExchangeRequest {
  158. return [self tokenExchangeRequestWithAdditionalParameters:nil];
  159. }
  160. - (OIDTokenRequest *)tokenExchangeRequestWithAdditionalParameters:
  161. (NSDictionary<NSString *, NSString *> *)additionalParameters {
  162. // TODO: add a unit test to confirm exception is thrown when expected and the request is created
  163. // with the correct parameters.
  164. if (!_authorizationCode) {
  165. [NSException raise:kTokenExchangeRequestException
  166. format:kTokenExchangeRequestException];
  167. }
  168. return [[OIDTokenRequest alloc] initWithConfiguration:_request.configuration
  169. grantType:OIDGrantTypeAuthorizationCode
  170. authorizationCode:_authorizationCode
  171. redirectURL:_request.redirectURL
  172. clientID:_request.clientID
  173. clientSecret:_request.clientSecret
  174. scope:nil
  175. refreshToken:nil
  176. codeVerifier:_request.codeVerifier
  177. additionalParameters:additionalParameters];
  178. }
  179. @end