OIDRegistrationRequest.m 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*! @file OIDRegistrationRequest.m
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2016 The AppAuth for iOS 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 "OIDRegistrationRequest.h"
  17. #import "OIDClientMetadataParameters.h"
  18. #import "OIDDefines.h"
  19. #import "OIDServiceConfiguration.h"
  20. /*! @brief The key for the @c configuration property for @c NSSecureCoding
  21. */
  22. static NSString *const kConfigurationKey = @"configuration";
  23. /*! @brief The key for the @c initialAccessToken property for @c NSSecureCoding
  24. */
  25. static NSString *const kInitialAccessToken = @"initial_access_token";
  26. /*! @brief Key used to encode the @c redirectURIs property for @c NSSecureCoding
  27. */
  28. static NSString *const kRedirectURIsKey = @"redirect_uris";
  29. /*! @brief The key for the @c responseTypes property for @c NSSecureCoding.
  30. */
  31. static NSString *const kResponseTypesKey = @"response_types";
  32. /*! @brief Key used to encode the @c grantType property for @c NSSecureCoding
  33. */
  34. static NSString *const kGrantTypesKey = @"grant_types";
  35. /*! @brief Key used to encode the @c subjectType property for @c NSSecureCoding
  36. */
  37. static NSString *const kSubjectTypeKey = @"subject_type";
  38. /*! @brief Key used to encode the @c additionalParameters property for
  39. @c NSSecureCoding
  40. */
  41. static NSString *const kAdditionalParametersKey = @"additionalParameters";
  42. @implementation OIDRegistrationRequest
  43. #pragma mark - Initializers
  44. - (instancetype)init
  45. OID_UNAVAILABLE_USE_INITIALIZER(
  46. @selector(initWithConfiguration:
  47. redirectURIs:
  48. responseTypes:
  49. grantTypes:
  50. subjectType:
  51. tokenEndpointAuthMethod:
  52. additionalParameters:)
  53. )
  54. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  55. redirectURIs:(NSArray<NSURL *> *)redirectURIs
  56. responseTypes:(nullable NSArray<NSString *> *)responseTypes
  57. grantTypes:(nullable NSArray<NSString *> *)grantTypes
  58. subjectType:(nullable NSString *)subjectType
  59. tokenEndpointAuthMethod:(nullable NSString *)tokenEndpointAuthenticationMethod
  60. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters {
  61. return [self initWithConfiguration:configuration
  62. redirectURIs:redirectURIs
  63. responseTypes:responseTypes
  64. grantTypes:grantTypes
  65. subjectType:subjectType
  66. tokenEndpointAuthMethod:tokenEndpointAuthenticationMethod
  67. initialAccessToken:nil
  68. additionalParameters:additionalParameters];
  69. }
  70. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  71. redirectURIs:(NSArray<NSURL *> *)redirectURIs
  72. responseTypes:(nullable NSArray<NSString *> *)responseTypes
  73. grantTypes:(nullable NSArray<NSString *> *)grantTypes
  74. subjectType:(nullable NSString *)subjectType
  75. tokenEndpointAuthMethod:(nullable NSString *)tokenEndpointAuthenticationMethod
  76. initialAccessToken:(nullable NSString *)initialAccessToken
  77. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters {
  78. self = [super init];
  79. if (self) {
  80. _configuration = [configuration copy];
  81. _initialAccessToken = [initialAccessToken copy];
  82. _redirectURIs = [redirectURIs copy];
  83. _responseTypes = [responseTypes copy];
  84. _grantTypes = [grantTypes copy];
  85. _subjectType = [subjectType copy];
  86. _tokenEndpointAuthenticationMethod = [tokenEndpointAuthenticationMethod copy];
  87. _additionalParameters =
  88. [[NSDictionary alloc] initWithDictionary:additionalParameters copyItems:YES];
  89. _applicationType = OIDApplicationTypeNative;
  90. }
  91. return self;
  92. }
  93. #pragma mark - NSCopying
  94. - (instancetype)copyWithZone:(nullable NSZone *)zone {
  95. // The documentation for NSCopying specifically advises us to return a reference to the original
  96. // instance in the case where instances are immutable (as ours is):
  97. // "Implement NSCopying by retaining the original instead of creating a new copy when the class
  98. // and its contents are immutable."
  99. return self;
  100. }
  101. #pragma mark - NSSecureCoding
  102. + (BOOL)supportsSecureCoding {
  103. return YES;
  104. }
  105. - (instancetype)initWithCoder:(NSCoder *)aDecoder {
  106. OIDServiceConfiguration *configuration =
  107. [aDecoder decodeObjectOfClass:[OIDServiceConfiguration class]
  108. forKey:kConfigurationKey];
  109. NSString *initialAccessToken = [aDecoder decodeObjectOfClass:[NSString class]
  110. forKey:kInitialAccessToken];
  111. NSArray<NSURL *> *redirectURIs = [aDecoder decodeObjectOfClass:[NSArray<NSURL *> class]
  112. forKey:kRedirectURIsKey];
  113. NSArray<NSString *> *responseTypes = [aDecoder decodeObjectOfClass:[NSArray<NSString *> class]
  114. forKey:kResponseTypesKey];
  115. NSArray<NSString *> *grantTypes = [aDecoder decodeObjectOfClass:[NSArray<NSString *> class]
  116. forKey:kGrantTypesKey];
  117. NSString *subjectType = [aDecoder decodeObjectOfClass:[NSString class]
  118. forKey:kSubjectTypeKey];
  119. NSString *tokenEndpointAuthenticationMethod =
  120. [aDecoder decodeObjectOfClass:[NSString class]
  121. forKey:OIDTokenEndpointAuthenticationMethodParam];
  122. NSSet *additionalParameterCodingClasses = [NSSet setWithArray:@[ [NSDictionary class],
  123. [NSString class] ]];
  124. NSDictionary *additionalParameters =
  125. [aDecoder decodeObjectOfClasses:additionalParameterCodingClasses
  126. forKey:kAdditionalParametersKey];
  127. self = [self initWithConfiguration:configuration
  128. redirectURIs:redirectURIs
  129. responseTypes:responseTypes
  130. grantTypes:grantTypes
  131. subjectType:subjectType
  132. tokenEndpointAuthMethod:tokenEndpointAuthenticationMethod
  133. initialAccessToken:initialAccessToken
  134. additionalParameters:additionalParameters];
  135. return self;
  136. }
  137. - (void)encodeWithCoder:(NSCoder *)aCoder {
  138. [aCoder encodeObject:_configuration forKey:kConfigurationKey];
  139. [aCoder encodeObject:_initialAccessToken forKey:kInitialAccessToken];
  140. [aCoder encodeObject:_redirectURIs forKey:kRedirectURIsKey];
  141. [aCoder encodeObject:_responseTypes forKey:kResponseTypesKey];
  142. [aCoder encodeObject:_grantTypes forKey:kGrantTypesKey];
  143. [aCoder encodeObject:_subjectType forKey:kSubjectTypeKey];
  144. [aCoder encodeObject:_tokenEndpointAuthenticationMethod
  145. forKey:OIDTokenEndpointAuthenticationMethodParam];
  146. [aCoder encodeObject:_additionalParameters forKey:kAdditionalParametersKey];
  147. }
  148. #pragma mark - NSObject overrides
  149. - (NSString *)description {
  150. NSURLRequest *request = [self URLRequest];
  151. NSString *requestBody = [[NSString alloc] initWithData:request.HTTPBody
  152. encoding:NSUTF8StringEncoding];
  153. return [NSString stringWithFormat:@"<%@: %p, request: <URL: %@, HTTPBody: %@>>",
  154. NSStringFromClass([self class]),
  155. (void *)self,
  156. request.URL,
  157. requestBody];
  158. }
  159. - (NSURLRequest *)URLRequest {
  160. static NSString *const kHTTPPost = @"POST";
  161. static NSString *const kBearer = @"Bearer";
  162. static NSString *const kHTTPContentTypeHeaderKey = @"Content-Type";
  163. static NSString *const kHTTPContentTypeHeaderValue = @"application/json";
  164. static NSString *const kHTTPAuthorizationHeaderKey = @"Authorization";
  165. NSData *postBody = [self JSONString];
  166. if (!postBody) {
  167. return nil;
  168. }
  169. NSURL *registrationRequestURL = _configuration.registrationEndpoint;
  170. NSMutableURLRequest *URLRequest =
  171. [[NSURLRequest requestWithURL:registrationRequestURL] mutableCopy];
  172. URLRequest.HTTPMethod = kHTTPPost;
  173. [URLRequest setValue:kHTTPContentTypeHeaderValue forHTTPHeaderField:kHTTPContentTypeHeaderKey];
  174. if (_initialAccessToken) {
  175. NSString *value = [NSString stringWithFormat:@"%@ %@", kBearer, _initialAccessToken];
  176. [URLRequest setValue:value forHTTPHeaderField:kHTTPAuthorizationHeaderKey];
  177. }
  178. URLRequest.HTTPBody = postBody;
  179. return URLRequest;
  180. }
  181. - (NSData *)JSONString {
  182. // Dictionary with several kay/value pairs and the above array of arrays
  183. NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
  184. NSMutableArray<NSString *> *redirectURIStrings =
  185. [NSMutableArray arrayWithCapacity:[_redirectURIs count]];
  186. for (id obj in _redirectURIs) {
  187. [redirectURIStrings addObject:[obj absoluteString]];
  188. }
  189. dict[OIDRedirectURIsParam] = redirectURIStrings;
  190. dict[OIDApplicationTypeParam] = _applicationType;
  191. if (_additionalParameters) {
  192. // Add any additional parameters first to allow them
  193. // to be overwritten by instance values
  194. [dict addEntriesFromDictionary:_additionalParameters];
  195. }
  196. if (_responseTypes) {
  197. dict[OIDResponseTypesParam] = _responseTypes;
  198. }
  199. if (_grantTypes) {
  200. dict[OIDGrantTypesParam] = _grantTypes;
  201. }
  202. if (_subjectType) {
  203. dict[OIDSubjectTypeParam] = _subjectType;
  204. }
  205. if (_tokenEndpointAuthenticationMethod) {
  206. dict[OIDTokenEndpointAuthenticationMethodParam] = _tokenEndpointAuthenticationMethod;
  207. }
  208. NSError *error;
  209. NSData *json = [NSJSONSerialization dataWithJSONObject:dict options:kNilOptions error:&error];
  210. if (json == nil || error != nil) {
  211. return nil;
  212. }
  213. return json;
  214. }
  215. @end