OIDTokenResponse.m 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*! @file OIDTokenResponse.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 "OIDTokenResponse.h"
  17. #import "OIDDefines.h"
  18. #import "OIDFieldMapping.h"
  19. #import "OIDTokenRequest.h"
  20. #import "OIDTokenUtilities.h"
  21. /*! @brief Key used to encode the @c request property for @c NSSecureCoding
  22. */
  23. static NSString *const kRequestKey = @"request";
  24. /*! @brief The key for the @c accessToken property in the incoming parameters and for
  25. @c NSSecureCoding.
  26. */
  27. static NSString *const kAccessTokenKey = @"access_token";
  28. /*! @brief The key for the @c accessTokenExpirationDate property in the incoming parameters and for
  29. @c NSSecureCoding.
  30. */
  31. static NSString *const kExpiresInKey = @"expires_in";
  32. /*! @brief The key for the @c tokenType property in the incoming parameters and for
  33. @c NSSecureCoding.
  34. */
  35. static NSString *const kTokenTypeKey = @"token_type";
  36. /*! @brief The key for the @c idToken property in the incoming parameters and for @c NSSecureCoding.
  37. */
  38. static NSString *const kIDTokenKey = @"id_token";
  39. /*! @brief The key for the @c refreshToken property in the incoming parameters and for
  40. @c NSSecureCoding.
  41. */
  42. static NSString *const kRefreshTokenKey = @"refresh_token";
  43. /*! @brief The key for the @c scope property in the incoming parameters and for @c NSSecureCoding.
  44. */
  45. static NSString *const kScopeKey = @"scope";
  46. /*! @brief Key used to encode the @c additionalParameters property for @c NSSecureCoding
  47. */
  48. static NSString *const kAdditionalParametersKey = @"additionalParameters";
  49. @implementation OIDTokenResponse
  50. /*! @brief Returns a mapping of incoming parameters to instance variables.
  51. @return A mapping of incoming parameters to instance variables.
  52. */
  53. + (NSDictionary<NSString *, OIDFieldMapping *> *)fieldMap {
  54. static NSMutableDictionary<NSString *, OIDFieldMapping *> *fieldMap;
  55. static dispatch_once_t onceToken;
  56. dispatch_once(&onceToken, ^{
  57. fieldMap = [NSMutableDictionary dictionary];
  58. fieldMap[kAccessTokenKey] =
  59. [[OIDFieldMapping alloc] initWithName:@"_accessToken" type:[NSString class]];
  60. fieldMap[kExpiresInKey] =
  61. [[OIDFieldMapping alloc] initWithName:@"_accessTokenExpirationDate"
  62. type:[NSDate class]
  63. conversion:[OIDFieldMapping dateSinceNowConversion]];
  64. fieldMap[kTokenTypeKey] =
  65. [[OIDFieldMapping alloc] initWithName:@"_tokenType" type:[NSString class]];
  66. fieldMap[kIDTokenKey] =
  67. [[OIDFieldMapping alloc] initWithName:@"_idToken" type:[NSString class]];
  68. fieldMap[kRefreshTokenKey] =
  69. [[OIDFieldMapping alloc] initWithName:@"_refreshToken" type:[NSString class]];
  70. fieldMap[kScopeKey] =
  71. [[OIDFieldMapping alloc] initWithName:@"_scope" type:[NSString class]];
  72. });
  73. return fieldMap;
  74. }
  75. #pragma mark - Initializers
  76. - (instancetype)init
  77. OID_UNAVAILABLE_USE_INITIALIZER(@selector(initWithRequest:parameters:))
  78. - (instancetype)initWithRequest:(OIDTokenRequest *)request
  79. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters {
  80. self = [super init];
  81. if (self) {
  82. _request = [request copy];
  83. NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters =
  84. [OIDFieldMapping remainingParametersWithMap:[[self class] fieldMap]
  85. parameters:parameters
  86. instance:self];
  87. _additionalParameters = additionalParameters;
  88. }
  89. return self;
  90. }
  91. #pragma mark - NSCopying
  92. - (instancetype)copyWithZone:(nullable NSZone *)zone {
  93. // The documentation for NSCopying specifically advises us to return a reference to the original
  94. // instance in the case where instances are immutable (as ours is):
  95. // "Implement NSCopying by retaining the original instead of creating a new copy when the class
  96. // and its contents are immutable."
  97. return self;
  98. }
  99. #pragma mark - NSSecureCoding
  100. + (BOOL)supportsSecureCoding {
  101. return YES;
  102. }
  103. - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder {
  104. OIDTokenRequest *request =
  105. [aDecoder decodeObjectOfClass:[OIDTokenRequest class] forKey:kRequestKey];
  106. self = [self initWithRequest:request parameters:@{ }];
  107. if (self) {
  108. [OIDFieldMapping decodeWithCoder:aDecoder map:[[self class] fieldMap] instance:self];
  109. _additionalParameters = [aDecoder decodeObjectOfClasses:[OIDFieldMapping JSONTypes]
  110. forKey:kAdditionalParametersKey];
  111. }
  112. return self;
  113. }
  114. - (void)encodeWithCoder:(NSCoder *)aCoder {
  115. [OIDFieldMapping encodeWithCoder:aCoder map:[[self class] fieldMap] instance:self];
  116. [aCoder encodeObject:_request forKey:kRequestKey];
  117. [aCoder encodeObject:_additionalParameters forKey:kAdditionalParametersKey];
  118. }
  119. #pragma mark - NSObject overrides
  120. - (NSString *)description {
  121. return [NSString stringWithFormat:@"<%@: %p, accessToken: \"%@\", accessTokenExpirationDate: %@, "
  122. "tokenType: %@, idToken: \"%@\", refreshToken: \"%@\", "
  123. "scope: \"%@\", additionalParameters: %@, request: %@>",
  124. NSStringFromClass([self class]),
  125. (void *)self,
  126. [OIDTokenUtilities redact:_accessToken],
  127. _accessTokenExpirationDate,
  128. _tokenType,
  129. [OIDTokenUtilities redact:_idToken],
  130. [OIDTokenUtilities redact:_refreshToken],
  131. _scope,
  132. _additionalParameters,
  133. _request];
  134. }
  135. #pragma mark -
  136. @end