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
|
// Copyright 2012 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/extensions/extension_uninstall_dialog.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/metrics/histogram_macros.h"
#include "base/metrics/user_metrics.h"
#include "base/metrics/user_metrics_action.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/extensions/chrome_app_icon_service.h"
#include "chrome/browser/extensions/extension_management.h"
#include "chrome/browser/extensions/extension_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/browser_navigator_params.h"
#include "chrome/grit/branded_strings.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/clear_site_data_utils.h"
#include "extensions/browser/extension_dialog_auto_confirm.h"
#include "extensions/browser/extension_registrar.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/image_loader.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_urls.h"
#include "extensions/common/manifest_handlers/icons_handler.h"
#include "extensions/common/manifest_url_handlers.h"
#include "ui/base/page_transition_types.h"
#include "ui/base/window_open_disposition.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/views/native_window_tracker.h"
#include "url/origin.h"
namespace extensions {
namespace {
constexpr int kIconSize = 64;
constexpr char16_t kExtensionRemovedError[] =
u"Extension was removed before dialog closed.";
constexpr char kReferrerId[] = "chrome-remove-extension-dialog";
float GetScaleFactor(gfx::NativeWindow window) {
const display::Screen* screen = display::Screen::GetScreen();
if (!screen) {
return 1.0; // Happens in unit_tests.
}
if (window) {
return screen->GetPreferredScaleFactorForWindow(window).value_or(1.0f);
}
return screen->GetPrimaryDisplay().device_scale_factor();
}
base::RepeatingClosure* g_on_will_show_callback = nullptr;
} // namespace
void ExtensionUninstallDialog::SetOnShownCallbackForTesting(
base::RepeatingClosure* callback) {
g_on_will_show_callback = callback;
}
ExtensionUninstallDialog::ExtensionUninstallDialog(
Profile* profile,
gfx::NativeWindow parent,
ExtensionUninstallDialog::Delegate* delegate)
: profile_(profile), parent_(parent), delegate_(delegate) {
DCHECK(delegate_);
if (parent)
parent_window_tracker_ = views::NativeWindowTracker::Create(parent);
profile_observation_.Observe(profile_.get());
}
ExtensionUninstallDialog::~ExtensionUninstallDialog() = default;
void ExtensionUninstallDialog::ConfirmUninstallByExtension(
const scoped_refptr<const Extension>& extension,
const scoped_refptr<const Extension>& triggering_extension,
UninstallReason reason,
UninstallSource source) {
triggering_extension_ = triggering_extension;
ConfirmUninstall(extension, reason, source);
}
void ExtensionUninstallDialog::ConfirmUninstall(
const scoped_refptr<const Extension>& extension,
UninstallReason reason,
UninstallSource source) {
DCHECK(thread_checker_.CalledOnValidThread());
UMA_HISTOGRAM_ENUMERATION("Extensions.UninstallSource", source,
NUM_UNINSTALL_SOURCES);
extension_ = extension;
uninstall_reason_ = reason;
if (!profile_)
return;
if (parent() && parent_window_tracker_->WasNativeWindowDestroyed()) {
OnDialogClosed(CLOSE_ACTION_CANCELED);
return;
}
ExtensionManagement* extension_management =
ExtensionManagementFactory::GetForBrowserContext(profile_);
show_report_abuse_checkbox_ =
extension_management->UpdatesFromWebstore(*extension_);
// Track that extension uninstalled externally.
registry_observation_.Observe(ExtensionRegistry::Get(profile_));
// Dialog will be shown once icon is loaded.
DCHECK(!dialog_shown_);
icon_ = ChromeAppIconService::Get(profile_)->CreateIcon(this, extension->id(),
kIconSize);
icon_->image_skia().GetRepresentation(GetScaleFactor(parent_));
}
void ExtensionUninstallDialog::OnIconUpdated(ChromeAppIcon* icon) {
// Ignore initial update.
if (!icon_ || dialog_shown_)
return;
DCHECK_EQ(icon, icon_.get());
dialog_shown_ = true;
if (parent() && parent_window_tracker_->WasNativeWindowDestroyed()) {
OnDialogClosed(CLOSE_ACTION_CANCELED);
return;
}
if (g_on_will_show_callback != nullptr) {
g_on_will_show_callback->Run();
}
switch (ScopedTestDialogAutoConfirm::GetAutoConfirmValue()) {
case ScopedTestDialogAutoConfirm::NONE:
Show();
break;
case ScopedTestDialogAutoConfirm::ACCEPT_AND_OPTION:
OnDialogClosed(CLOSE_ACTION_UNINSTALL_AND_CHECKBOX_CHECKED);
break;
case ScopedTestDialogAutoConfirm::ACCEPT:
OnDialogClosed(CLOSE_ACTION_UNINSTALL);
break;
case ScopedTestDialogAutoConfirm::CANCEL:
OnDialogClosed(CLOSE_ACTION_CANCELED);
break;
}
}
void ExtensionUninstallDialog::OnExtensionUninstalled(
content::BrowserContext* browser_context,
const Extension* extension,
UninstallReason reason) {
// Handle the case when extension was uninstalled externally and we have to
// close current dialog.
if (extension != extension_)
return;
extension_uninstalled_early_ = true;
Close();
}
void ExtensionUninstallDialog::OnProfileWillBeDestroyed(Profile* profile) {
DCHECK_EQ(profile_, profile);
profile_ = nullptr;
profile_observation_.Reset();
OnDialogClosed(CLOSE_ACTION_CANCELED);
}
bool ExtensionUninstallDialog::ShouldShowCheckbox() const {
return show_report_abuse_checkbox_;
}
void ExtensionUninstallDialog::OnDialogClosed(CloseAction action) {
// Ensure the dialog isn't notified of an uninstallation after the dialog was
// closed.
registry_observation_.Reset();
bool success = false;
std::u16string error;
switch (action) {
case CLOSE_ACTION_UNINSTALL_AND_CHECKBOX_CHECKED:
DCHECK(profile_);
success = Uninstall(&error);
base::RecordAction(base::UserMetricsAction(
"Extensions.UninstallDialogReportAbuseChecked"));
base::RecordAction(
base::UserMetricsAction("Extensions.UninstallDialogRemoveClick"));
// If the extension specifies a custom uninstall page via
// chrome.runtime.setUninstallURL, then at uninstallation its uninstall
// page opens. To ensure that the CWS Report Abuse page is the active
// tab at uninstallation, HandleReportAbuse() is called after
// Uninstall().
HandleReportAbuse();
break;
case CLOSE_ACTION_UNINSTALL:
base::RecordAction(
base::UserMetricsAction("Extensions.UninstallDialogRemoveClick"));
success = Uninstall(&error);
break;
case CLOSE_ACTION_CANCELED:
base::RecordAction(
base::UserMetricsAction("Extensions.UninstallDialogCancelClick"));
error = extension_uninstalled_early_ ? kExtensionRemovedError
: u"User canceled uninstall dialog";
break;
case CLOSE_ACTION_LAST:
NOTREACHED();
}
delegate_->OnExtensionUninstallDialogClosed(success, error);
}
bool ExtensionUninstallDialog::Uninstall(std::u16string* error) {
DCHECK(profile_);
const Extension* current_extension =
ExtensionRegistry::Get(profile_)->GetExtensionById(
extension_->id(), ExtensionRegistry::EVERYTHING);
if (current_extension) {
if (current_extension->was_installed_by_default()) {
base::RecordAction(base::UserMetricsAction(
"Extensions.RemovedDefaultInstalledExtension"));
}
return ExtensionRegistrar::Get(profile_)->UninstallExtension(
extension_->id(), uninstall_reason_, error);
}
*error = kExtensionRemovedError;
return false;
}
void ExtensionUninstallDialog::HandleReportAbuse() {
DCHECK(profile_);
NavigateParams params(
profile_,
extension_urls::GetWebstoreReportAbuseUrl(extension_->id(), kReferrerId),
ui::PAGE_TRANSITION_LINK);
params.disposition = WindowOpenDisposition::NEW_FOREGROUND_TAB;
Navigate(¶ms);
}
} // namespace extensions
|