OIDTokenRequest.m 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /*! @file OIDTokenRequest.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 "OIDTokenRequest.h"
  17. #import "OIDDefines.h"
  18. #import "OIDError.h"
  19. #import "OIDScopeUtilities.h"
  20. #import "OIDServiceConfiguration.h"
  21. #import "OIDURLQueryComponent.h"
  22. #import "OIDTokenUtilities.h"
  23. /*! @brief The key for the @c configuration property for @c NSSecureCoding
  24. */
  25. static NSString *const kConfigurationKey = @"configuration";
  26. /*! @brief Key used to encode the @c grantType property for @c NSSecureCoding
  27. */
  28. static NSString *const kGrantTypeKey = @"grant_type";
  29. /*! @brief The key for the @c authorizationCode property for @c NSSecureCoding.
  30. */
  31. static NSString *const kAuthorizationCodeKey = @"code";
  32. /*! @brief Key used to encode the @c clientID property for @c NSSecureCoding
  33. */
  34. static NSString *const kClientIDKey = @"client_id";
  35. /*! @brief Key used to encode the @c clientSecret property for @c NSSecureCoding
  36. */
  37. static NSString *const kClientSecretKey = @"client_secret";
  38. /*! @brief Key used to encode the @c redirectURL property for @c NSSecureCoding
  39. */
  40. static NSString *const kRedirectURLKey = @"redirect_uri";
  41. /*! @brief Key used to encode the @c scopes property for @c NSSecureCoding
  42. */
  43. static NSString *const kScopeKey = @"scope";
  44. /*! @brief Key used to encode the @c refreshToken property for @c NSSecureCoding
  45. */
  46. static NSString *const kRefreshTokenKey = @"refresh_token";
  47. /*! @brief Key used to encode the @c codeVerifier property for @c NSSecureCoding and to build the
  48. request URL.
  49. */
  50. static NSString *const kCodeVerifierKey = @"code_verifier";
  51. /*! @brief Key used to encode the @c additionalParameters property for
  52. @c NSSecureCoding
  53. */
  54. static NSString *const kAdditionalParametersKey = @"additionalParameters";
  55. @implementation OIDTokenRequest
  56. - (instancetype)init
  57. OID_UNAVAILABLE_USE_INITIALIZER(
  58. @selector(initWithConfiguration:
  59. grantType:
  60. authorizationCode:
  61. redirectURL:
  62. clientID:
  63. clientSecret:
  64. scope:
  65. refreshToken:
  66. codeVerifier:
  67. additionalParameters:)
  68. )
  69. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  70. grantType:(NSString *)grantType
  71. authorizationCode:(nullable NSString *)code
  72. redirectURL:(nullable NSURL *)redirectURL
  73. clientID:(NSString *)clientID
  74. clientSecret:(nullable NSString *)clientSecret
  75. scopes:(nullable NSArray<NSString *> *)scopes
  76. refreshToken:(nullable NSString *)refreshToken
  77. codeVerifier:(nullable NSString *)codeVerifier
  78. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters {
  79. return [self initWithConfiguration:configuration
  80. grantType:grantType
  81. authorizationCode:code
  82. redirectURL:redirectURL
  83. clientID:clientID
  84. clientSecret:clientSecret
  85. scope:[OIDScopeUtilities scopesWithArray:scopes]
  86. refreshToken:refreshToken
  87. codeVerifier:(NSString *)codeVerifier
  88. additionalParameters:additionalParameters];
  89. }
  90. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  91. grantType:(NSString *)grantType
  92. authorizationCode:(nullable NSString *)code
  93. redirectURL:(nullable NSURL *)redirectURL
  94. clientID:(NSString *)clientID
  95. clientSecret:(nullable NSString *)clientSecret
  96. scope:(nullable NSString *)scope
  97. refreshToken:(nullable NSString *)refreshToken
  98. codeVerifier:(nullable NSString *)codeVerifier
  99. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters {
  100. self = [super init];
  101. if (self) {
  102. _configuration = [configuration copy];
  103. _grantType = [grantType copy];
  104. _authorizationCode = [code copy];
  105. _redirectURL = [redirectURL copy];
  106. _clientID = [clientID copy];
  107. _clientSecret = [clientSecret copy];
  108. _scope = [scope copy];
  109. _refreshToken = [refreshToken copy];
  110. _codeVerifier = [codeVerifier copy];
  111. _additionalParameters =
  112. [[NSDictionary alloc] initWithDictionary:additionalParameters copyItems:YES];
  113. // Additional validation for the authorization_code grant type
  114. if ([_grantType isEqual:OIDGrantTypeAuthorizationCode]) {
  115. // redirect URI must not be nil
  116. if (!_redirectURL) {
  117. [NSException raise:OIDOAuthExceptionInvalidTokenRequestNullRedirectURL
  118. format:@"%@", OIDOAuthExceptionInvalidTokenRequestNullRedirectURL, nil];
  119. }
  120. }
  121. }
  122. return self;
  123. }
  124. #pragma mark - NSCopying
  125. - (instancetype)copyWithZone:(nullable NSZone *)zone {
  126. // The documentation for NSCopying specifically advises us to return a reference to the original
  127. // instance in the case where instances are immutable (as ours is):
  128. // "Implement NSCopying by retaining the original instead of creating a new copy when the class
  129. // and its contents are immutable."
  130. return self;
  131. }
  132. #pragma mark - NSSecureCoding
  133. + (BOOL)supportsSecureCoding {
  134. return YES;
  135. }
  136. - (instancetype)initWithCoder:(NSCoder *)aDecoder {
  137. OIDServiceConfiguration *configuration =
  138. [aDecoder decodeObjectOfClass:[OIDServiceConfiguration class]
  139. forKey:kConfigurationKey];
  140. NSString *grantType = [aDecoder decodeObjectOfClass:[NSString class] forKey:kGrantTypeKey];
  141. NSString *code = [aDecoder decodeObjectOfClass:[NSString class] forKey:kAuthorizationCodeKey];
  142. NSString *clientID = [aDecoder decodeObjectOfClass:[NSString class] forKey:kClientIDKey];
  143. NSString *clientSecret = [aDecoder decodeObjectOfClass:[NSString class] forKey:kClientSecretKey];
  144. NSString *scope = [aDecoder decodeObjectOfClass:[NSString class] forKey:kScopeKey];
  145. NSString *refreshToken = [aDecoder decodeObjectOfClass:[NSString class] forKey:kRefreshTokenKey];
  146. NSString *codeVerifier = [aDecoder decodeObjectOfClass:[NSString class] forKey:kCodeVerifierKey];
  147. NSURL *redirectURL = [aDecoder decodeObjectOfClass:[NSURL class] forKey:kRedirectURLKey];
  148. NSSet *additionalParameterCodingClasses = [NSSet setWithArray:@[
  149. [NSDictionary class],
  150. [NSString class]
  151. ]];
  152. NSDictionary *additionalParameters =
  153. [aDecoder decodeObjectOfClasses:additionalParameterCodingClasses
  154. forKey:kAdditionalParametersKey];
  155. self = [self initWithConfiguration:configuration
  156. grantType:grantType
  157. authorizationCode:code
  158. redirectURL:redirectURL
  159. clientID:clientID
  160. clientSecret:clientSecret
  161. scope:scope
  162. refreshToken:refreshToken
  163. codeVerifier:codeVerifier
  164. additionalParameters:additionalParameters];
  165. return self;
  166. }
  167. - (void)encodeWithCoder:(NSCoder *)aCoder {
  168. [aCoder encodeObject:_configuration forKey:kConfigurationKey];
  169. [aCoder encodeObject:_grantType forKey:kGrantTypeKey];
  170. [aCoder encodeObject:_authorizationCode forKey:kAuthorizationCodeKey];
  171. [aCoder encodeObject:_clientID forKey:kClientIDKey];
  172. [aCoder encodeObject:_clientSecret forKey:kClientSecretKey];
  173. [aCoder encodeObject:_redirectURL forKey:kRedirectURLKey];
  174. [aCoder encodeObject:_scope forKey:kScopeKey];
  175. [aCoder encodeObject:_refreshToken forKey:kRefreshTokenKey];
  176. [aCoder encodeObject:_codeVerifier forKey:kCodeVerifierKey];
  177. [aCoder encodeObject:_additionalParameters forKey:kAdditionalParametersKey];
  178. }
  179. #pragma mark - NSObject overrides
  180. - (NSString *)description {
  181. NSURLRequest *request = self.URLRequest;
  182. NSString *requestBody =
  183. [[NSString alloc] initWithData:request.HTTPBody encoding:NSUTF8StringEncoding];
  184. return [NSString stringWithFormat:@"<%@: %p, request: <URL: %@, HTTPBody: %@>>",
  185. NSStringFromClass([self class]),
  186. (void *)self,
  187. request.URL,
  188. requestBody];
  189. }
  190. #pragma mark -
  191. /*! @brief Constructs the request URI.
  192. @return A URL representing the token request.
  193. @see https://tools.ietf.org/html/rfc6749#section-4.1.3
  194. */
  195. - (NSURL *)tokenRequestURL {
  196. return _configuration.tokenEndpoint;
  197. }
  198. /*! @brief Constructs the request body data by combining the request parameters using the
  199. "application/x-www-form-urlencoded" format.
  200. @return The data to pass to the token request URL.
  201. @see https://tools.ietf.org/html/rfc6749#section-4.1.3
  202. */
  203. - (OIDURLQueryComponent *)tokenRequestBody {
  204. OIDURLQueryComponent *query = [[OIDURLQueryComponent alloc] init];
  205. // Add parameters, as applicable.
  206. if (_grantType) {
  207. [query addParameter:kGrantTypeKey value:_grantType];
  208. }
  209. if (_scope) {
  210. [query addParameter:kScopeKey value:_scope];
  211. }
  212. if (_redirectURL) {
  213. [query addParameter:kRedirectURLKey value:_redirectURL.absoluteString];
  214. }
  215. if (_refreshToken) {
  216. [query addParameter:kRefreshTokenKey value:_refreshToken];
  217. }
  218. if (_authorizationCode) {
  219. [query addParameter:kAuthorizationCodeKey value:_authorizationCode];
  220. }
  221. if (_codeVerifier) {
  222. [query addParameter:kCodeVerifierKey value:_codeVerifier];
  223. }
  224. // Add any additional parameters the client has specified.
  225. [query addParameters:_additionalParameters];
  226. return query;
  227. }
  228. - (NSURLRequest *)URLRequest {
  229. static NSString *const kHTTPPost = @"POST";
  230. static NSString *const kHTTPContentTypeHeaderKey = @"Content-Type";
  231. static NSString *const kHTTPContentTypeHeaderValue =
  232. @"application/x-www-form-urlencoded; charset=UTF-8";
  233. NSURL *tokenRequestURL = [self tokenRequestURL];
  234. NSMutableURLRequest *URLRequest = [[NSURLRequest requestWithURL:tokenRequestURL] mutableCopy];
  235. URLRequest.HTTPMethod = kHTTPPost;
  236. [URLRequest setValue:kHTTPContentTypeHeaderValue forHTTPHeaderField:kHTTPContentTypeHeaderKey];
  237. OIDURLQueryComponent *bodyParameters = [self tokenRequestBody];
  238. NSMutableDictionary *httpHeaders = [[NSMutableDictionary alloc] init];
  239. if (_clientSecret) {
  240. // The client id and secret are encoded using the "application/x-www-form-urlencoded"
  241. // encoding algorithm per RFC 6749 Section 2.3.1.
  242. // https://tools.ietf.org/html/rfc6749#section-2.3.1
  243. NSString *encodedClientID = [OIDTokenUtilities formUrlEncode:_clientID];
  244. NSString *encodedClientSecret = [OIDTokenUtilities formUrlEncode:_clientSecret];
  245. NSString *credentials =
  246. [NSString stringWithFormat:@"%@:%@", encodedClientID, encodedClientSecret];
  247. NSData *plainData = [credentials dataUsingEncoding:NSUTF8StringEncoding];
  248. NSString *basicAuth = [plainData base64EncodedStringWithOptions:kNilOptions];
  249. NSString *authValue = [NSString stringWithFormat:@"Basic %@", basicAuth];
  250. [httpHeaders setObject:authValue forKey:@"Authorization"];
  251. } else {
  252. [bodyParameters addParameter:kClientIDKey value:_clientID];
  253. }
  254. // Constructs request with the body string and headers.
  255. NSString *bodyString = [bodyParameters URLEncodedParameters];
  256. NSData *body = [bodyString dataUsingEncoding:NSUTF8StringEncoding];
  257. URLRequest.HTTPBody = body;
  258. for (id header in httpHeaders) {
  259. [URLRequest setValue:httpHeaders[header] forHTTPHeaderField:header];
  260. }
  261. return URLRequest;
  262. }
  263. @end