OIDExternalUserAgent.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*! @file OIDExternalUserAgent.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2016 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. @protocol OIDExternalUserAgentSession;
  18. @protocol OIDExternalUserAgentRequest;
  19. NS_ASSUME_NONNULL_BEGIN
  20. /*! @protocol OIDExternalUserAgent
  21. @brief An external user-agent UI that presents displays the request to the user. Clients may
  22. provide custom implementations of an external user-agent to customize the way the requests
  23. are presented to the end user.
  24. */
  25. @protocol OIDExternalUserAgent<NSObject>
  26. /*! @brief Presents the request in the external user-agent.
  27. @param request The request to be presented in the external user-agent.
  28. @param session The @c OIDExternalUserAgentSession instance that initiates presenting the UI.
  29. Concrete implementations of a @c OIDExternalUserAgent may call
  30. resumeExternalUserAgentFlowWithURL or failExternalUserAgentFlowWithError on session to either
  31. resume or fail the request.
  32. @return YES If the request UI was successfully presented to the user.
  33. */
  34. - (BOOL)presentExternalUserAgentRequest:(id<OIDExternalUserAgentRequest> )request
  35. session:(id<OIDExternalUserAgentSession>)session;
  36. /*! @brief Dimisses the external user-agent and calls completion when the dismiss operation ends.
  37. @param animated Whether or not the dismiss operation should be animated.
  38. @remarks Has no effect if no UI is presented.
  39. @param completion The block to be called when the dismiss operations ends
  40. */
  41. - (void)dismissExternalUserAgentAnimated:(BOOL)animated completion:(void (^)(void))completion;
  42. @end
  43. NS_ASSUME_NONNULL_END