OIDFieldMapping.m 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*! @file OIDFieldMapping.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 "OIDFieldMapping.h"
  17. #import "OIDDefines.h"
  18. @implementation OIDFieldMapping
  19. - (nonnull instancetype)init
  20. OID_UNAVAILABLE_USE_INITIALIZER(@selector(initWithName:type:conversion:))
  21. - (instancetype)initWithName:(NSString *)name
  22. type:(Class)type {
  23. return [self initWithName:name type:type conversion:nil];
  24. }
  25. - (instancetype)initWithName:(NSString *)name
  26. type:(Class)type
  27. conversion:(nullable OIDFieldMappingConversionFunction)conversion {
  28. self = [super init];
  29. if (self) {
  30. _name = [name copy];
  31. _expectedType = type;
  32. _conversion = conversion;
  33. }
  34. return self;
  35. }
  36. + (NSDictionary<NSString *, NSObject<NSCopying> *> *)remainingParametersWithMap:
  37. (NSDictionary<NSString *, OIDFieldMapping *> *)map
  38. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
  39. instance:(id)instance {
  40. NSMutableDictionary *additionalParameters = [NSMutableDictionary dictionary];
  41. for (NSString *key in parameters) {
  42. NSObject<NSCopying> *value = [parameters[key] copy];
  43. OIDFieldMapping *mapping = map[key];
  44. // If the field doesn't appear in the mapping, we add it to the additional parameters
  45. // dictionary.
  46. if (!mapping) {
  47. additionalParameters[key] = value;
  48. continue;
  49. }
  50. // If the field mapping specifies a conversion function, apply the conversion to the value.
  51. if (mapping.conversion) {
  52. value = mapping.conversion(value);
  53. }
  54. // Check the type of the value and make sure it matches the type we expected. If it doesn't we
  55. // add the value to the additional parameters dictionary but don't assign the instance variable.
  56. if (![value isKindOfClass:mapping.expectedType]) {
  57. additionalParameters[key] = value;
  58. continue;
  59. }
  60. // Assign the instance variable.
  61. [instance setValue:value forKey:mapping.name];
  62. }
  63. return additionalParameters;
  64. }
  65. + (void)encodeWithCoder:(NSCoder *)aCoder
  66. map:(NSDictionary<NSString *, OIDFieldMapping *> *)map
  67. instance:(id)instance {
  68. for (NSString *key in map) {
  69. id value = [instance valueForKey:map[key].name];
  70. [aCoder encodeObject:value forKey:key];
  71. }
  72. }
  73. + (void)decodeWithCoder:(NSCoder *)aCoder
  74. map:(NSDictionary<NSString *, OIDFieldMapping *> *)map
  75. instance:(id)instance {
  76. for (NSString *key in map) {
  77. OIDFieldMapping *mapping = map[key];
  78. id value = [aCoder decodeObjectOfClass:mapping.expectedType forKey:key];
  79. [instance setValue:value forKey:mapping.name];
  80. }
  81. }
  82. + (NSSet *)JSONTypes {
  83. return [NSSet setWithArray:@[
  84. [NSDictionary class],
  85. [NSArray class],
  86. [NSString class],
  87. [NSNumber class]
  88. ]];
  89. }
  90. + (OIDFieldMappingConversionFunction)URLConversion {
  91. return ^id _Nullable(NSObject *_Nullable value) {
  92. if ([value isKindOfClass:[NSString class]]) {
  93. return [NSURL URLWithString:(NSString *)value];
  94. }
  95. return value;
  96. };
  97. }
  98. + (OIDFieldMappingConversionFunction)dateSinceNowConversion {
  99. return ^id _Nullable(NSObject *_Nullable value) {
  100. if (![value isKindOfClass:[NSNumber class]]) {
  101. return value;
  102. }
  103. NSNumber *valueAsNumber = (NSNumber *)value;
  104. return [NSDate dateWithTimeIntervalSinceNow:[valueAsNumber longLongValue]];
  105. };
  106. }
  107. + (OIDFieldMappingConversionFunction)dateEpochConversion {
  108. return ^id _Nullable(NSObject *_Nullable value) {
  109. if (![value isKindOfClass:[NSNumber class]]) {
  110. return value;
  111. }
  112. NSNumber *valueAsNumber = (NSNumber *) value;
  113. return [NSDate dateWithTimeIntervalSince1970:[valueAsNumber longLongValue]];
  114. };
  115. }
  116. @end