-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added smart card manager support in authenticator #370
Closed
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
fa9c985
added initial smart card support
njarecha b4d2c84
updated comment
njarecha 6a8eb12
Merge branch 'v.next' into njarecha/smart-card-support
njarecha 672c6c6
Merge branch 'v.next' into njarecha/smart-card-support
njarecha 58837ee
added smart card manager, modifier and updated authenticator code
njarecha 94bef30
updated smart card manager
njarecha 8936b7b
Merge branch 'v.next' into njarecha/smart-card-support
njarecha 7df6e67
changes for smart card apis
njarecha 6ffe2ac
remove print statements
njarecha 233304a
Merge branch 'v.next' into njarecha/smart-card-support
njarecha 9c1f2af
fix sign out workflow
njarecha 14c638a
revert the properties change
njarecha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
Sources/ArcGISToolkit/Components/Authentication/SmartCardManager.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
// Copyright 2023 Esri. | ||
|
||
// 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 Foundation | ||
import CryptoTokenKit | ||
import ArcGIS | ||
|
||
@MainActor | ||
public final class SmartCardManager: ObservableObject { | ||
/// An enumeration of the various status values for a smart card connection. | ||
public enum ConnectionStatus { | ||
/// A smart card is connected to the device. | ||
case connected | ||
/// A smart card is disconnected from the device. | ||
case disconnected | ||
/// The connection is unspecified. | ||
case unspecified | ||
} | ||
|
||
/// The current smart card connection status. | ||
@Published public var connectionStatus: ConnectionStatus = .unspecified | ||
|
||
/// A Boolean value indicating whether the smart card is disconnected. | ||
@Published var isCardDisconnected: Bool = false | ||
|
||
/// A Boolean value indicating whether a different smart card is connected. | ||
@Published var isDifferentCardConnected: Bool = false | ||
|
||
/// The smart card connection watcher. | ||
private let watcher = TKTokenWatcher() | ||
|
||
/// The last connected smart card. | ||
private var lastConnectedCard: String? = nil | ||
|
||
/// Creates smart card manager. | ||
init() { | ||
// Monitor the smart card connection. | ||
watcher.setInsertionHandler { [weak self] tokenID in | ||
guard let self = self, tokenID.localizedCaseInsensitiveContains("pivtoken") else { return } | ||
|
||
if let lastConnectedCard, tokenID != lastConnectedCard { | ||
DispatchQueue.main.async { | ||
self.isDifferentCardConnected = true | ||
} | ||
} else { | ||
lastConnectedCard = tokenID | ||
} | ||
|
||
DispatchQueue.main.async { | ||
if self.connectionStatus != .connected { | ||
self.connectionStatus = .connected | ||
} | ||
} | ||
|
||
watcher.addRemovalHandler( { [weak self] tokenID in | ||
guard let self = self else { return } | ||
|
||
if tokenID == lastConnectedCard { | ||
DispatchQueue.main.async { | ||
self.connectionStatus = .disconnected | ||
self.isCardDisconnected = true | ||
} | ||
} | ||
}, forTokenID: tokenID) | ||
} | ||
} | ||
|
||
/// The first PIV token found in the token watcher. | ||
/// - Note: The PIV token will be available only if smart card is connected to the device. | ||
var pivToken: String? { | ||
watcher.tokenIDs.filter({ $0.localizedCaseInsensitiveContains("pivtoken") }).first | ||
} | ||
|
||
/// Sets the last connected card if PIV token is available. This is being called from the | ||
/// authentication challenge handler to monitor the smart card. | ||
func setLastConnectedCard() { | ||
guard let pivToken = pivToken else { return } | ||
if lastConnectedCard == nil { | ||
lastConnectedCard = pivToken | ||
} | ||
} | ||
|
||
/// Resets the smart card manager. | ||
func reset() { | ||
lastConnectedCard = nil | ||
isCardDisconnected = false | ||
isDifferentCardConnected = false | ||
connectionStatus = .unspecified | ||
} | ||
} |
98 changes: 98 additions & 0 deletions
98
Sources/ArcGISToolkit/Components/Authentication/SmartCardViewModifier.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,98 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
// Copyright 2023 Esri. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
// 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. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+1
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
import SwiftUI | ||||||||||||||||||||||||||||||||||||||||||||||||||||
import ArcGIS | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
/// A view modifier that prompts the alerts for smart card. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
struct SmartCardViewModifier: ViewModifier { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// The authenticator. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
@EnvironmentObject var authenticator: Authenticator | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
/// The smart card manager. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
@EnvironmentObject var smartCardManager: SmartCardManager | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
func body(content: Content) -> some View { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
content | ||||||||||||||||||||||||||||||||||||||||||||||||||||
.promptDisconnectedCard( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
isPresented: $smartCardManager.isCardDisconnected, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
authenticator: authenticator | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
.promptDifferentCardConnected( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
isPresented: $smartCardManager.isDifferentCardConnected, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
authenticator: authenticator | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
private extension View { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Displays an alert to the user to let them know that the smart card is disconnected. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// - Parameters: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// - isPresented: A binding to a Boolean value that determines whether to present an alert. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// - authenticator: The authenticator. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
@MainActor @ViewBuilder func promptDisconnectedCard( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
isPresented: Binding<Bool>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
authenticator: Authenticator | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> some View { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
alert( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text("Smart Card Disconnected", bundle: .toolkitModule), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
isPresented: isPresented | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Button(role: .cancel) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Task { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
await authenticator.signOutAction() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} label: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text("Sign Out", bundle: .toolkitModule) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Button(role: .destructive) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
print("Continue") | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} label: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text("Continue", bundle: .toolkitModule) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} message: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"Connect a smart card and continue or sign out to access a different account.", | ||||||||||||||||||||||||||||||||||||||||||||||||||||
bundle: .toolkitModule | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
private extension View { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Displays a prompt to the user to let them know that the smart card is disconnected. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
/// - Parameters: isPresented: A Boolean value indicating if the view is presented. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
@MainActor @ViewBuilder func promptDifferentCardConnected( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
isPresented: Binding<Bool>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
authenticator: Authenticator | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> some View { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
alert( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text("Different Card Connected", bundle: .toolkitModule), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
isPresented: isPresented | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Button(role: .cancel) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Task { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
await authenticator.signOutAction() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} label: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text("Sign Out", bundle: .toolkitModule) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} message: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Text( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"You must sign out to access a different account.", | ||||||||||||||||||||||||||||||||||||||||||||||||||||
bundle: .toolkitModule | ||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.