OIDEndSessionRequest.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*! @file OIDEndSessionRequest.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2017 The AppAuth 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. #import "OIDExternalUserAgentRequest.h"
  18. @class OIDServiceConfiguration;
  19. NS_ASSUME_NONNULL_BEGIN
  20. @interface OIDEndSessionRequest : NSObject
  21. <NSCopying, NSSecureCoding, OIDExternalUserAgentRequest>
  22. /*! @brief The service's configuration.
  23. @remarks This configuration specifies how to connect to a particular OAuth provider.
  24. Configurations may be created manually, or via an OpenID Connect Discovery Document.
  25. */
  26. @property(nonatomic, readonly) OIDServiceConfiguration *configuration;
  27. /*! @brief The client's redirect URI.
  28. @remarks post_logout_redirect_uri
  29. @see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
  30. */
  31. @property(nonatomic, readonly, nullable) NSURL *postLogoutRedirectURL;
  32. /*! @brief Previously issued ID Token passed to the end session endpoint as a hint about the End-User's current authenticated
  33. session with the Client
  34. @remarks id_token_hint
  35. @see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
  36. */
  37. @property(nonatomic, readonly, nullable) NSString *idTokenHint;
  38. /*! @brief An opaque value used by the client to maintain state between the request and callback.
  39. @remarks state
  40. @discussion If this value is not explicitly set, this library will automatically add state and
  41. perform appropriate validation of the state in the authorization response. It is recommended
  42. that the default implementation of this parameter be used wherever possible. Typically used
  43. to prevent CSRF attacks, as recommended in RFC6819 Section 5.3.5.
  44. @see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
  45. */
  46. @property(nonatomic, readonly, nullable) NSString *state;
  47. /*! @brief The client's additional authorization parameters.
  48. @see https://tools.ietf.org/html/rfc6749#section-3.1
  49. */
  50. @property(nonatomic, readonly, nullable) NSDictionary<NSString *, NSString *> *additionalParameters;
  51. /*! @internal
  52. @brief Unavailable. Please use @c initWithConfiguration:clientId:scopes:redirectURL:additionalParameters:.
  53. */
  54. - (instancetype)init NS_UNAVAILABLE;
  55. /*! @brief Creates an authorization request with opinionated defaults (a secure @c state).
  56. @param configuration The service's configuration.
  57. @param idTokenHint The previously issued ID Token
  58. @param postLogoutRedirectURL The client's post-logout redirect URI.
  59. callback.
  60. @param additionalParameters The client's additional authorization parameters.
  61. */
  62. - (instancetype)
  63. initWithConfiguration:(OIDServiceConfiguration *)configuration
  64. idTokenHint:(NSString *)idTokenHint
  65. postLogoutRedirectURL:(NSURL *)postLogoutRedirectURL
  66. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters;
  67. /*! @brief Designated initializer.
  68. @param configuration The service's configuration.
  69. @param idTokenHint The previously issued ID Token
  70. @param postLogoutRedirectURL The client's post-logout redirect URI.
  71. @param state An opaque value used by the client to maintain state between the request and
  72. callback.
  73. @param additionalParameters The client's additional authorization parameters.
  74. */
  75. - (instancetype)
  76. initWithConfiguration:(OIDServiceConfiguration *)configuration
  77. idTokenHint:(NSString *)idTokenHint
  78. postLogoutRedirectURL:(NSURL *)postLogoutRedirectURL
  79. state:(NSString *)state
  80. additionalParameters:(nullable NSDictionary<NSString *, NSString *> *)additionalParameters
  81. NS_DESIGNATED_INITIALIZER;
  82. /*! @brief Constructs the request URI by adding the request parameters to the query component of the
  83. authorization endpoint URI using the "application/x-www-form-urlencoded" format.
  84. @return A URL representing the authorization request.
  85. @see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
  86. */
  87. - (NSURL *)endSessionRequestURL;
  88. @end
  89. NS_ASSUME_NONNULL_END