OIDExternalUserAgentSession.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*! @file OIDExternalUserAgentSession.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. NS_ASSUME_NONNULL_BEGIN
  17. /*! @brief Represents an in-flight external user-agent session.
  18. */
  19. @protocol OIDExternalUserAgentSession <NSObject>
  20. /*! @brief Cancels the code flow session, invoking the request's callback with a cancelled error.
  21. @remarks Has no effect if called more than once, or after a
  22. @c OIDExternalUserAgentSession.resumeExternalUserAgentFlowWithURL: message was received.
  23. Will cause an error with code: @c ::OIDErrorCodeProgramCanceledAuthorizationFlow to be
  24. passed to the @c callback block passed to
  25. @c OIDAuthorizationService.presentAuthorizationRequest:presentingViewController:callback:
  26. */
  27. - (void)cancel;
  28. /*! @brief Cancels the code flow session, invoking the request's callback with a cancelled error.
  29. @remarks Has no effect if called more than once, or after a
  30. @c OIDExternalUserAgentSession.resumeExternalUserAgentFlowWithURL: message was received.
  31. Will cause an error with code: @c ::OIDErrorCodeProgramCanceledAuthorizationFlow to be
  32. passed to the @c callback block passed to
  33. @c OIDAuthorizationService.presentAuthorizationRequest:presentingViewController:callback:
  34. @param completion The block to be called when the cancel operation ends
  35. */
  36. - (void)cancelWithCompletion:(nullable void (^)(void))completion;
  37. /*! @brief Clients should call this method with the result of the external user-agent code flow if
  38. it becomes available.
  39. @param URL The redirect URL invoked by the server.
  40. @discussion When the URL represented a valid response, implementations should clean up any
  41. left-over UI state from the request, for example by closing the
  42. \SFSafariViewController or loopback HTTP listener if those were used. The completion block
  43. of the pending request should then be invoked.
  44. @remarks Has no effect if called more than once, or after a @c cancel message was received.
  45. @return YES if the passed URL matches the expected redirect URL and was consumed, NO otherwise.
  46. */
  47. - (BOOL)resumeExternalUserAgentFlowWithURL:(NSURL *)URL;
  48. /*! @brief @c OIDExternalUserAgent or clients should call this method when the
  49. external user-agent flow failed with a non-OAuth error.
  50. @param error The error that is the reason for the failure of this external flow.
  51. @remarks Has no effect if called more than once, or after a @c cancel message was received.
  52. */
  53. - (void)failExternalUserAgentFlowWithError:(NSError *)error;
  54. @end
  55. NS_ASSUME_NONNULL_END