-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remediate TunnelVision, TunnelCrack and fix "Exclude Local Networks" (#…
…1039) Task/Issue URL: https://app.asana.com/0/1206580121312550/1208686409805161/f Tech Design URL: https://app.asana.com/0/481882893211075/1208643192597095/f iOS PR: duckduckgo/iOS#3460 macOS PR: duckduckgo/macos-browser#3422 What kind of version bump will this require?: Major ## Description Remediate TunnelVision, TunnelCrack and fix "Exclude Local Networks".
- Loading branch information
1 parent
6be7815
commit 614ea57
Showing
21 changed files
with
345 additions
and
278 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
Sources/BrowserServicesKit/InternalUserDecider/UserDefaults+isInternalUser.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,46 @@ | ||
// | ||
// UserDefaults+isInternalUser.swift | ||
// | ||
// Copyright © 2024 DuckDuckGo. All rights reserved. | ||
// | ||
// 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 Combine | ||
import Foundation | ||
|
||
extension UserDefaults: InternalUserStoring { | ||
@objc | ||
public dynamic var isInternalUser: Bool { | ||
get { | ||
bool(forKey: #keyPath(isInternalUser)) | ||
} | ||
|
||
set { | ||
guard newValue != bool(forKey: #keyPath(isInternalUser)) else { | ||
return | ||
} | ||
|
||
guard newValue else { | ||
removeObject(forKey: #keyPath(isInternalUser)) | ||
return | ||
} | ||
|
||
set(newValue, forKey: #keyPath(isInternalUser)) | ||
} | ||
} | ||
|
||
var internalUserPublisher: AnyPublisher<Bool, Never> { | ||
publisher(for: \.isInternalUser).eraseToAnyPublisher() | ||
} | ||
} |
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
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
Oops, something went wrong.