lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 * All rights reserved.
 *
 * This source code is licensed under the license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/**
  Class to contain common utility methods.
 */
NS_SWIFT_NAME(Utility)
@interface FBSDKUtility : NSObject
 
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
 
/**
  Parses a query string into a dictionary.
 @param queryString The query string value.
 @return A dictionary with the key/value pairs.
 */
 
// UNCRUSTIFY_FORMAT_OFF
+ (NSDictionary<NSString *, NSString *> *)dictionaryWithQueryString:(NSString *)queryString
NS_SWIFT_NAME(dictionary(withQuery:));
// UNCRUSTIFY_FORMAT_ON
 
/**
  Constructs a query string from a dictionary.
 @param dictionary The dictionary with key/value pairs for the query string.
 @param errorRef If an error occurs, upon return contains an NSError object that describes the problem.
 @return Query string representation of the parameters.
 */
 
// UNCRUSTIFY_FORMAT_OFF
+ (NSString *)queryStringWithDictionary:(NSDictionary<NSString *, id> *)dictionary
                                  error:(NSError **)errorRef
NS_SWIFT_NAME(query(from:))
__attribute__((swift_error(nonnull_error)));
// UNCRUSTIFY_FORMAT_ON
 
/**
  Decodes a value from an URL.
 @param value The value to decode.
 @return The decoded value.
 */
 
// UNCRUSTIFY_FORMAT_OFF
+ (NSString *)URLDecode:(NSString *)value
NS_SWIFT_NAME(decode(urlString:));
// UNCRUSTIFY_FORMAT_ON
 
/**
  Encodes a value for an URL.
 @param value The value to encode.
 @return The encoded value.
 */
 
// UNCRUSTIFY_FORMAT_OFF
+ (NSString *)URLEncode:(NSString *)value
NS_SWIFT_NAME(encode(urlString:));
// UNCRUSTIFY_FORMAT_ON
 
/**
  Creates a timer using Grand Central Dispatch.
 @param interval The interval to fire the timer, in seconds.
 @param block The code block to execute when timer is fired.
 @return The dispatch handle.
 */
+ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block;
 
/**
 Stop a timer that was started by startGCDTimerWithInterval.
 @param timer The dispatch handle received from startGCDTimerWithInterval.
 */
+ (void)stopGCDTimer:(dispatch_source_t)timer;
 
/**
 Get SHA256 hased string of NSString/NSData
 
 @param input The data that needs to be hashed, it could be NSString or NSData.
 */
 
// UNCRUSTIFY_FORMAT_OFF
+ (nullable NSString *)SHA256Hash:(NSObject *)input
NS_SWIFT_NAME(sha256Hash(_:));
// UNCRUSTIFY_FORMAT_ON
 
/**
 Returns the graphdomain stored in FBSDKAuthenticationToken
 */
+ (NSString *)getGraphDomainFromToken;
 
/**
 Internal Type exposed to facilitate transition to Swift.
 API Subject to change or removal without warning. Do not use.
 
 @warning INTERNAL - DO NOT USE
 */
+ (NSURL *)unversionedFacebookURLWithHostPrefix:(NSString *)hostPrefix
                                           path:(NSString *)path
                                queryParameters:(NSDictionary<NSString *, id> *)queryParameters
                                          error:(NSError *__autoreleasing *)errorRef;
 
@end
 
NS_ASSUME_NONNULL_END