lpw
2021-01-26 49b8839fda3439edc31581527e84036e58f55f0f
commit | author | age
13e53a 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
H 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
49b883 19 #import "TargetConditionals.h"
L 20
21 #if !TARGET_OS_TV
22
13e53a 23 #import <Foundation/Foundation.h>
H 24
25 #import "FBSDKAppLink.h"
26 #import "FBSDKAppLinkResolving.h"
27
28 NS_ASSUME_NONNULL_BEGIN
29
88188e 30 /**
13e53a 31  The result of calling navigate on a FBSDKAppLinkNavigation
H 32  */
33 typedef NS_ENUM(NSInteger, FBSDKAppLinkNavigationType) {
88188e 34     /** Indicates that the navigation failed and no app was opened */
13e53a 35     FBSDKAppLinkNavigationTypeFailure,
88188e 36     /** Indicates that the navigation succeeded by opening the URL in the browser */
13e53a 37     FBSDKAppLinkNavigationTypeBrowser,
88188e 38     /** Indicates that the navigation succeeded by opening the URL in an app on the device */
13e53a 39     FBSDKAppLinkNavigationTypeApp
e81c27 40 } NS_SWIFT_NAME(AppLinkNavigation.Type);
13e53a 41
H 42 /**
43  Describes the callback for appLinkFromURLInBackground.
44  @param navType the FBSDKAppLink representing the deferred App Link
45  @param error the error during the request, if any
46
47  */
e81c27 48 typedef void (^FBSDKAppLinkNavigationBlock)(FBSDKAppLinkNavigationType navType, NSError * _Nullable error)
H 49 NS_SWIFT_NAME(AppLinkNavigationBlock);
13e53a 50
88188e 51 /**
13e53a 52  Represents a pending request to navigate to an App Link. Most developers will
H 53  simply use navigateToURLInBackground: to open a URL, but developers can build
54  custom requests with additional navigation and app data attached to them by
55  creating FBSDKAppLinkNavigations themselves.
56  */
57 NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension")
e81c27 58 NS_SWIFT_NAME(AppLinkNavigation)
13e53a 59 @interface FBSDKAppLinkNavigation : NSObject
e81c27 60
H 61 - (instancetype)init NS_UNAVAILABLE;
62 + (instancetype)new NS_UNAVAILABLE;
63
88188e 64 /**
e81c27 65  The default resolver to be used for App Link resolution. If the developer has not set one explicitly,
H 66  a basic, built-in FBSDKWebViewAppLinkResolver will be used.
67  */
68 @property (class, nonatomic, strong) id<FBSDKAppLinkResolving> defaultResolver
69 NS_SWIFT_NAME(default);
13e53a 70
88188e 71 /**
13e53a 72  The extras for the AppLinkNavigation. This will generally contain application-specific
H 73  data that should be passed along with the request, such as advertiser or affiliate IDs or
74  other such metadata relevant on this device.
75  */
76 @property (nonatomic, copy, readonly) NSDictionary<NSString *, id> *extras;
77
88188e 78 /**
13e53a 79  The al_applink_data for the AppLinkNavigation. This will generally contain data common to
H 80  navigation attempts such as back-links, user agents, and other information that may be used
81  in routing and handling an App Link request.
82  */
83 @property (nonatomic, copy, readonly) NSDictionary<NSString *, id> *appLinkData;
84
88188e 85 /** The AppLink to navigate to */
13e53a 86 @property (nonatomic, strong, readonly) FBSDKAppLink *appLink;
H 87
88188e 88 /**
13e53a 89  Return navigation type for current instance.
H 90  No-side-effect version of navigate:
91  */
92 @property (nonatomic, readonly) FBSDKAppLinkNavigationType navigationType;
93
88188e 94 /** Creates an AppLinkNavigation with the given link, extras, and App Link data */
13e53a 95 + (instancetype)navigationWithAppLink:(FBSDKAppLink *)appLink
H 96                                extras:(NSDictionary<NSString *, id> *)extras
e81c27 97                           appLinkData:(NSDictionary<NSString *, id> *)appLinkData
H 98 NS_SWIFT_NAME(init(appLink:extras:appLinkData:));
13e53a 99
88188e 100 /**
13e53a 101  Creates an NSDictionary with the correct format for iOS callback URLs,
H 102  to be used as 'appLinkData' argument in the call to navigationWithAppLink:extras:appLinkData:
103  */
104 + (NSDictionary<NSString *, NSDictionary<NSString *, NSString *> *> *)callbackAppLinkDataForAppWithName:(NSString *)appName
e81c27 105                                                                                                     url:(NSString *)url
H 106 NS_SWIFT_NAME(callbackAppLinkData(forApp:url:));
13e53a 107
88188e 108 /** Performs the navigation */
e81c27 109 - (FBSDKAppLinkNavigationType)navigate:(NSError **)error
H 110 __attribute__((swift_error(nonnull_error)));
13e53a 111
88188e 112 /** Returns a FBSDKAppLink for the given URL */
e81c27 113 + (void)resolveAppLink:(NSURL *)destination handler:(FBSDKAppLinkBlock)handler;
13e53a 114
88188e 115 /** Returns a FBSDKAppLink for the given URL using the given App Link resolution strategy */
13e53a 116 + (void)resolveAppLink:(NSURL *)destination
H 117               resolver:(id<FBSDKAppLinkResolving>)resolver
e81c27 118                handler:(FBSDKAppLinkBlock)handler;
13e53a 119
88188e 120 /** Navigates to a FBSDKAppLink and returns whether it opened in-app or in-browser */
e81c27 121 + (FBSDKAppLinkNavigationType)navigateToAppLink:(FBSDKAppLink *)link error:(NSError **)error
H 122 __attribute__((swift_error(nonnull_error)));
13e53a 123
88188e 124 /**
13e53a 125  Returns a FBSDKAppLinkNavigationType based on a FBSDKAppLink.
H 126  It's essentially a no-side-effect version of navigateToAppLink:error:,
127  allowing apps to determine flow based on the link type (e.g. open an
128  internal web view instead of going straight to the browser for regular links.)
129  */
130 + (FBSDKAppLinkNavigationType)navigationTypeForLink:(FBSDKAppLink *)link;
131
88188e 132 /** Navigates to a URL (an asynchronous action) and returns a FBSDKNavigationType */
e81c27 133 + (void)navigateToURL:(NSURL *)destination handler:(FBSDKAppLinkNavigationBlock)handler;
13e53a 134
88188e 135 /**
13e53a 136  Navigates to a URL (an asynchronous action) using the given App Link resolution
H 137  strategy and returns a FBSDKNavigationType
138  */
139 + (void)navigateToURL:(NSURL *)destination
140              resolver:(id<FBSDKAppLinkResolving>)resolver
e81c27 141               handler:(FBSDKAppLinkNavigationBlock)handler;
13e53a 142
H 143 @end
144
145 NS_ASSUME_NONNULL_END
49b883 146
L 147 #endif