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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/profiles/profile_picker_turn_sync_on_delegate.h"
#include <optional>
#include "base/debug/dump_without_crashing.h"
#include "base/feature_list.h"
#include "base/logging.h"
#include "chrome/browser/enterprise/util/managed_browser_utils.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/signin_util.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "chrome/browser/ui/profiles/profile_picker.h"
#include "chrome/browser/ui/views/profiles/profile_management_types.h"
#include "chrome/browser/ui/webui/signin/login_ui_service.h"
#include "chrome/browser/ui/webui/signin/login_ui_service_factory.h"
#include "chrome/browser/ui/webui/signin/signin_ui_error.h"
#include "chrome/browser/ui/webui/signin/signin_utils.h"
#include "chrome/common/webui_url_constants.h"
namespace {
std::optional<ProfileMetrics::ProfileSignedInFlowOutcome> GetSyncOutcome(
bool enterprise_account,
bool sync_disabled,
LoginUIService::SyncConfirmationUIClosedResult result) {
// The decision of the user is not relevant for the metric.
if (sync_disabled) {
return ProfileMetrics::ProfileSignedInFlowOutcome::kEnterpriseSyncDisabled;
}
switch (result) {
case LoginUIService::SYNC_WITH_DEFAULT_SETTINGS:
return enterprise_account
? ProfileMetrics::ProfileSignedInFlowOutcome::kEnterpriseSync
: ProfileMetrics::ProfileSignedInFlowOutcome::kConsumerSync;
case LoginUIService::CONFIGURE_SYNC_FIRST:
return enterprise_account ? ProfileMetrics::ProfileSignedInFlowOutcome::
kEnterpriseSyncSettings
: ProfileMetrics::ProfileSignedInFlowOutcome::
kConsumerSyncSettings;
case LoginUIService::ABORT_SYNC:
return enterprise_account ? ProfileMetrics::ProfileSignedInFlowOutcome::
kEnterpriseSigninOnly
: ProfileMetrics::ProfileSignedInFlowOutcome::
kConsumerSigninOnly;
case LoginUIService::UI_CLOSED:
// The metric is recorded elsewhere.
return std::nullopt;
}
}
void OpenSettingsInBrowser(Browser* browser) {
if (!browser) {
// TODO(crbug.com/40242414): Make sure we do something or log an error if
// opening a browser window was not possible.
base::debug::DumpWithoutCrashing();
return;
}
chrome::ShowSettingsSubPage(browser, chrome::kSyncSetupSubPage);
}
} // namespace
ProfilePickerTurnSyncOnDelegate::ProfilePickerTurnSyncOnDelegate(
base::WeakPtr<ProfilePickerSignedInFlowController> controller,
Profile* profile)
: controller_(controller), profile_(profile) {}
ProfilePickerTurnSyncOnDelegate::~ProfilePickerTurnSyncOnDelegate() = default;
void ProfilePickerTurnSyncOnDelegate::ShowLoginError(
const SigninUIError& error) {
LogOutcome(ProfileMetrics::ProfileSignedInFlowOutcome::kLoginError);
// If the controller is null we cannot treat the error.
if (!controller_) {
return;
}
// Show the profile switch confirmation screen inside of the profile picker if
// the user cannot sign in because the account already used by another
// profile.
if (error.type() ==
SigninUIError::Type::kAccountAlreadyUsedByAnotherProfile) {
controller_->SwitchToProfileSwitch(error.another_profile_path());
return;
}
// Abort the flow completely and reset the host in case of ForceSignin if the
// user is not allowed to sign in by policy with this account. In
// non-ForceSignin, the user can still browse and be signed in but cannot
// enable sync.
if (signin_util::IsForceSigninEnabled() &&
error.type() ==
SigninUIError::Type::kUsernameNotAllowedByPatternFromPrefs) {
controller_->ResetHostAndShowErrorDialog(
ForceSigninUIError::SigninPatternNotMatching(
base::UTF16ToUTF8(error.email())));
return;
}
// Open the browser and when it's done, show the login error.
controller_->FinishAndOpenBrowser(PostHostClearedCallback(base::BindOnce(
&TurnSyncOnHelper::Delegate::ShowLoginErrorForBrowser, error)));
}
void ProfilePickerTurnSyncOnDelegate::ShowMergeSyncDataConfirmation(
const std::string& previous_email,
const std::string& new_email,
signin::SigninChoiceCallback callback) {
// A brand new profile cannot have a conflict in sync accounts.
NOTREACHED();
}
void ProfilePickerTurnSyncOnDelegate::ShowEnterpriseAccountConfirmation(
const AccountInfo& account_info,
signin::SigninChoiceCallback callback) {
enterprise_account_ = true;
// In this flow, the enterprise confirmation is replaced by an enterprise
// notice screen. Knowing if sync is enabled is needed for the screen. Thus,
// it is delayed until either ShowSyncConfirmation() or
// ShowSyncDisabledConfirmation() gets called.
// Assume an implicit "Continue" here.
std::move(callback).Run(signin::SIGNIN_CHOICE_CONTINUE);
return;
}
void ProfilePickerTurnSyncOnDelegate::ShowSyncConfirmation(
base::OnceCallback<void(LoginUIService::SyncConfirmationUIClosedResult)>
callback) {
DCHECK(callback);
sync_confirmation_callback_ = std::move(callback);
if (enterprise_account_) {
// First show the notice screen and only after that (if the user proceeds
// with the flow) the sync consent.
ShowManagedUserNotice(
ManagedUserProfileNoticeUI::ScreenType::kEntepriseAccountSyncEnabled);
return;
}
ShowSyncConfirmationScreen();
}
void ProfilePickerTurnSyncOnDelegate::ShowSyncDisabledConfirmation(
bool is_managed_account,
base::OnceCallback<void(LoginUIService::SyncConfirmationUIClosedResult)>
callback) {
DCHECK(callback);
sync_disabled_ = true;
sync_confirmation_callback_ = std::move(callback);
ShowManagedUserNotice(is_managed_account
? ManagedUserProfileNoticeUI::ScreenType::
kEntepriseAccountSyncDisabled
: ManagedUserProfileNoticeUI::ScreenType::
kConsumerAccountSyncDisabled);
}
void ProfilePickerTurnSyncOnDelegate::ShowSyncSettings() {
// Open the browser and when it's done, open settings in the browser.
if (controller_) {
controller_->FinishAndOpenBrowser(
PostHostClearedCallback(base::BindOnce(&OpenSettingsInBrowser)));
}
}
void ProfilePickerTurnSyncOnDelegate::SwitchToProfile(Profile* new_profile) {
// A brand new profile cannot have preexisting syncable data and thus
// switching to another profile does never get offered.
NOTREACHED();
}
void ProfilePickerTurnSyncOnDelegate::OnSyncConfirmationUIClosed(
LoginUIService::SyncConfirmationUIClosedResult result) {
// No need to listen to further confirmations any more.
DCHECK(scoped_login_ui_service_observation_.IsObservingSource(
LoginUIServiceFactory::GetForProfile(profile_)));
scoped_login_ui_service_observation_.Reset();
// If the user declines enabling sync while browser sign-in is forced, prevent
// them from going further by cancelling the creation of this profile.
// It does not apply to managed accounts.
// TODO(crbug.com/40280466): Align Managed and Consumer accounts.
if (signin_util::IsForceSigninEnabled() &&
!enterprise_util::ProfileCanBeManaged(profile_) &&
result == LoginUIService::SyncConfirmationUIClosedResult::ABORT_SYNC) {
HandleCancelSigninChoice(
ProfileMetrics::ProfileSignedInFlowOutcome::kForceSigninSyncNotGranted);
return;
}
std::optional<ProfileMetrics::ProfileSignedInFlowOutcome> outcome =
GetSyncOutcome(enterprise_account_, sync_disabled_, result);
if (outcome) {
LogOutcome(*outcome);
}
FinishSyncConfirmation(result);
}
void ProfilePickerTurnSyncOnDelegate::ShowSyncConfirmationScreen() {
DCHECK(sync_confirmation_callback_);
DCHECK(!scoped_login_ui_service_observation_.IsObserving());
scoped_login_ui_service_observation_.Observe(
LoginUIServiceFactory::GetForProfile(profile_));
if (controller_) {
controller_->SwitchToSyncConfirmation();
}
}
void ProfilePickerTurnSyncOnDelegate::FinishSyncConfirmation(
LoginUIService::SyncConfirmationUIClosedResult result) {
DCHECK(sync_confirmation_callback_);
std::move(sync_confirmation_callback_).Run(result);
}
void ProfilePickerTurnSyncOnDelegate::ShowManagedUserNotice(
ManagedUserProfileNoticeUI::ScreenType type) {
DCHECK(sync_confirmation_callback_);
// Unretained as the delegate lives until `sync_confirmation_callback_` gets
// called and thus always outlives the notice screen.
if (controller_) {
controller_->SwitchToManagedUserProfileNotice(
type, base::BindOnce(
&ProfilePickerTurnSyncOnDelegate::OnManagedUserNoticeClosed,
base::Unretained(this), type));
}
}
void ProfilePickerTurnSyncOnDelegate::HandleCancelSigninChoice(
ProfileMetrics::ProfileSignedInFlowOutcome outcome) {
LogOutcome(outcome);
// The callback provided by TurnSyncOnHelper must be called, UI_CLOSED
// makes sure the final callback does not get called. It does not matter
// what happens to sync as the signed-in profile creation gets cancelled
// right after.
FinishSyncConfirmation(LoginUIService::UI_CLOSED);
ProfilePicker::CancelSignedInFlow();
}
void ProfilePickerTurnSyncOnDelegate::OnManagedUserNoticeClosed(
ManagedUserProfileNoticeUI::ScreenType type,
signin::SigninChoice choice) {
if (choice == signin::SIGNIN_CHOICE_CANCEL) {
// Enforce that the account declined the enterprise management. This value
// could have been set as a result of
// `ProfilePickerTurnSyncOnDelegate::ShowEnterpriseAccountConfirmation()`
// continuing by default prior in the flow.
signin::ClearProfileWithManagedAccounts(profile_);
HandleCancelSigninChoice(ProfileMetrics::ProfileSignedInFlowOutcome::
kAbortedOnEnterpriseWelcome);
return;
}
// For the Profile Picker flows, the profile should always be new. Other flows
// also handle whether data from the existing profile should be merged.
DCHECK_EQ(choice, signin::SIGNIN_CHOICE_NEW_PROFILE);
switch (type) {
case ManagedUserProfileNoticeUI::ScreenType::kEntepriseAccountSyncEnabled:
ShowSyncConfirmationScreen();
return;
case ManagedUserProfileNoticeUI::ScreenType::kEntepriseAccountSyncDisabled:
case ManagedUserProfileNoticeUI::ScreenType::kConsumerAccountSyncDisabled:
// Logging kEnterpriseSyncDisabled for consumer accounts on managed
// devices is a pre-existing minor imprecision in reporting of this metric
// that's not worth fixing.
LogOutcome(
ProfileMetrics::ProfileSignedInFlowOutcome::kEnterpriseSyncDisabled);
// SYNC_WITH_DEFAULT_SETTINGS encodes that the user wants to continue
// (despite sync being disabled).
// TODO (crbug.com/1141341): Split the enum for sync disabled / rename the
// entries to better match the situation.
FinishSyncConfirmation(LoginUIService::SYNC_WITH_DEFAULT_SETTINGS);
break;
case ManagedUserProfileNoticeUI::ScreenType::kEnterpriseOIDC:
case ManagedUserProfileNoticeUI::ScreenType::kEnterpriseAccountCreation:
NOTREACHED() << "The profile picker should not show a managed user "
"notice that prompts for profile creation";
}
}
void ProfilePickerTurnSyncOnDelegate::LogOutcome(
ProfileMetrics::ProfileSignedInFlowOutcome outcome) {
ProfileMetrics::LogProfileAddSignInFlowOutcome(outcome);
}
|