OIDEndSessionResponse.m 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*! @file OIDEndSessionResponse.m
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2017 The AppAuth Authors. 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 "OIDEndSessionResponse.h"
  17. #import "OIDDefines.h"
  18. #import "OIDEndSessionRequest.h"
  19. #import "OIDFieldMapping.h"
  20. /*! @brief The key for the @c state property in the incoming parameters and for @c NSSecureCoding.
  21. */
  22. static NSString *const kStateKey = @"state";
  23. /*! @brief Key used to encode the @c request property for @c NSSecureCoding
  24. */
  25. static NSString *const kRequestKey = @"request";
  26. /*! @brief Key used to encode the @c additionalParameters property for
  27. @c NSSecureCoding
  28. */
  29. static NSString *const kAdditionalParametersKey = @"additionalParameters";
  30. @implementation OIDEndSessionResponse
  31. #pragma mark - Initializers
  32. - (instancetype)init
  33. OID_UNAVAILABLE_USE_INITIALIZER(@selector(initWithRequest:parameters:))
  34. - (instancetype)initWithRequest:(OIDEndSessionRequest *)request
  35. parameters:(NSDictionary<NSString *,NSObject<NSCopying> *> *)parameters {
  36. self = [super init];
  37. if (self) {
  38. _request = [request copy];
  39. NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters =
  40. [OIDFieldMapping remainingParametersWithMap:[[self class] fieldMap]
  41. parameters:parameters
  42. instance:self];
  43. _additionalParameters = additionalParameters;
  44. }
  45. return self;
  46. }
  47. /*! @brief Returns a mapping of incoming parameters to instance variables.
  48. @return A mapping of incoming parameters to instance variables.
  49. */
  50. + (NSDictionary<NSString *, OIDFieldMapping *> *)fieldMap {
  51. static NSMutableDictionary<NSString *, OIDFieldMapping *> *fieldMap;
  52. static dispatch_once_t onceToken;
  53. dispatch_once(&onceToken, ^{
  54. fieldMap = [NSMutableDictionary dictionary];
  55. fieldMap[kStateKey] =
  56. [[OIDFieldMapping alloc] initWithName:@"_state" type:[NSString class]];
  57. });
  58. return fieldMap;
  59. }
  60. #pragma mark - NSCopying
  61. - (instancetype)copyWithZone:(nullable NSZone *)zone {
  62. // The documentation for NSCopying specifically advises us to return a reference to the original
  63. // instance in the case where instances are immutable (as ours is):
  64. // "Implement NSCopying by retaining the original instead of creating a new copy when the class
  65. // and its contents are immutable."
  66. return self;
  67. }
  68. #pragma mark - NSSecureCoding
  69. + (BOOL)supportsSecureCoding {
  70. return YES;
  71. }
  72. - (instancetype)initWithCoder:(NSCoder *)aDecoder {
  73. OIDEndSessionRequest *request =
  74. [aDecoder decodeObjectOfClass:[OIDEndSessionRequest class] forKey:kRequestKey];
  75. self = [self initWithRequest:request parameters:@{ }];
  76. if (self) {
  77. [OIDFieldMapping decodeWithCoder:aDecoder map:[[self class] fieldMap] instance:self];
  78. _additionalParameters = [aDecoder decodeObjectOfClasses:[OIDFieldMapping JSONTypes]
  79. forKey:kAdditionalParametersKey];
  80. }
  81. return self;
  82. }
  83. - (void)encodeWithCoder:(NSCoder *)aCoder {
  84. [aCoder encodeObject:_request forKey:kRequestKey];
  85. [OIDFieldMapping encodeWithCoder:aCoder map:[[self class] fieldMap] instance:self];
  86. [aCoder encodeObject:_additionalParameters forKey:kAdditionalParametersKey];
  87. }
  88. #pragma mark - NSObject overrides
  89. - (NSString *)description {
  90. return [NSString stringWithFormat:@"<%@: %p, state: \"%@\", "
  91. "additionalParameters: %@, request: %@>",
  92. NSStringFromClass([self class]),
  93. (void *)self,
  94. _state,
  95. _additionalParameters,
  96. _request];
  97. }
  98. @end