-
Notifications
You must be signed in to change notification settings - Fork 860
Expand file tree
/
Copy pathOIDExternalUserAgentMac.m
More file actions
170 lines (140 loc) · 5.61 KB
/
Copy pathOIDExternalUserAgentMac.m
File metadata and controls
170 lines (140 loc) · 5.61 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*! @file OIDExternalUserAgentMac.m
@brief AppAuth iOS SDK
@copyright
Copyright 2016 Google Inc. All Rights Reserved.
@copydetails
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>
#if TARGET_OS_OSX
#import "OIDExternalUserAgentMac.h"
#import <Cocoa/Cocoa.h>
#import "OIDErrorUtilities.h"
#import "OIDExternalUserAgentSession.h"
#import "OIDExternalUserAgentRequest.h"
#import <AuthenticationServices/AuthenticationServices.h>
NS_ASSUME_NONNULL_BEGIN
@interface OIDExternalUserAgentMac ()<ASWebAuthenticationPresentationContextProviding>
@end
@implementation OIDExternalUserAgentMac {
BOOL _externalUserAgentFlowInProgress;
__weak id<OIDExternalUserAgentSession> _session;
BOOL _prefersEphemeralSession;
NSWindow *_presentingWindow;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpartial-availability"
ASWebAuthenticationSession *_webAuthenticationSession;
#pragma clang diagnostic pop
}
- (instancetype)initWithPresentingWindow:(NSWindow *)presentingWindow {
self = [super init];
if (self) {
_presentingWindow = presentingWindow;
}
return self;
}
- (nullable instancetype)initWithPresentingWindow:(NSWindow *)presentingWindow
prefersEphemeralSession:(BOOL)prefersEphemeralSession {
self = [self initWithPresentingWindow:presentingWindow];
if (self) {
_prefersEphemeralSession = prefersEphemeralSession;
}
return self;
}
- (instancetype)init {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnonnull"
return [self initWithPresentingWindow:nil];
#pragma clang diagnostic pop
}
- (BOOL)presentExternalUserAgentRequest:(id<OIDExternalUserAgentRequest>)request
session:(id<OIDExternalUserAgentSession>)session {
if (_externalUserAgentFlowInProgress) {
// TODO: Handle errors as authorization is already in progress.
return NO;
}
_externalUserAgentFlowInProgress = YES;
_session = session;
NSURL *requestURL = [request externalUserAgentRequestURL];
if (@available(macOS 10.15, *)) {
if (_presentingWindow) {
__weak OIDExternalUserAgentMac *weakSelf = self;
NSString *redirectScheme = request.redirectScheme;
ASWebAuthenticationSession *authenticationSession =
[[ASWebAuthenticationSession alloc] initWithURL:requestURL
callbackURLScheme:redirectScheme
completionHandler:^(NSURL * _Nullable callbackURL,
NSError * _Nullable error) {
__strong OIDExternalUserAgentMac *strongSelf = weakSelf;
if (!strongSelf) {
return;
}
strongSelf->_webAuthenticationSession = nil;
if (callbackURL) {
[strongSelf->_session resumeExternalUserAgentFlowWithURL:callbackURL error:nil];
} else {
NSError *safariError =
[OIDErrorUtilities errorWithCode:OIDErrorCodeUserCanceledAuthorizationFlow
underlyingError:error
description:nil];
[strongSelf->_session failExternalUserAgentFlowWithError:safariError];
}
}];
authenticationSession.presentationContextProvider = self;
_webAuthenticationSession = authenticationSession;
_webAuthenticationSession.prefersEphemeralWebBrowserSession = _prefersEphemeralSession;
return [authenticationSession start];
}
}
BOOL openedBrowser = [[NSWorkspace sharedWorkspace] openURL:requestURL];
if (!openedBrowser) {
[self cleanUp];
NSError *safariError = [OIDErrorUtilities errorWithCode:OIDErrorCodeBrowserOpenError
underlyingError:nil
description:@"Unable to open the browser."];
[session failExternalUserAgentFlowWithError:safariError];
}
return openedBrowser;
}
- (void)dismissExternalUserAgentAnimated:(BOOL)animated completion:(void (^)(void))completion {
if (!_externalUserAgentFlowInProgress) {
// Ignore this call if there is no authorization flow in progress.
if (completion) completion();
return;
}
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpartial-availability"
ASWebAuthenticationSession *webAuthenticationSession = _webAuthenticationSession;
#pragma clang diagnostic pop
// Ideally the browser tab with the URL should be closed here, but the AppAuth library does not
// control the browser.
[self cleanUp];
if (webAuthenticationSession) {
// dismiss the ASWebAuthenticationSession
[webAuthenticationSession cancel];
if (completion) completion();
} else if (completion) {
completion();
}
}
- (void)cleanUp {
_session = nil;
_externalUserAgentFlowInProgress = NO;
_webAuthenticationSession = nil;
}
#pragma mark - ASWebAuthenticationPresentationContextProviding
- (ASPresentationAnchor)presentationAnchorForWebAuthenticationSession:(ASWebAuthenticationSession *)session
API_AVAILABLE(macosx(10.15)) {
return _presentingWindow;
}
@end
NS_ASSUME_NONNULL_END
#endif // TARGET_OS_OSX