OIDServiceConfiguration.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*! @file OIDServiceConfiguration.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 OIDServiceConfiguration;
  18. @class OIDServiceDiscovery;
  19. NS_ASSUME_NONNULL_BEGIN
  20. /*! @brief The type of block called when a @c OIDServiceConfiguration has been created
  21. by loading a @c OIDServiceDiscovery from an @c NSURL.
  22. */
  23. typedef void (^OIDServiceConfigurationCreated)
  24. (OIDServiceConfiguration *_Nullable serviceConfiguration,
  25. NSError *_Nullable error);
  26. /*! @brief Represents the information needed to construct a @c OIDAuthorizationService.
  27. */
  28. @interface OIDServiceConfiguration : NSObject <NSCopying, NSSecureCoding>
  29. /*! @brief The authorization endpoint URI.
  30. */
  31. @property(nonatomic, readonly) NSURL *authorizationEndpoint;
  32. /*! @brief The token exchange and refresh endpoint URI.
  33. */
  34. @property(nonatomic, readonly) NSURL *tokenEndpoint;
  35. /*! @brief The OpenID Connect issuer.
  36. */
  37. @property(nonatomic, readonly, nullable) NSURL *issuer;
  38. /*! @brief The dynamic client registration endpoint URI.
  39. */
  40. @property(nonatomic, readonly, nullable) NSURL *registrationEndpoint;
  41. /*! @brief The end session logout endpoint URI.
  42. */
  43. @property(nonatomic, readonly, nullable) NSURL *endSessionEndpoint;
  44. /*! @brief The discovery document.
  45. */
  46. @property(nonatomic, readonly, nullable) OIDServiceDiscovery *discoveryDocument;
  47. /*! @internal
  48. @brief Unavailable. Please use @c initWithAuthorizationEndpoint:tokenEndpoint: or
  49. @c initWithDiscoveryDocument:.
  50. */
  51. - (instancetype)init NS_UNAVAILABLE;
  52. /*! @param authorizationEndpoint The authorization endpoint URI.
  53. @param tokenEndpoint The token exchange and refresh endpoint URI.
  54. */
  55. - (instancetype)initWithAuthorizationEndpoint:(NSURL *)authorizationEndpoint
  56. tokenEndpoint:(NSURL *)tokenEndpoint;
  57. /*! @param authorizationEndpoint The authorization endpoint URI.
  58. @param tokenEndpoint The token exchange and refresh endpoint URI.
  59. @param registrationEndpoint The dynamic client registration endpoint URI.
  60. */
  61. - (instancetype)initWithAuthorizationEndpoint:(NSURL *)authorizationEndpoint
  62. tokenEndpoint:(NSURL *)tokenEndpoint
  63. registrationEndpoint:(nullable NSURL *)registrationEndpoint;
  64. /*! @param authorizationEndpoint The authorization endpoint URI.
  65. @param tokenEndpoint The token exchange and refresh endpoint URI.
  66. @param issuer The OpenID Connect issuer.
  67. */
  68. - (instancetype)initWithAuthorizationEndpoint:(NSURL *)authorizationEndpoint
  69. tokenEndpoint:(NSURL *)tokenEndpoint
  70. issuer:(nullable NSURL *)issuer;
  71. /*! @param authorizationEndpoint The authorization endpoint URI.
  72. @param tokenEndpoint The token exchange and refresh endpoint URI.
  73. @param issuer The OpenID Connect issuer.
  74. @param registrationEndpoint The dynamic client registration endpoint URI.
  75. */
  76. - (instancetype)initWithAuthorizationEndpoint:(NSURL *)authorizationEndpoint
  77. tokenEndpoint:(NSURL *)tokenEndpoint
  78. issuer:(nullable NSURL *)issuer
  79. registrationEndpoint:(nullable NSURL *)registrationEndpoint;
  80. /*! @param authorizationEndpoint The authorization endpoint URI.
  81. @param tokenEndpoint The token exchange and refresh endpoint URI.
  82. @param issuer The OpenID Connect issuer.
  83. @param registrationEndpoint The dynamic client registration endpoint URI.
  84. @param endSessionEndpoint The end session endpoint (logout) URI.
  85. */
  86. - (instancetype)initWithAuthorizationEndpoint:(NSURL *)authorizationEndpoint
  87. tokenEndpoint:(NSURL *)tokenEndpoint
  88. issuer:(nullable NSURL *)issuer
  89. registrationEndpoint:(nullable NSURL *)registrationEndpoint
  90. endSessionEndpoint:(nullable NSURL *)endSessionEndpoint;
  91. /*! @param discoveryDocument The discovery document from which to extract the required OAuth
  92. configuration.
  93. */
  94. - (instancetype)initWithDiscoveryDocument:(OIDServiceDiscovery *)discoveryDocument;
  95. @end
  96. NS_ASSUME_NONNULL_END