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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'chrome://resources/cr_elements/cr_link_row/cr_link_row.js';
import 'chrome://resources/cr_elements/cr_shared_style.css.js';
import 'chrome://resources/cr_elements/cr_spinner_style.css.js';
import './shared_style.css.js';
import './prefs/pref_toggle_button.js';
import './user_utils_mixin.js';
import '/shared/settings/controls/extension_controlled_indicator.js';
import './dialogs/disconnect_cloud_authenticator_dialog.js';
import {PrefsMixin} from '/shared/settings/prefs/prefs_mixin.js';
import {HelpBubbleMixin} from 'chrome://resources/cr_components/help_bubble/help_bubble_mixin.js';
import type {CrLinkRowElement} from 'chrome://resources/cr_elements/cr_link_row/cr_link_row.js';
import type {CrToastElement} from 'chrome://resources/cr_elements/cr_toast/cr_toast.js';
import {I18nMixin} from 'chrome://resources/cr_elements/i18n_mixin.js';
import {WebUiListenerMixin} from 'chrome://resources/cr_elements/web_ui_listener_mixin.js';
import {assert, assertNotReached} from 'chrome://resources/js/assert.js';
import {loadTimeData} from 'chrome://resources/js/load_time_data.js';
import {OpenWindowProxyImpl} from 'chrome://resources/js/open_window_proxy.js';
import {PluralStringProxyImpl} from 'chrome://resources/js/plural_string_proxy.js';
import type {DomRepeatEvent} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
// <if expr="is_win or is_macosx">
import {PasskeysBrowserProxyImpl} from './passkeys_browser_proxy.js';
// </if>
import type {BlockedSite, BlockedSitesListChangedListener, CredentialsChangedListener} from './password_manager_proxy.js';
import {PasswordManagerImpl} from './password_manager_proxy.js';
import type {PrefToggleButtonElement} from './prefs/pref_toggle_button.js';
import type {Route} from './router.js';
import {RouteObserverMixin, Router, UrlParam} from './router.js';
import {getTemplate} from './settings_section.html.js';
import {BatchUploadPasswordsEntryPoint, SyncBrowserProxyImpl, TrustedVaultBannerState} from './sync_browser_proxy.js';
import {UserUtilMixin} from './user_utils_mixin.js';
export interface SettingsSectionElement {
$: {
accountStorageToggle: PrefToggleButtonElement,
autosigninToggle: PrefToggleButtonElement,
blockedSitesList: HTMLElement,
passkeyUpgradeToggle: PrefToggleButtonElement,
passwordToggle: PrefToggleButtonElement,
toast: CrToastElement,
trustedVaultBanner: CrLinkRowElement,
};
}
const PASSWORD_MANAGER_ADD_SHORTCUT_ELEMENT_ID =
'PasswordManagerUI::kAddShortcutElementId';
const PASSWORD_MANAGER_ADD_SHORTCUT_CUSTOM_EVENT_ID =
'PasswordManagerUI::kAddShortcutCustomEventId';
export const PASSWORD_MANAGER_ACCOUNT_STORE_TOGGLE_ELEMENT_ID =
'PasswordManagerUI::kAccountStoreToggleElementId';
const SettingsSectionElementBase = HelpBubbleMixin(RouteObserverMixin(
PrefsMixin(UserUtilMixin(WebUiListenerMixin(I18nMixin(PolymerElement))))));
export class SettingsSectionElement extends SettingsSectionElementBase {
static get is() {
return 'settings-section';
}
static get template() {
return getTemplate();
}
static get properties() {
return {
/** An array of blocked sites to display. */
blockedSites_: {
type: Array,
value: () => [],
},
// <if expr="is_win or is_macosx or is_chromeos">
isBiometricAuthenticationForFillingToggleVisible_: {
type: Boolean,
value() {
return loadTimeData.getBoolean(
'biometricAuthenticationForFillingToggleVisible');
},
},
// </if>
isPasskeyUpgradeSettingsToggleVisible_: {
type: Boolean,
value() {
return loadTimeData.getBoolean('passkeyUpgradeSettingsToggleVisible');
},
},
hasPasswordsToExport_: {
type: Boolean,
value: false,
},
hasPasskeys_: {
type: Boolean,
value: false,
},
passwordManagerDisabled_: {
type: Boolean,
computed: 'computePasswordManagerDisabled_(' +
'prefs.credentials_enable_service.enforcement, ' +
'prefs.credentials_enable_service.value)',
},
/** The visibility state of the trusted vault banner. */
trustedVaultBannerState_: {
type: Object,
value: TrustedVaultBannerState.NOT_SHOWN,
},
movePasswordsLabel_: {
type: String,
value: '',
},
canAddShortcut_: {
type: Boolean,
value() {
return loadTimeData.getBoolean('canAddShortcut');
},
},
isPasswordManagerPinAvailable_: {
type: Boolean,
value: false,
},
isConnectedToCloudAuthenticator_: {
type: Boolean,
value: false,
},
isDisconnectCloudAuthenticatorInProgress_: {
type: Boolean,
value: false,
},
toastMessage_: {
type: String,
value: '',
},
showDisconnectCloudAuthenticatorDialog_: {
type: Boolean,
value: false,
},
localPasswordCount_: {
type: Number,
value: 0,
},
};
}
static get observers() {
return [
'updateIsPasswordManagerPinAvailable_(' +
'isSyncingPasswords, isAccountStoreUser)',
'updateIsCloudAuthenticatorConnected_(' +
'isSyncingPasswords, isAccountStoreUser)',
];
}
declare private blockedSites_: BlockedSite[];
// <if expr="is_win or is_macosx or is_chromeos">
declare private isBiometricAuthenticationForFillingToggleVisible_: boolean;
// </if>
declare private hasPasskeys_: boolean;
declare private passwordManagerDisabled_: boolean;
declare private hasPasswordsToExport_: boolean;
declare private isPasskeyUpgradeSettingsToggleVisible_: boolean;
declare private canAddShortcut_: boolean;
declare private trustedVaultBannerState_: TrustedVaultBannerState;
declare private movePasswordsLabel_: string;
declare private isPasswordManagerPinAvailable_: boolean;
declare private isConnectedToCloudAuthenticator_: boolean;
declare private isDisconnectCloudAuthenticatorInProgress_: boolean;
declare private toastMessage_: string;
declare private showDisconnectCloudAuthenticatorDialog_: boolean;
// This variable depend on the sync service API, which the Batch Upload Dialog
// uses.
declare private localPasswordCount_: number;
private setBlockedSitesListListener_: BlockedSitesListChangedListener|null =
null;
private setCredentialsChangedListener_: CredentialsChangedListener|null =
null;
override ready() {
super.ready();
chrome.metricsPrivate.recordBoolean(
'PasswordManager.OpenedAsShortcut',
window.matchMedia('(display-mode: standalone)').matches);
}
override connectedCallback() {
super.connectedCallback();
const updateLocalPasswordCount = (localPasswordCount: number) => {
this.updateLocalPasswordCount_(localPasswordCount);
};
const syncBrowserProxy = SyncBrowserProxyImpl.getInstance();
syncBrowserProxy.getLocalPasswordCount().then(updateLocalPasswordCount);
this.setBlockedSitesListListener_ = blockedSites => {
this.blockedSites_ = blockedSites;
};
PasswordManagerImpl.getInstance().getBlockedSitesList().then(
blockedSites => this.blockedSites_ = blockedSites);
PasswordManagerImpl.getInstance().addBlockedSitesListChangedListener(
this.setBlockedSitesListListener_);
this.addWebUiListener(
'sync-service-local-password-count', updateLocalPasswordCount);
this.setCredentialsChangedListener_ =
(passwords: chrome.passwordsPrivate.PasswordUiEntry[]) => {
this.hasPasswordsToExport_ = passwords.length > 0;
// Update the local password count based on the SyncService API
// whenever the password list was modified.
syncBrowserProxy.getLocalPasswordCount().then(
(localPasswordCount: number) => {
this.updateLocalPasswordCount_(localPasswordCount);
});
};
PasswordManagerImpl.getInstance().getSavedPasswordList().then(
this.setCredentialsChangedListener_);
PasswordManagerImpl.getInstance().addSavedPasswordListChangedListener(
this.setCredentialsChangedListener_);
const trustedVaultStateChanged = (state: TrustedVaultBannerState) => {
this.trustedVaultBannerState_ = state;
};
syncBrowserProxy.getTrustedVaultBannerState().then(
trustedVaultStateChanged);
this.addWebUiListener(
'trusted-vault-banner-state-changed', trustedVaultStateChanged);
// TODO(crbug.com/331611435): add listener for enclave availability and
// trigger `updateIsPasswordManagerPinAvailable_`.
this.updateIsPasswordManagerPinAvailable_();
// Checks if the Chrome client is connected to / registered with the
// Cloud Authenticator. If the client is connected, then a button to
// disconnect the client is displayed.
this.updateIsCloudAuthenticatorConnected_();
// <if expr="is_win or is_macosx">
PasskeysBrowserProxyImpl.getInstance().hasPasskeys().then(hasPasskeys => {
this.hasPasskeys_ = hasPasskeys;
});
// </if>
const accountStorageToggleRoot = this.$.accountStorageToggle.shadowRoot;
this.registerHelpBubble(
PASSWORD_MANAGER_ACCOUNT_STORE_TOGGLE_ELEMENT_ID,
accountStorageToggleRoot!.querySelector('#control')!);
}
override disconnectedCallback() {
super.disconnectedCallback();
assert(this.setBlockedSitesListListener_);
PasswordManagerImpl.getInstance().removeBlockedSitesListChangedListener(
this.setBlockedSitesListListener_);
this.setBlockedSitesListListener_ = null;
assert(this.setCredentialsChangedListener_);
PasswordManagerImpl.getInstance().removeSavedPasswordListChangedListener(
this.setCredentialsChangedListener_);
this.setCredentialsChangedListener_ = null;
this.$.toast.hide();
}
override currentRouteChanged(route: Route): void {
const triggerImportParam =
route.queryParameters.get(UrlParam.START_IMPORT) || '';
if (triggerImportParam === 'true') {
const importer = this.shadowRoot!.querySelector('passwords-importer');
assert(importer);
importer.launchImport();
const params = new URLSearchParams();
Router.getInstance().updateRouterParams(params);
}
}
private onShortcutBannerDomChanged_() {
const addShortcutBanner = this.root!.querySelector('#addShortcutBanner');
if (addShortcutBanner) {
this.registerHelpBubble(
PASSWORD_MANAGER_ADD_SHORTCUT_ELEMENT_ID, addShortcutBanner);
}
}
private onAddShortcutClick_() {
this.notifyHelpBubbleAnchorCustomEvent(
PASSWORD_MANAGER_ADD_SHORTCUT_ELEMENT_ID,
PASSWORD_MANAGER_ADD_SHORTCUT_CUSTOM_EVENT_ID,
);
// TODO(crbug.com/40236982): Record metrics on all entry points usage.
// TODO(crbug.com/40236982): Hide the button for users after the shortcut is
// installed.
PasswordManagerImpl.getInstance().showAddShortcutDialog();
}
/**
* Fires an event that should delete the blocked password entry.
*/
private onRemoveBlockedSiteClick_(
event: DomRepeatEvent<chrome.passwordsPrivate.ExceptionEntry>) {
PasswordManagerImpl.getInstance().removeBlockedSite(event.model.item.id);
}
// <if expr="is_win or is_macosx or is_chromeos">
private switchBiometricAuthBeforeFillingState_(e: Event) {
const biometricAuthenticationForFillingToggle =
e.target as PrefToggleButtonElement;
assert(biometricAuthenticationForFillingToggle);
PasswordManagerImpl.getInstance().switchBiometricAuthBeforeFillingState();
}
// </if>
private onTrustedVaultBannerClick_() {
switch (this.trustedVaultBannerState_) {
case TrustedVaultBannerState.OPTED_IN:
OpenWindowProxyImpl.getInstance().openUrl(
loadTimeData.getString('trustedVaultLearnMoreUrl'));
break;
case TrustedVaultBannerState.OFFER_OPT_IN:
OpenWindowProxyImpl.getInstance().openUrl(
loadTimeData.getString('trustedVaultOptInUrl'));
break;
case TrustedVaultBannerState.NOT_SHOWN:
default:
assertNotReached();
}
}
private getTrustedVaultBannerTitle_(): string {
switch (this.trustedVaultBannerState_) {
case TrustedVaultBannerState.OPTED_IN:
return this.i18n('trustedVaultBannerLabelOptedIn');
case TrustedVaultBannerState.OFFER_OPT_IN:
return this.i18n('trustedVaultBannerLabelOfferOptIn');
case TrustedVaultBannerState.NOT_SHOWN:
return '';
default:
assertNotReached();
}
}
private getTrustedVaultBannerDescription_(): string {
switch (this.trustedVaultBannerState_) {
case TrustedVaultBannerState.OPTED_IN:
return this.i18n('trustedVaultBannerSubLabelOptedIn');
case TrustedVaultBannerState.OFFER_OPT_IN:
return this.i18n('trustedVaultBannerSubLabelOfferOptIn');
case TrustedVaultBannerState.NOT_SHOWN:
return '';
default:
assertNotReached();
}
}
private shouldHideTrustedVaultBanner_(): boolean {
return this.trustedVaultBannerState_ === TrustedVaultBannerState.NOT_SHOWN;
}
private getAriaLabelForBlockedSite_(
blockedSite: chrome.passwordsPrivate.ExceptionEntry): string {
return this.i18n('removeBlockedAriaDescription', blockedSite.urls.shown);
}
private changeAccountStorageEnabled_() {
if (this.isAccountStorageEnabled) {
this.disableAccountStorage();
} else {
this.enableAccountStorage();
}
}
private getAccountStorageSubLabel_(accountEmail: string): string {
return this.i18n('accountStorageToggleSubLabel', accountEmail);
}
// <if expr="is_win or is_macosx">
private onManagePasskeysClick_() {
PasskeysBrowserProxyImpl.getInstance().managePasskeys();
}
// </if>
private computePasswordManagerDisabled_(): boolean {
const pref = this.getPref('credentials_enable_service');
const isPolicyEnforced =
pref.enforcement === chrome.settingsPrivate.Enforcement.ENFORCED;
const isPolicyControlledByExtension =
pref.controlledBy === chrome.settingsPrivate.ControlledBy.EXTENSION;
if (isPolicyControlledByExtension) {
return false;
}
return !pref.value && isPolicyEnforced;
}
private onMovePasswordsClicked_(e: Event) {
e.preventDefault();
SyncBrowserProxyImpl.getInstance().openBatchUpload(
BatchUploadPasswordsEntryPoint.PASSWORD_MANAGER);
}
private shouldShowMovePasswordsEntry_(): boolean {
// Only show the move password entry if there are passwords returned from
// the sync service API. This is needed to be consistent with the
// availability of data in the dialog which uses the same API.
return this.localPasswordCount_ > 0;
}
private getAriaLabelMovePasswordsButton_(): string {
return [
this.movePasswordsLabel_,
this.i18n('movePasswordsInSettingsSubLabel'),
this.i18n('moveSinglePasswordButton'),
].join('. ');
}
// This updates the local password count coming from the Sync Service API.
private async updateLocalPasswordCount_(localPasswordCount: number) {
this.localPasswordCount_ = localPasswordCount;
this.movePasswordsLabel_ =
await PluralStringProxyImpl.getInstance().getPluralString(
'deviceOnlyPasswordsIconTooltip', this.localPasswordCount_);
}
private updateIsPasswordManagerPinAvailable_() {
PasswordManagerImpl.getInstance().isPasswordManagerPinAvailable().then(
available => this.isPasswordManagerPinAvailable_ =
available && (this.isSyncingPasswords || this.isAccountStoreUser));
}
private onChangePasswordManagerPinRowClick_() {
PasswordManagerImpl.getInstance().changePasswordManagerPin().then(
this.showToastForPasswordChange_.bind(this));
}
private updateIsCloudAuthenticatorConnected_() {
PasswordManagerImpl.getInstance().isConnectedToCloudAuthenticator().then(
connected => this.isConnectedToCloudAuthenticator_ =
connected && (this.isSyncingPasswords || this.isAccountStoreUser));
}
private onDisconnectCloudAuthenticatorClick_() {
this.showDisconnectCloudAuthenticatorDialog_ = true;
}
private onCloseDisconnectCloudAuthenticatorDialog_(): void {
this.showDisconnectCloudAuthenticatorDialog_ = false;
}
private onDisconnectCloudAuthenticator_(e: CustomEvent): void {
this.isDisconnectCloudAuthenticatorInProgress_ = false;
this.updateIsCloudAuthenticatorConnected_();
this.updateIsPasswordManagerPinAvailable_();
if (e.detail.success) {
this.showToastForCloudAuthenticatorDisconnected_();
}
}
private showToastForCloudAuthenticatorDisconnected_(): void {
this.toastMessage_ = this.i18n('disconnectCloudAuthenticatorToastMessage');
this.$.toast.show();
}
private getAriaLabelForCloudAuthenticatorButton_(): string {
return [
this.i18n('disconnectCloudAuthenticatorTitle'),
this.i18n('disconnectCloudAuthenticatorDescription'),
].join('. ');
}
private showToastForPasswordChange_(success: boolean): void {
if (!success) {
return;
}
this.toastMessage_ = this.i18n('passwordManagerPinChanged');
this.$.toast.show();
}
}
declare global {
interface HTMLElementTagNameMap {
'settings-section': SettingsSectionElement;
}
}
customElements.define(SettingsSectionElement.is, SettingsSectionElement);
|