OIDServiceDiscovery.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*! @file OIDServiceDiscovery.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. NS_ASSUME_NONNULL_BEGIN
  18. /*! @brief Represents an OpenID Connect 1.0 Discovery Document
  19. @see https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
  20. */
  21. @interface OIDServiceDiscovery : NSObject <NSCopying, NSSecureCoding>
  22. /*! @brief The decoded OpenID Connect 1.0 Discovery Document as a dictionary.
  23. */
  24. @property(nonatomic, readonly) NSDictionary<NSString *, id> *discoveryDictionary;
  25. /*! @brief REQUIRED. URL using the @c https scheme with no query or fragment component that the OP
  26. asserts as its Issuer Identifier. If Issuer discovery is supported, this value MUST be
  27. identical to the issuer value returned by WebFinger. This also MUST be identical to the
  28. @c iss Claim value in ID Tokens issued from this Issuer.
  29. @remarks issuer
  30. @seealso https://openid.net/specs/openid-connect-discovery-1_0.html#IssuerDiscovery
  31. */
  32. @property(nonatomic, readonly) NSURL *issuer;
  33. /*! @brief REQUIRED. URL of the OP's OAuth 2.0 Authorization Endpoint.
  34. @remarks authorization_endpoint
  35. @seealso http://openid.net/specs/openid-connect-core-1_0.html#AuthorizationEndpoint
  36. */
  37. @property(nonatomic, readonly) NSURL *authorizationEndpoint;
  38. /*! @brief URL of the OP's OAuth 2.0 Token Endpoint. This is REQUIRED unless only the Implicit Flow
  39. is used.
  40. @remarks token_endpoint
  41. @seealso http://openid.net/specs/openid-connect-core-1_0.html#TokenEndpoint
  42. */
  43. @property(nonatomic, readonly) NSURL *tokenEndpoint;
  44. /*! @brief RECOMMENDED. URL of the OP's UserInfo Endpoint. This URL MUST use the https scheme and
  45. MAY contain port, path, and query parameter components.
  46. @remarks userinfo_endpoint
  47. @seealso http://openid.net/specs/openid-connect-core-1_0.html#UserInfo
  48. */
  49. @property(nonatomic, readonly, nullable) NSURL *userinfoEndpoint;
  50. /*! @brief REQUIRED. URL of the OP's JSON Web Key Set document. This contains the signing key(s) the
  51. RP uses to validate signatures from the OP. The JWK Set MAY also contain the Server's
  52. encryption key(s), which are used by RPs to encrypt requests to the Server. When both
  53. signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED
  54. for all keys in the referenced JWK Set to indicate each key's intended usage. Although some
  55. algorithms allow the same key to be used for both signatures and encryption, doing so is NOT
  56. RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509
  57. representations of keys provided. When used, the bare key values MUST still be present and
  58. MUST match those in the certificate.
  59. @remarks jwks_uri
  60. @seealso http://tools.ietf.org/html/rfc7517
  61. */
  62. @property(nonatomic, readonly) NSURL *jwksURL;
  63. /*! @brief RECOMMENDED. URL of the OP's Dynamic Client Registration Endpoint.
  64. @remarks registration_endpoint
  65. @seealso http://openid.net/specs/openid-connect-registration-1_0.html
  66. */
  67. @property(nonatomic, readonly, nullable) NSURL *registrationEndpoint;
  68. /* @brief OPTIONAL. URL of the OP's RP-Initiated Logout endpoint.
  69. @remarks end_session_endpoint
  70. @seealso http://openid.net/specs/openid-connect-session-1_0.html#OPMetadata
  71. */
  72. @property(nonatomic, readonly, nullable) NSURL *endSessionEndpoint;
  73. /*! @brief RECOMMENDED. JSON array containing a list of the OAuth 2.0 [RFC6749] scope values that
  74. this server supports. The server MUST support the openid scope value. Servers MAY choose not
  75. to advertise some supported scope values even when this parameter is used, although those
  76. defined in [OpenID.Core] SHOULD be listed, if supported.
  77. @remarks scopes_supported
  78. @seealso http://tools.ietf.org/html/rfc6749#section-3.3
  79. */
  80. @property(nonatomic, readonly, nullable) NSArray<NSString *> *scopesSupported;
  81. /*! @brief REQUIRED. JSON array containing a list of the OAuth 2.0 @c response_type values that this
  82. OP supports. Dynamic OpenID Providers MUST support the @c code, @c id_token, and the token
  83. @c id_token Response Type values.
  84. @remarks response_types_supported
  85. */
  86. @property(nonatomic, readonly) NSArray<NSString *> *responseTypesSupported;
  87. /*! @brief OPTIONAL. JSON array containing a list of the OAuth 2.0 @c response_mode values that this
  88. OP supports, as specified in OAuth 2.0 Multiple Response Type Encoding Practices. If
  89. omitted, the default for Dynamic OpenID Providers is @c ["query", "fragment"].
  90. @remarks response_modes_supported
  91. @seealso http://openid.net/specs/oauth-v2-multiple-response-types-1_0.html
  92. */
  93. @property(nonatomic, readonly, nullable) NSArray<NSString *> *responseModesSupported;
  94. /*! @brief OPTIONAL. JSON array containing a list of the OAuth 2.0 Grant Type values that this OP
  95. supports. Dynamic OpenID Providers MUST support the @c authorization_code and @c implicit
  96. Grant Type values and MAY support other Grant Types. If omitted, the default value is
  97. @c ["authorization_code", "implicit"].
  98. @remarks grant_types_supported
  99. */
  100. @property(nonatomic, readonly, nullable) NSArray<NSString *> *grantTypesSupported;
  101. /*! @brief OPTIONAL. JSON array containing a list of the Authentication Context Class References
  102. that this OP supports.
  103. @remarks acr_values_supported
  104. */
  105. @property(nonatomic, readonly, nullable) NSArray<NSString *> *acrValuesSupported;
  106. /*! @brief REQUIRED. JSON array containing a list of the Subject Identifier types that this OP
  107. supports. Valid types include @c pairwise and @c public.
  108. @remarks subject_types_supported
  109. */
  110. @property(nonatomic, readonly) NSArray<NSString *> *subjectTypesSupported;
  111. /*! @brief REQUIRED. JSON array containing a list of the JWS signing algorithms (@c alg values)
  112. supported by the OP for the ID Token to encode the Claims in a JWT. The algorithm @c RS256
  113. MUST be included. The value @c none MAY be supported, but MUST NOT be used unless the
  114. Response Type used returns no ID Token from the Authorization Endpoint (such as when using
  115. the Authorization Code Flow).
  116. @remarks id_token_signing_alg_values_supported
  117. @seealso https://tools.ietf.org/html/rfc7519
  118. */
  119. @property(nonatomic, readonly) NSArray<NSString *> *IDTokenSigningAlgorithmValuesSupported;
  120. /*! @brief OPTIONAL. JSON array containing a list of the JWE encryption algorithms (@c alg values)
  121. supported by the OP for the ID Token to encode the Claims in a JWT.
  122. @remarks id_token_encryption_alg_values_supported
  123. @seealso https://tools.ietf.org/html/rfc7519
  124. */
  125. @property(nonatomic, readonly, nullable)
  126. NSArray<NSString *> *IDTokenEncryptionAlgorithmValuesSupported;
  127. /*! @brief OPTIONAL. JSON array containing a list of the JWE encryption algorithms (@c enc values)
  128. supported by the OP for the ID Token to encode the Claims in a JWT.
  129. @remarks id_token_encryption_enc_values_supported
  130. @seealso https://tools.ietf.org/html/rfc7519
  131. */
  132. @property(nonatomic, readonly, nullable)
  133. NSArray<NSString *> *IDTokenEncryptionEncodingValuesSupported;
  134. /*! @brief OPTIONAL. JSON array containing a list of the JWS signing algorithms (@c alg values)
  135. supported by the UserInfo Endpoint to encode the Claims in a JWT. The value none MAY be
  136. included.
  137. @remarks userinfo_signing_alg_values_supported
  138. @seealso https://tools.ietf.org/html/rfc7515
  139. @seealso https://tools.ietf.org/html/rfc7518
  140. @seealso https://tools.ietf.org/html/rfc7519
  141. */
  142. @property(nonatomic, readonly, nullable)
  143. NSArray<NSString *> *userinfoSigningAlgorithmValuesSupported;
  144. /*! @brief OPTIONAL. JSON array containing a list of the JWE encryption algorithms (alg values)
  145. supported by the UserInfo Endpoint to encode the Claims in a JWT.
  146. @remarks userinfo_encryption_alg_values_supported
  147. @seealso https://tools.ietf.org/html/rfc7516
  148. @seealso https://tools.ietf.org/html/rfc7518
  149. @seealso https://tools.ietf.org/html/rfc7519
  150. */
  151. @property(nonatomic, readonly, nullable)
  152. NSArray<NSString *> *userinfoEncryptionAlgorithmValuesSupported;
  153. /*! @brief OPTIONAL. JSON array containing a list of the JWE encryption algorithms (@c enc values)
  154. supported by the UserInfo Endpoint to encode the Claims in a JWT.
  155. @remarks userinfo_encryption_enc_values_supported
  156. @seealso https://tools.ietf.org/html/rfc7519
  157. */
  158. @property(nonatomic, readonly, nullable)
  159. NSArray<NSString *> *userinfoEncryptionEncodingValuesSupported;
  160. /*! @brief OPTIONAL. JSON array containing a list of the JWS signing algorithms (@c alg values)
  161. supported by the OP for Request Objects, which are described in Section 6.1 of OpenID
  162. Connect Core 1.0. These algorithms are used both when the Request Object is passed by value
  163. (using the request parameter) and when it is passed by reference (using the @c request_uri
  164. parameter). Servers SHOULD support @c none and @c RS256.
  165. @remarks request_object_signing_alg_values_supported
  166. @seealso http://openid.net/specs/openid-connect-core-1_0.html
  167. */
  168. @property(nonatomic, readonly, nullable)
  169. NSArray<NSString *> *requestObjectSigningAlgorithmValuesSupported;
  170. /*! @brief OPTIONAL. JSON array containing a list of the JWE encryption algorithms (@c alg values)
  171. supported by the OP for Request Objects. These algorithms are used both when the Request
  172. Object is passed by value and when it is passed by reference.
  173. @remarks request_object_encryption_alg_values_supported
  174. */
  175. @property(nonatomic, readonly, nullable)
  176. NSArray<NSString *> *requestObjectEncryptionAlgorithmValuesSupported;
  177. /*! @brief OPTIONAL. JSON array containing a list of the JWE encryption algorithms (@c enc values)
  178. supported by the OP for Request Objects. These algorithms are used both when the Request
  179. Object is passed by value and when it is passed by reference.
  180. @remarks request_object_encryption_enc_values_supported
  181. */
  182. @property(nonatomic, readonly, nullable)
  183. NSArray<NSString *> *requestObjectEncryptionEncodingValuesSupported;
  184. /*! @brief OPTIONAL. JSON array containing a list of Client Authentication methods supported by this
  185. Token Endpoint. The options are @c client_secret_post, @c client_secret_basic,
  186. @c client_secret_jwt, and @c private_key_jwt, as described in Section 9 of OpenID Connect
  187. Core 1.0. Other authentication methods MAY be defined by extensions. If omitted, the default
  188. is @c client_secret_basic -- the HTTP Basic Authentication Scheme specified in Section 2.3.1
  189. of OAuth 2.0.
  190. @remarks token_endpoint_auth_methods_supported
  191. @seealso http://openid.net/specs/openid-connect-core-1_0.html
  192. @seealso http://tools.ietf.org/html/rfc6749#section-2.3.1
  193. */
  194. @property(nonatomic, readonly, nullable) NSArray<NSString *> *tokenEndpointAuthMethodsSupported;
  195. /*! @brief OPTIONAL. JSON array containing a list of the JWS signing algorithms (@c alg values)
  196. supported by the Token Endpoint for the signature on the JWT used to authenticate the Client
  197. at the Token Endpoint for the @c private_key_jwt and @c client_secret_jwt authentication
  198. methods. Servers SHOULD support @c RS256. The value @c none MUST NOT be used.
  199. @remarks token_endpoint_auth_signing_alg_values_supported
  200. @seealso https://tools.ietf.org/html/rfc7519
  201. */
  202. @property(nonatomic, readonly, nullable)
  203. NSArray<NSString *> *tokenEndpointAuthSigningAlgorithmValuesSupported;
  204. /*! @brief OPTIONAL. JSON array containing a list of the @c display parameter values that the OpenID
  205. Provider supports. These values are described in Section 3.1.2.1 of OpenID Connect Core 1.0.
  206. @remarks display_values_supported
  207. @seealso http://openid.net/specs/openid-connect-core-1_0.html
  208. */
  209. @property(nonatomic, readonly, nullable) NSArray<NSString *> *displayValuesSupported;
  210. /*! @brief OPTIONAL. JSON array containing a list of the Claim Types that the OpenID Provider
  211. supports. These Claim Types are described in Section 5.6 of OpenID Connect Core 1.0. Values
  212. defined by this specification are @c normal, @c aggregated, and @c distributed. If omitted,
  213. the implementation supports only @c normal Claims.
  214. @remarks claim_types_supported
  215. @seealso http://openid.net/specs/openid-connect-core-1_0.html
  216. */
  217. @property(nonatomic, readonly, nullable) NSArray<NSString *> *claimTypesSupported;
  218. /*! @brief RECOMMENDED. JSON array containing a list of the Claim Names of the Claims that the
  219. OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons,
  220. this might not be an exhaustive list.
  221. @remarks claims_supported
  222. */
  223. @property(nonatomic, readonly, nullable) NSArray<NSString *> *claimsSupported;
  224. /*! @brief OPTIONAL. URL of a page containing human-readable information that developers might want
  225. or need to know when using the OpenID Provider. In particular, if the OpenID Provider does
  226. not support Dynamic Client Registration, then information on how to register Clients needs
  227. to be provided in this documentation.
  228. @remarks service_documentation
  229. */
  230. @property(nonatomic, readonly, nullable) NSURL *serviceDocumentation;
  231. /*! @brief OPTIONAL. Languages and scripts supported for values in Claims being returned,
  232. represented as a JSON array of BCP47 language tag values. Not all languages and scripts are
  233. necessarily supported for all Claim values.
  234. @remarks claims_locales_supported
  235. @seealso http://tools.ietf.org/html/rfc5646
  236. */
  237. @property(nonatomic, readonly, nullable) NSArray<NSString *> *claimsLocalesSupported;
  238. /*! @brief OPTIONAL. Languages and scripts supported for the user interface, represented as a JSON
  239. array of BCP47 language tag values.
  240. @remarks ui_locales_supported
  241. @seealso http://tools.ietf.org/html/rfc5646
  242. */
  243. @property(nonatomic, readonly, nullable) NSArray<NSString *> *UILocalesSupported;
  244. /*! @brief OPTIONAL. Boolean value specifying whether the OP supports use of the claims parameter,
  245. with @c true indicating support. If omitted, the default value is @c false.
  246. @remarks claims_parameter_supported
  247. */
  248. @property(nonatomic, readonly) BOOL claimsParameterSupported;
  249. /*! @brief OPTIONAL. Boolean value specifying whether the OP supports use of the request parameter,
  250. with @c true indicating support. If omitted, the default value is @c false.
  251. @remarks request_parameter_supported
  252. */
  253. @property(nonatomic, readonly) BOOL requestParameterSupported;
  254. /*! @brief OPTIONAL. Boolean value specifying whether the OP supports use of the @c request_uri
  255. parameter, with true indicating support. If omitted, the default value is @c true.
  256. @remarks request_uri_parameter_supported
  257. */
  258. @property(nonatomic, readonly) BOOL requestURIParameterSupported;
  259. /*! @brief OPTIONAL. Boolean value specifying whether the OP requires any @c request_uri values used
  260. to be pre-registered using the @c request_uris registration parameter. Pre-registration is
  261. REQUIRED when the value is @c true. If omitted, the default value is @c false.
  262. @remarks require_request_uri_registration
  263. */
  264. @property(nonatomic, readonly) BOOL requireRequestURIRegistration;
  265. /*! @brief OPTIONAL. URL that the OpenID Provider provides to the person registering the Client to
  266. read about the OP's requirements on how the Relying Party can use the data provided by the
  267. OP. The registration process SHOULD display this URL to the person registering the Client if
  268. it is given.
  269. @remarks op_policy_uri
  270. */
  271. @property(nonatomic, readonly, nullable) NSURL *OPPolicyURI;
  272. /*! @brief OPTIONAL. URL that the OpenID Provider provides to the person registering the Client to
  273. read about OpenID Provider's terms of service. The registration process SHOULD display this
  274. URL to the person registering the Client if it is given.
  275. @remarks op_tos_uri
  276. */
  277. @property(nonatomic, readonly, nullable) NSURL *OPTosURI;
  278. /*! @internal
  279. @brief Unavailable. Please use @c initWithDictionary:error:, @c initWithJSON:error, or the
  280. @c serviceDiscoveryWithURL:callback: factory method.
  281. */
  282. - (nonnull instancetype)init NS_UNAVAILABLE;
  283. /*! @brief Decodes a OpenID Connect Discovery 1.0 JSON document.
  284. @param serviceDiscoveryJSON An OpenID Connect Service Discovery document.
  285. @param error If a required field is missing from the dictionary, an error with domain
  286. @c ::OIDGeneralErrorDomain and code @c ::OIDErrorCodeInvalidDiscoveryDocument will be
  287. returned.
  288. */
  289. - (nullable instancetype)initWithJSON:(NSString *)serviceDiscoveryJSON
  290. error:(NSError **_Nullable)error;
  291. /*! @brief Decodes a OpenID Connect Discovery 1.0 JSON document.
  292. @param serviceDiscoveryJSONData An OpenID Connect Service Discovery document.
  293. @param error If a required field is missing from the dictionary, an error with domain
  294. @c ::OIDGeneralErrorDomain and code @c ::OIDErrorCodeInvalidDiscoveryDocument will be
  295. returned.
  296. */
  297. - (nullable instancetype)initWithJSONData:(NSData *)serviceDiscoveryJSONData
  298. error:(NSError **_Nullable)error;
  299. /*! @brief Designated initializer. The dictionary keys should match the keys defined in the OpenID
  300. Connect Discovery 1.0 standard for OpenID Provider Metadata.
  301. @param serviceDiscoveryDictionary A dictionary representing an OpenID Connect Service Discovery
  302. document.
  303. @param error If a required field is missing from the dictionary, an error with domain
  304. @c ::OIDGeneralErrorDomain and code @c ::OIDErrorCodeInvalidDiscoveryDocument will be
  305. returned.
  306. */
  307. - (nullable instancetype)initWithDictionary:(NSDictionary *)serviceDiscoveryDictionary
  308. error:(NSError **_Nullable)error NS_DESIGNATED_INITIALIZER;
  309. @end
  310. NS_ASSUME_NONNULL_END