Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 32b2608

Browse files
authored
Password Generation (#500)
Task/Issue URL: https://app.asana.com/0/0/1201969773101195/f Tech Design URL: Description: Note: requires duckduckgo/BrowserServicesKit#81 to be released first.
1 parent 5b6e15c commit 32b2608

10 files changed

+148
-33
lines changed

DuckDuckGo.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5781,7 +5781,7 @@
57815781
repositoryURL = "https://github.com/duckduckgo/BrowserServicesKit";
57825782
requirement = {
57835783
kind = exactVersion;
5784-
version = 12.2.9;
5784+
version = 12.3.0;
57855785
};
57865786
};
57875787
AA06B6B52672AF8100F541C5 /* XCRemoteSwiftPackageReference "Sparkle" */ = {

DuckDuckGo/Common/Extensions/NSNotificationName+Debug.swift

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import Foundation
2222
extension NSNotification.Name {
2323

2424
static let ShowSaveCredentialsPopover = NSNotification.Name("ShowSaveCredentialsPopover")
25+
static let ShowCredentialsSavedPopover = NSNotification.Name("ShowCredentialsSavedPopover")
2526

2627
}
2728
#endif

DuckDuckGo/Common/Extensions/NSTextFieldExtension.swift

+7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ extension NSTextField {
3333
return label
3434
}
3535

36+
func setEditable(_ editable: Bool) {
37+
self.isEditable = editable
38+
self.isBordered = editable
39+
self.isSelectable = editable
40+
self.isBezeled = editable
41+
}
42+
3643
static func optionalLabel(titled title: String?) -> NSTextField? {
3744
guard let title = title else {
3845
return nil

DuckDuckGo/Menus/MainMenu.storyboard

+6
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,12 @@ CQ
692692
<action selector="showSaveCredentialsPopover:" target="Ady-hI-5gd" id="zgU-tH-zHa"/>
693693
</connections>
694694
</menuItem>
695+
<menuItem title="Show Credentials Saved Popover" id="Odn-Rg-Mjy">
696+
<modifierMask key="keyEquivalentModifierMask"/>
697+
<connections>
698+
<action selector="showCredentialsSavedPopover:" target="Ady-hI-5gd" id="f2c-5P-iB5"/>
699+
</connections>
700+
</menuItem>
695701
</items>
696702
</menu>
697703
</menuItem>

DuckDuckGo/Menus/MainMenuActions.swift

+6
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,12 @@ extension MainViewController {
511511
NotificationCenter.default.post(name: .ShowSaveCredentialsPopover, object: nil)
512512
#endif
513513
}
514+
515+
@IBAction func showCredentialsSavedPopover(_ sender: Any?) {
516+
#if DEBUG || REVIEW
517+
NotificationCenter.default.post(name: .ShowCredentialsSavedPopover, object: nil)
518+
#endif
519+
}
514520

515521
// MARK: - Developer Tools
516522

DuckDuckGo/Navigation Bar/View/NavigationBarViewController.swift

+15-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Combine
2121
import os.log
2222
import BrowserServicesKit
2323

24-
// swiftlint:disable type_body_length
24+
// swiftlint:disable type_body_length file_length
2525
final class NavigationBarViewController: NSViewController {
2626

2727
enum Constants {
@@ -557,7 +557,7 @@ final class NavigationBarViewController: NSViewController {
557557
if autofillPreferences.askToSaveUsernamesAndPasswords, let credentials = data.credentials {
558558
os_log("Presenting Save Credentials popover", log: .passwordManager)
559559
showSaveCredentialsPopover()
560-
saveCredentialsPopover.viewController.saveCredentials(credentials)
560+
saveCredentialsPopover.viewController.update(credentials: credentials, automaticallySaved: data.automaticallySavedCredentials)
561561
} else if autofillPreferences.askToSavePaymentMethods, let card = data.creditCard {
562562
os_log("Presenting Save Payment Method popover", log: .passwordManager)
563563
showSavePaymentMethodPopover()
@@ -678,14 +678,26 @@ extension NavigationBarViewController {
678678
NotificationCenter.default.addObserver(forName: .ShowSaveCredentialsPopover, object: nil, queue: .main) { [weak self] _ in
679679
self?.showMockSaveCredentialsPopover()
680680
}
681+
682+
NotificationCenter.default.addObserver(forName: .ShowCredentialsSavedPopover, object: nil, queue: .main) { [weak self] _ in
683+
self?.showMockCredentialsSavedPopover()
684+
}
681685
}
682686

683687
fileprivate func showMockSaveCredentialsPopover() {
684688
let account = SecureVaultModels.WebsiteAccount(title: nil, username: "example-username", domain: "example.com")
685689
let mockCredentials = SecureVaultModels.WebsiteCredentials(account: account, password: "password".data(using: .utf8)!)
686690

687691
showSaveCredentialsPopover()
688-
saveCredentialsPopover.viewController.saveCredentials(mockCredentials)
692+
saveCredentialsPopover.viewController.update(credentials: mockCredentials, automaticallySaved: false)
693+
}
694+
695+
fileprivate func showMockCredentialsSavedPopover() {
696+
let account = SecureVaultModels.WebsiteAccount(title: nil, username: "example-username", domain: "example.com")
697+
let mockCredentials = SecureVaultModels.WebsiteCredentials(account: account, password: "password".data(using: .utf8)!)
698+
699+
showSaveCredentialsPopover()
700+
saveCredentialsPopover.viewController.update(credentials: mockCredentials, automaticallySaved: true)
689701
}
690702

691703
}

DuckDuckGo/Secure Vault/Extensions/UserText+PasswordManager.swift

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ import Foundation
2121
// swiftlint:disable line_length
2222
extension UserText {
2323

24+
static let pmSaveCredentialsEditableTitle = NSLocalizedString("pm.save-credentials.editable.title", value: "Save Login?", comment: "Title for the editable Save Credentials popover")
25+
static let pmSaveCredentialsNonEditableTitle = NSLocalizedString("pm.save-credentials.non-editable.title", value: "New Login Saved", comment: "Title for the non-editable Save Credentials popover")
26+
2427
static let pmEmptyStateDefaultTitle = NSLocalizedString("pm.empty.default.title", value: "No Logins or Payment Methods saved yet", comment: "Label for default empty state title")
2528
static let pmEmptyStateDefaultDescription = NSLocalizedString("pm.empty.default.description",
2629
value: "If your logins are saved in another browser, you can import them into DuckDuckGo.",

DuckDuckGo/Secure Vault/Model/PasswordManagementLoginModel.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ final class PasswordManagementLoginModel: ObservableObject, PasswordManagementIt
162162

163163
private func populateViewModelFromCredentials() {
164164
let titleString = credentials?.account.title ?? ""
165-
title = titleString.isEmpty ? normalizedDomain(credentials?.account.domain ?? "") : titleString
166165

166+
title = titleString.isEmpty ? normalizedDomain(credentials?.account.domain ?? "") : titleString
167167
username = credentials?.account.username ?? ""
168168
password = String(data: credentials?.password ?? Data(), encoding: .utf8) ?? ""
169169
domain = normalizedDomain(credentials?.account.domain ?? "")

0 commit comments

Comments
 (0)