OIDAuthorizationService.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*! @file OIDAuthorizationService.h
  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 <Foundation/Foundation.h>
  17. @class OIDAuthorization;
  18. @class OIDAuthorizationRequest;
  19. @class OIDAuthorizationResponse;
  20. @class OIDEndSessionRequest;
  21. @class OIDEndSessionResponse;
  22. @class OIDRegistrationRequest;
  23. @class OIDRegistrationResponse;
  24. @class OIDServiceConfiguration;
  25. @class OIDTokenRequest;
  26. @class OIDTokenResponse;
  27. @protocol OIDExternalUserAgent;
  28. @protocol OIDExternalUserAgentSession;
  29. NS_ASSUME_NONNULL_BEGIN
  30. /*! @brief Represents the type of block used as a callback for creating a service configuration from
  31. a remote OpenID Connect Discovery document.
  32. @param configuration The service configuration, if available.
  33. @param error The error if an error occurred.
  34. */
  35. typedef void (^OIDDiscoveryCallback)(OIDServiceConfiguration *_Nullable configuration,
  36. NSError *_Nullable error);
  37. /*! @brief Represents the type of block used as a callback for various methods of
  38. @c OIDAuthorizationService.
  39. @param authorizationResponse The authorization response, if available.
  40. @param error The error if an error occurred.
  41. */
  42. typedef void (^OIDAuthorizationCallback)(OIDAuthorizationResponse *_Nullable authorizationResponse,
  43. NSError *_Nullable error);
  44. /*! @brief Block used as a callback for the end-session request of @c OIDAuthorizationService.
  45. @param endSessionResponse The end-session response, if available.
  46. @param error The error if an error occurred.
  47. */
  48. typedef void (^OIDEndSessionCallback)(OIDEndSessionResponse *_Nullable endSessionResponse,
  49. NSError *_Nullable error);
  50. /*! @brief Represents the type of block used as a callback for various methods of
  51. @c OIDAuthorizationService.
  52. @param tokenResponse The token response, if available.
  53. @param error The error if an error occurred.
  54. */
  55. typedef void (^OIDTokenCallback)(OIDTokenResponse *_Nullable tokenResponse,
  56. NSError *_Nullable error);
  57. /*! @brief Represents the type of dictionary used to specify additional querystring parameters
  58. when making authorization or token endpoint requests.
  59. */
  60. typedef NSDictionary<NSString *, NSString *> *_Nullable OIDTokenEndpointParameters;
  61. /*! @brief Represents the type of block used as a callback for various methods of
  62. @c OIDAuthorizationService.
  63. @param registrationResponse The registration response, if available.
  64. @param error The error if an error occurred.
  65. */
  66. typedef void (^OIDRegistrationCompletion)(OIDRegistrationResponse *_Nullable registrationResponse,
  67. NSError *_Nullable error);
  68. /*! @brief Performs various OAuth and OpenID Connect related calls via the user agent or
  69. \NSURLSession.
  70. */
  71. @interface OIDAuthorizationService : NSObject
  72. /*! @brief The service's configuration.
  73. @remarks Each authorization service is initialized with a configuration. This configuration
  74. specifies how to connect to a particular OAuth provider. Clients should use separate
  75. authorization service instances for each provider they wish to integrate with.
  76. Configurations may be created manually, or via an OpenID Connect Discovery Document.
  77. */
  78. @property(nonatomic, readonly) OIDServiceConfiguration *configuration;
  79. /*! @internal
  80. @brief Unavailable. This class should not be initialized.
  81. */
  82. - (instancetype)init NS_UNAVAILABLE;
  83. /*! @brief Convenience method for creating an authorization service configuration from an OpenID
  84. Connect compliant issuer URL.
  85. @param issuerURL The service provider's OpenID Connect issuer.
  86. @param completion A block which will be invoked when the authorization service configuration has
  87. been created, or when an error has occurred.
  88. @see https://openid.net/specs/openid-connect-discovery-1_0.html
  89. */
  90. + (void)discoverServiceConfigurationForIssuer:(NSURL *)issuerURL
  91. completion:(OIDDiscoveryCallback)completion;
  92. /*! @brief Convenience method for creating an authorization service configuration from an OpenID
  93. Connect compliant identity provider's discovery document.
  94. @param discoveryURL The URL of the service provider's OpenID Connect discovery document.
  95. @param completion A block which will be invoked when the authorization service configuration has
  96. been created, or when an error has occurred.
  97. @see https://openid.net/specs/openid-connect-discovery-1_0.html
  98. */
  99. + (void)discoverServiceConfigurationForDiscoveryURL:(NSURL *)discoveryURL
  100. completion:(OIDDiscoveryCallback)completion;
  101. /*! @brief Perform an authorization flow using a generic flow shim.
  102. @param request The authorization request.
  103. @param externalUserAgent Generic external user-agent that can present an authorization
  104. request.
  105. @param callback The method called when the request has completed or failed.
  106. @return A @c OIDExternalUserAgentSession instance which will terminate when it
  107. receives a @c OIDExternalUserAgentSession.cancel message, or after processing a
  108. @c OIDExternalUserAgentSession.resumeExternalUserAgentFlowWithURL: message.
  109. */
  110. + (id<OIDExternalUserAgentSession>) presentAuthorizationRequest:(OIDAuthorizationRequest *)request
  111. externalUserAgent:(id<OIDExternalUserAgent>)externalUserAgent
  112. callback:(OIDAuthorizationCallback)callback;
  113. /*! @brief Perform a logout request.
  114. @param request The end-session logout request.
  115. @param externalUserAgent Generic external user-agent that can present user-agent requests.
  116. @param callback The method called when the request has completed or failed.
  117. @return A @c OIDExternalUserAgentSession instance which will terminate when it
  118. receives a @c OIDExternalUserAgentSession.cancel message, or after processing a
  119. @c OIDExternalUserAgentSession.resumeExternalUserAgentFlowWithURL: message.
  120. @see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
  121. */
  122. + (id<OIDExternalUserAgentSession>)
  123. presentEndSessionRequest:(OIDEndSessionRequest *)request
  124. externalUserAgent:(id<OIDExternalUserAgent>)externalUserAgent
  125. callback:(OIDEndSessionCallback)callback;
  126. /*! @brief Performs a token request.
  127. @param request The token request.
  128. @param callback The method called when the request has completed or failed.
  129. */
  130. + (void)performTokenRequest:(OIDTokenRequest *)request callback:(OIDTokenCallback)callback;
  131. /*! @brief Performs a token request.
  132. @param request The token request.
  133. @param authorizationResponse The original authorization response related to this token request.
  134. @param callback The method called when the request has completed or failed.
  135. */
  136. + (void)performTokenRequest:(OIDTokenRequest *)request
  137. originalAuthorizationResponse:(OIDAuthorizationResponse *_Nullable)authorizationResponse
  138. callback:(OIDTokenCallback)callback;
  139. /*! @brief Performs a registration request.
  140. @param request The registration request.
  141. @param completion The method called when the request has completed or failed.
  142. */
  143. + (void)performRegistrationRequest:(OIDRegistrationRequest *)request
  144. completion:(OIDRegistrationCompletion)completion;
  145. @end
  146. NS_ASSUME_NONNULL_END