hank
2019-06-20 9fdbb77fd2d766c9aa88f6753108354592770058
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
19 #import <Foundation/Foundation.h>
20
21 #import "FBSDKAppLink.h"
22 #import "FBSDKAppLinkResolving.h"
23
24 NS_ASSUME_NONNULL_BEGIN
25
26 /*!
27  The result of calling navigate on a FBSDKAppLinkNavigation
28  */
29 typedef NS_ENUM(NSInteger, FBSDKAppLinkNavigationType) {
30     /*! Indicates that the navigation failed and no app was opened */
31     FBSDKAppLinkNavigationTypeFailure,
32     /*! Indicates that the navigation succeeded by opening the URL in the browser */
33     FBSDKAppLinkNavigationTypeBrowser,
34     /*! Indicates that the navigation succeeded by opening the URL in an app on the device */
35     FBSDKAppLinkNavigationTypeApp
e81c27 36 } NS_SWIFT_NAME(AppLinkNavigation.Type);
13e53a 37
H 38 /**
39  Describes the callback for appLinkFromURLInBackground.
40  @param navType the FBSDKAppLink representing the deferred App Link
41  @param error the error during the request, if any
42
43  */
e81c27 44 typedef void (^FBSDKAppLinkNavigationBlock)(FBSDKAppLinkNavigationType navType, NSError * _Nullable error)
H 45 NS_SWIFT_NAME(AppLinkNavigationBlock);
13e53a 46
H 47 /*!
48  Represents a pending request to navigate to an App Link. Most developers will
49  simply use navigateToURLInBackground: to open a URL, but developers can build
50  custom requests with additional navigation and app data attached to them by
51  creating FBSDKAppLinkNavigations themselves.
52  */
53 NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension")
e81c27 54 NS_SWIFT_NAME(AppLinkNavigation)
13e53a 55 @interface FBSDKAppLinkNavigation : NSObject
e81c27 56
H 57 - (instancetype)init NS_UNAVAILABLE;
58 + (instancetype)new NS_UNAVAILABLE;
59
60 /*!
61  The default resolver to be used for App Link resolution. If the developer has not set one explicitly,
62  a basic, built-in FBSDKWebViewAppLinkResolver will be used.
63  */
64 @property (class, nonatomic, strong) id<FBSDKAppLinkResolving> defaultResolver
65 NS_SWIFT_NAME(default);
13e53a 66
H 67 /*!
68  The extras for the AppLinkNavigation. This will generally contain application-specific
69  data that should be passed along with the request, such as advertiser or affiliate IDs or
70  other such metadata relevant on this device.
71  */
72 @property (nonatomic, copy, readonly) NSDictionary<NSString *, id> *extras;
73
74 /*!
75  The al_applink_data for the AppLinkNavigation. This will generally contain data common to
76  navigation attempts such as back-links, user agents, and other information that may be used
77  in routing and handling an App Link request.
78  */
79 @property (nonatomic, copy, readonly) NSDictionary<NSString *, id> *appLinkData;
80
81 /*! The AppLink to navigate to */
82 @property (nonatomic, strong, readonly) FBSDKAppLink *appLink;
83
84 /*!
85  Return navigation type for current instance.
86  No-side-effect version of navigate:
87  */
88 @property (nonatomic, readonly) FBSDKAppLinkNavigationType navigationType;
89
90 /*! Creates an AppLinkNavigation with the given link, extras, and App Link data */
91 + (instancetype)navigationWithAppLink:(FBSDKAppLink *)appLink
92                                extras:(NSDictionary<NSString *, id> *)extras
e81c27 93                           appLinkData:(NSDictionary<NSString *, id> *)appLinkData
H 94 NS_SWIFT_NAME(init(appLink:extras:appLinkData:));
13e53a 95
H 96 /*!
97  Creates an NSDictionary with the correct format for iOS callback URLs,
98  to be used as 'appLinkData' argument in the call to navigationWithAppLink:extras:appLinkData:
99  */
100 + (NSDictionary<NSString *, NSDictionary<NSString *, NSString *> *> *)callbackAppLinkDataForAppWithName:(NSString *)appName
e81c27 101                                                                                                     url:(NSString *)url
H 102 NS_SWIFT_NAME(callbackAppLinkData(forApp:url:));
13e53a 103
H 104 /*! Performs the navigation */
e81c27 105 - (FBSDKAppLinkNavigationType)navigate:(NSError **)error
H 106 __attribute__((swift_error(nonnull_error)));
13e53a 107
H 108 /*! Returns a FBSDKAppLink for the given URL */
e81c27 109 + (void)resolveAppLink:(NSURL *)destination handler:(FBSDKAppLinkBlock)handler;
13e53a 110
H 111 /*! Returns a FBSDKAppLink for the given URL using the given App Link resolution strategy */
112 + (void)resolveAppLink:(NSURL *)destination
113               resolver:(id<FBSDKAppLinkResolving>)resolver
e81c27 114                handler:(FBSDKAppLinkBlock)handler;
13e53a 115
H 116 /*! Navigates to a FBSDKAppLink and returns whether it opened in-app or in-browser */
e81c27 117 + (FBSDKAppLinkNavigationType)navigateToAppLink:(FBSDKAppLink *)link error:(NSError **)error
H 118 __attribute__((swift_error(nonnull_error)));
13e53a 119
H 120 /*!
121  Returns a FBSDKAppLinkNavigationType based on a FBSDKAppLink.
122  It's essentially a no-side-effect version of navigateToAppLink:error:,
123  allowing apps to determine flow based on the link type (e.g. open an
124  internal web view instead of going straight to the browser for regular links.)
125  */
126 + (FBSDKAppLinkNavigationType)navigationTypeForLink:(FBSDKAppLink *)link;
127
128 /*! Navigates to a URL (an asynchronous action) and returns a FBSDKNavigationType */
e81c27 129 + (void)navigateToURL:(NSURL *)destination handler:(FBSDKAppLinkNavigationBlock)handler;
13e53a 130
H 131 /*!
132  Navigates to a URL (an asynchronous action) using the given App Link resolution
133  strategy and returns a FBSDKNavigationType
134  */
135 + (void)navigateToURL:(NSURL *)destination
136              resolver:(id<FBSDKAppLinkResolving>)resolver
e81c27 137               handler:(FBSDKAppLinkNavigationBlock)handler;
13e53a 138
H 139 @end
140
141 NS_ASSUME_NONNULL_END