OIDRegistrationRequest.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*! @file OIDRegistrationRequest.h
  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 <Foundation/Foundation.h>
  17. @class OIDAuthorizationResponse;
  18. @class OIDServiceConfiguration;
  19. NS_ASSUME_NONNULL_BEGIN
  20. /*! @brief Represents a registration request.
  21. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationRequest
  22. */
  23. @interface OIDRegistrationRequest : NSObject <NSCopying, NSSecureCoding>
  24. /*! @brief The service's configuration.
  25. @remarks This configuration specifies how to connect to a particular OAuth provider.
  26. Configurations may be created manually, or via an OpenID Connect Discovery Document.
  27. */
  28. @property(nonatomic, readonly) OIDServiceConfiguration *configuration;
  29. /*! @brief The initial access token to access the Client Registration Endpoint
  30. (if required by the OpenID Provider).
  31. @remarks OAuth 2.0 Access Token optionally issued by an Authorization Server granting
  32. access to its Client Registration Endpoint. This token (if required) is
  33. provisioned out of band.
  34. @see Section 3 of OpenID Connect Dynamic Client Registration 1.0
  35. https://openid.net/specs/openid-connect-registration-1_0.html#ClientRegistration
  36. */
  37. @property(nonatomic, readonly) NSString *initialAccessToken;
  38. /*! @brief The application type to register, will always be 'native'.
  39. @remarks application_type
  40. @see https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata
  41. */
  42. @property(nonatomic, readonly) NSString *applicationType;
  43. /*! @brief The client's redirect URI's.
  44. @remarks redirect_uris
  45. @see https://tools.ietf.org/html/rfc6749#section-3.1.2
  46. */
  47. @property(nonatomic, readonly) NSArray<NSURL *> *redirectURIs;
  48. /*! @brief The response types to register for usage by this client.
  49. @remarks response_types
  50. @see http://openid.net/specs/openid-connect-core-1_0.html#Authentication
  51. */
  52. @property(nonatomic, readonly, nullable) NSArray<NSString *> *responseTypes;
  53. /*! @brief The grant types to register for usage by this client.
  54. @remarks grant_types
  55. @see https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata
  56. */
  57. @property(nonatomic, readonly, nullable) NSArray<NSString *> *grantTypes;
  58. /*! @brief The subject type to to request.
  59. @remarks subject_type
  60. @see http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes
  61. */
  62. @property(nonatomic, readonly, nullable) NSString *subjectType;
  63. /*! @brief The client authentication method to use at the token endpoint.
  64. @remarks token_endpoint_auth_method
  65. @see http://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication
  66. */
  67. @property(nonatomic, readonly, nullable) NSString *tokenEndpointAuthenticationMethod;
  68. /*! @brief The client's additional token request parameters.
  69. */
  70. @property(nonatomic, readonly, nullable) NSDictionary<NSString *, NSString *> *additionalParameters;
  71. /*! @internal
  72. @brief Unavailable. Please use initWithConfiguration
  73. */
  74. - (instancetype)init NS_UNAVAILABLE;
  75. /*! @brief Create a Client Registration Request to an OpenID Provider that supports open Dynamic
  76. Registration.
  77. @param configuration The service's configuration.
  78. @param redirectURIs The redirect URIs to register for the client.
  79. @param responseTypes The response types to register for the client.
  80. @param grantTypes The grant types to register for the client.
  81. @param subjectType The subject type to register for the client.
  82. @param tokenEndpointAuthMethod The token endpoint authentication method to register for the
  83. client.
  84. @param additionalParameters The client's additional registration request parameters.
  85. */
  86. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  87. redirectURIs:(NSArray<NSURL *> *)redirectURIs
  88. responseTypes:(nullable NSArray<NSString *> *)responseTypes
  89. grantTypes:(nullable NSArray<NSString *> *)grantTypes
  90. subjectType:(nullable NSString *)subjectType
  91. tokenEndpointAuthMethod:(nullable NSString *)tokenEndpointAuthMethod
  92. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters;
  93. /*! @brief Designated initializer.
  94. @param configuration The service's configuration.
  95. @param redirectURIs The redirect URIs to register for the client.
  96. @param responseTypes The response types to register for the client.
  97. @param grantTypes The grant types to register for the client.
  98. @param subjectType The subject type to register for the client.
  99. @param tokenEndpointAuthMethod The token endpoint authentication method to register for the
  100. client.
  101. @param initialAccessToken The initial access token to access the Client Registration Endpoint
  102. (if required by the OpenID Provider).
  103. @param additionalParameters The client's additional registration request parameters.
  104. @see https://openid.net/specs/openid-connect-registration-1_0.html#ClientRegistration
  105. */
  106. - (instancetype)initWithConfiguration:(OIDServiceConfiguration *)configuration
  107. redirectURIs:(NSArray<NSURL *> *)redirectURIs
  108. responseTypes:(nullable NSArray<NSString *> *)responseTypes
  109. grantTypes:(nullable NSArray<NSString *> *)grantTypes
  110. subjectType:(nullable NSString *)subjectType
  111. tokenEndpointAuthMethod:(nullable NSString *)tokenEndpointAuthMethod
  112. initialAccessToken:(nullable NSString *)initialAccessToken
  113. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters
  114. NS_DESIGNATED_INITIALIZER;
  115. /*! @brief Constructs an @c NSURLRequest representing the registration request.
  116. @return An @c NSURLRequest representing the registration request.
  117. */
  118. - (NSURLRequest *)URLRequest;
  119. @end
  120. NS_ASSUME_NONNULL_END