-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathGIDSignIn_Private.h
More file actions
110 lines (90 loc) · 4.51 KB
/
GIDSignIn_Private.h
File metadata and controls
110 lines (90 loc) · 4.51 KB
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
/*
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import <TargetConditionals.h>
#import "GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h"
#if __has_include(<UIKit/UIKit.h>)
#import <UIKit/UIKit.h>
#elif __has_include(<AppKit/AppKit.h>)
#import <AppKit/AppKit.h>
#endif
NS_ASSUME_NONNULL_BEGIN
@class GIDGoogleUser;
@class GIDSignInInternalOptions;
@class GTMKeychainStore;
@class GIDAppCheck;
@class GIDAuthStateMigration;
/// Represents a completion block that takes a `GIDSignInResult` on success or an error if the
/// operation was unsuccessful.
typedef void (^GIDSignInCompletion)(GIDSignInResult *_Nullable signInResult,
NSError *_Nullable error);
/// Represents a completion block that takes an error if the operation was unsuccessful.
typedef void (^GIDDisconnectCompletion)(NSError *_Nullable error);
// Private |GIDSignIn| methods that are used internally in this SDK and other Google SDKs.
@interface GIDSignIn ()
/// Redeclare |currentUser| as readwrite for internal use.
@property(nonatomic, readwrite, nullable) GIDGoogleUser *currentUser;
/// Private initializer taking a `GTMKeychainStore`.
- (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
authStateMigrationService:(GIDAuthStateMigration *)authStateMigrationService;
#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST
/// Private initializer taking a `GTMKeychainStore` and `GIDAppCheckProvider`.
- (instancetype)initWithKeychainStore:(GTMKeychainStore *)keychainStore
authStateMigrationService:(GIDAuthStateMigration *)authStateMigrationService
appCheck:(GIDAppCheck *)appCheck
API_AVAILABLE(ios(14));
#endif // TARGET_OS_IOS || !TARGET_OS_MACCATALYST
/// Authenticates with extra options.
- (void)signInWithOptions:(GIDSignInInternalOptions *)options;
/// Restores a previously authenticated user from the keychain synchronously without refreshing
/// the access token or making a userinfo request.
///
/// The currentUser.profile will be nil unless the profile data can be extracted from the ID token.
///
/// @return NO if there is no user restored from the keychain.
- (BOOL)restorePreviousSignInNoRefresh;
#if TARGET_OS_IOS || TARGET_OS_MACCATALYST
/// Starts an interactive consent flow on iOS to add scopes to the current user's grants.
///
/// The completion will be called at the end of this process. If successful, a `GIDSignInResult`
/// instance will be returned reflecting the new scopes and saved sign-in state will be updated.
///
/// @param scopes The scopes to ask the user to consent to.
/// @param presentingViewController The view controller used to present `SFSafariViewController` on
/// iOS 9 and 10 and to supply `presentationContextProvider` for `ASWebAuthenticationSession` on
/// iOS 13+.
/// @param completion The block that is called on completion. This block will be called asynchronously
/// on the main queue.
- (void)addScopes:(NSArray<NSString *> *)scopes
presentingViewController:(UIViewController *)presentingViewController
completion:(nullable GIDSignInCompletion)completion
NS_EXTENSION_UNAVAILABLE("The add scopes flow is not supported in App Extensions.");
#elif TARGET_OS_OSX
/// Starts an interactive consent flow on macOS to add scopes to the current user's grants.
///
/// The completion will be called at the end of this process. If successful, a `GIDSignInResult`
/// instance will be returned reflecting the new scopes and saved sign-in state will be updated.
///
/// @param scopes An array of scopes to ask the user to consent to.
/// @param presentingWindow The window used to supply `presentationContextProvider` for
/// `ASWebAuthenticationSession`.
/// @param completion The block that is called on completion. This block will be called asynchronously
/// on the main queue.
- (void)addScopes:(NSArray<NSString *> *)scopes
presentingWindow:(NSWindow *)presentingWindow
completion:(nullable GIDSignInCompletion)completion;
#endif
@end
NS_ASSUME_NONNULL_END