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
|
// Copyright 2021 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/autofill/android/save_update_address_profile_message_controller.h"
#include <optional>
#include <utility>
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/android/android_theme_resources.h"
#include "chrome/browser/android/resource_mapper.h"
#include "chrome/browser/autofill/ui/ui_util.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/grit/generated_resources.h"
#include "components/autofill/core/browser/foundations/autofill_client.h"
#include "components/autofill/core/browser/ui/addresses/autofill_address_util.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/messages/android/message_dispatcher_bridge.h"
#include "components/signin/public/base/consent_level.h"
#include "components/signin/public/identity_manager/identity_manager.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
namespace autofill {
SaveUpdateAddressProfileMessageController::
SaveUpdateAddressProfileMessageController() = default;
SaveUpdateAddressProfileMessageController::
~SaveUpdateAddressProfileMessageController() {
DismissMessage();
}
void SaveUpdateAddressProfileMessageController::DisplayMessage(
content::WebContents* web_contents,
const AutofillProfile& profile,
const AutofillProfile* original_profile,
bool is_migration_to_account,
AutofillClient::AddressProfileSavePromptCallback
save_address_profile_callback,
PrimaryActionCallback primary_action_callback) {
DCHECK(web_contents);
DCHECK(save_address_profile_callback);
DCHECK(primary_action_callback);
// Dismiss previous message if it is displayed.
DismissMessage();
DCHECK(!message_);
web_contents_ = web_contents;
profile_ = profile;
original_profile_ = original_profile;
is_migration_to_account_ = is_migration_to_account;
save_address_profile_callback_ = std::move(save_address_profile_callback);
primary_action_callback_ = std::move(primary_action_callback);
// Binding with base::Unretained(this) is safe here because
// SaveUpdateAddressProfileMessageController owns message_. Callbacks won't be
// called after the current object is destroyed.
message_ = std::make_unique<messages::MessageWrapper>(
messages::MessageIdentifier::SAVE_ADDRESS_PROFILE,
base::BindOnce(
&SaveUpdateAddressProfileMessageController::OnPrimaryAction,
base::Unretained(this)),
base::BindOnce(
&SaveUpdateAddressProfileMessageController::OnMessageDismissed,
base::Unretained(this)));
message_->SetTitle(GetTitle());
message_->SetDescription(GetDescription());
message_->SetDescriptionMaxLines(kDescriptionMaxLines);
message_->SetPrimaryButtonText(GetPrimaryButtonText());
message_->SetPrimaryButtonTextMaxLines(1);
message_->SetIconResourceId(ResourceMapper::MapToJavaDrawableId(
is_migration_to_account ? IDR_ANDROID_AUTOFILL_UPLOAD_ADDRESS
: IDR_ANDROID_AUTOFILL_ADDRESS));
messages::MessageDispatcherBridge::Get()->EnqueueMessage(
message_.get(), web_contents, messages::MessageScopeType::WEB_CONTENTS,
messages::MessagePriority::kNormal);
}
bool SaveUpdateAddressProfileMessageController::IsMessageDisplayed() {
return !!message_;
}
void SaveUpdateAddressProfileMessageController::OnPrimaryAction() {
std::move(primary_action_callback_)
.Run(web_contents_.get(), *profile_, original_profile_.get(),
is_migration_to_account_, std::move(save_address_profile_callback_));
}
void SaveUpdateAddressProfileMessageController::OnMessageDismissed(
messages::DismissReason dismiss_reason) {
switch (dismiss_reason) {
case messages::DismissReason::PRIMARY_ACTION:
case messages::DismissReason::SECONDARY_ACTION:
// Primary action is handled separately, no secondary action.
break;
case messages::DismissReason::GESTURE:
// User explicitly dismissed the message.
RunSaveAddressProfileCallback(
AutofillClient::AddressPromptUserDecision::kMessageDeclined);
break;
case messages::DismissReason::TIMER:
// The message was auto-dismissed after a timeout.
RunSaveAddressProfileCallback(
AutofillClient::AddressPromptUserDecision::kMessageTimeout);
break;
default:
// Dismissal for any other reason.
RunSaveAddressProfileCallback(
AutofillClient::AddressPromptUserDecision::kIgnored);
break;
}
// Clean the state, message is no longer shown.
message_.reset();
web_contents_ = nullptr;
}
void SaveUpdateAddressProfileMessageController::DismissMessageForTest(
messages::DismissReason reason) {
if (message_) {
messages::MessageDispatcherBridge::Get()->DismissMessage(message_.get(),
reason);
}
}
void SaveUpdateAddressProfileMessageController::DismissMessage() {
if (message_) {
messages::MessageDispatcherBridge::Get()->DismissMessage(
message_.get(), messages::DismissReason::UNKNOWN);
}
}
void SaveUpdateAddressProfileMessageController::RunSaveAddressProfileCallback(
AutofillClient::AddressPromptUserDecision decision) {
std::move(save_address_profile_callback_).Run(decision, std::nullopt);
primary_action_callback_.Reset();
}
std::u16string SaveUpdateAddressProfileMessageController::GetTitle() {
if (original_profile_) {
return l10n_util::GetStringUTF16(IDS_AUTOFILL_UPDATE_ADDRESS_PROMPT_TITLE);
}
if (is_migration_to_account_) {
return l10n_util::GetStringUTF16(
IDS_AUTOFILL_ACCOUNT_MIGRATE_ADDRESS_PROMPT_TITLE);
}
return l10n_util::GetStringUTF16(IDS_AUTOFILL_SAVE_ADDRESS_PROMPT_TITLE);
}
std::u16string SaveUpdateAddressProfileMessageController::GetDescription() {
if (original_profile_) {
// Return description without source notice for profile update.
return GetProfileDescription(*original_profile_,
g_browser_process->GetApplicationLocale(),
/*include_address_and_contacts=*/true);
}
if (is_migration_to_account_ || profile_->IsAccountProfile()) {
return GetRecordTypeNotice();
}
// Address profile won't be saved to Google Account when user is not logged
// in.
return GetProfileDescription(*profile_,
g_browser_process->GetApplicationLocale(),
/*include_address_and_contacts=*/true);
}
std::u16string
SaveUpdateAddressProfileMessageController::GetRecordTypeNotice() {
std::optional<AccountInfo> account = GetPrimaryAccountInfoFromBrowserContext(
web_contents_->GetBrowserContext());
if (!account) {
return std::u16string();
}
return is_migration_to_account_
? l10n_util::GetStringUTF16(
IDS_AUTOFILL_SAVE_IN_ACCOUNT_MESSAGE_ADDRESS_MIGRATION_RECORD_TYPE_NOTICE)
: l10n_util::GetStringFUTF16(
IDS_AUTOFILL_SAVE_IN_ACCOUNT_MESSAGE_ADDRESS_RECORD_TYPE_NOTICE,
base::UTF8ToUTF16(account->email));
}
std::u16string
SaveUpdateAddressProfileMessageController::GetPrimaryButtonText() {
return l10n_util::GetStringUTF16(
original_profile_ ? IDS_AUTOFILL_UPDATE_ADDRESS_PROMPT_OK_BUTTON_LABEL
: IDS_AUTOFILL_SAVE_ADDRESS_PROMPT_OK_BUTTON_LABEL);
}
} // namespace autofill
|