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
|
// 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/ui/views/safe_browsing/tailored_security_unconsented_modal.h"
#include "base/metrics/histogram_functions.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "chrome/browser/ui/views/chrome_layout_provider.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
#include "components/constrained_window/constrained_window_views.h"
#include "components/safe_browsing/core/browser/tailored_security_service/tailored_security_outcome.h"
#include "components/safe_browsing/core/common/features.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/signin/public/identity_manager/identity_manager.h"
#include "content/public/browser/web_contents.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/models/image_model.h"
#include "ui/base/mojom/dialog_button.mojom.h"
#include "ui/base/mojom/ui_base_types.mojom-shared.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/image/canvas_image_source.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/views/bubble/bubble_frame_view.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/layout_provider.h"
namespace safe_browsing {
namespace {
constexpr int kAvatarOffset = 45;
constexpr int kImageOffset = 5;
void RecordModalOutcomeAndRunCallback(TailoredSecurityOutcome outcome,
base::OnceClosure callback) {
base::UmaHistogramEnumeration(
"SafeBrowsing.TailoredSecurityUnconsentedModalOutcome", outcome);
std::move(callback).Run();
}
void EnableEsbAndShowSettings(content::WebContents* web_contents) {
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
SetSafeBrowsingState(profile->GetPrefs(),
SafeBrowsingState::ENHANCED_PROTECTION,
/*is_esb_enabled_by_account_integration=*/false);
if (!chrome::FindBrowserWithTab(web_contents)) {
return;
}
chrome::ShowSafeBrowsingEnhancedProtection(
chrome::FindBrowserWithTab(web_contents));
}
class SuperimposedOffsetImageSource : public gfx::CanvasImageSource {
public:
SuperimposedOffsetImageSource(const gfx::ImageSkia& first,
const gfx::ImageSkia& second)
: gfx::CanvasImageSource(gfx::Size(first.size().width(),
first.size().height() + kImageOffset)),
first_(first),
second_(second) {}
SuperimposedOffsetImageSource(const SuperimposedOffsetImageSource&) = delete;
SuperimposedOffsetImageSource& operator=(
const SuperimposedOffsetImageSource&) = delete;
~SuperimposedOffsetImageSource() override = default;
// gfx::CanvasImageSource override.
void Draw(gfx::Canvas* canvas) override {
canvas->DrawImageInt(first_, 0, kImageOffset);
canvas->DrawImageInt(second_, kAvatarOffset, kAvatarOffset + kImageOffset);
}
private:
const gfx::ImageSkia first_;
const gfx::ImageSkia second_;
};
} // namespace
/*static*/
void TailoredSecurityUnconsentedModal::ShowForWebContents(
content::WebContents* web_contents) {
constrained_window::ShowWebModalDialogViews(
new TailoredSecurityUnconsentedModal(web_contents), web_contents);
}
TailoredSecurityUnconsentedModal::TailoredSecurityUnconsentedModal(
content::WebContents* web_contents)
: web_contents_(web_contents) {
SetModalType(ui::mojom::ModalType::kChild);
SetTitle(IDS_TAILORED_SECURITY_UNCONSENTED_MODAL_TITLE);
auto* bodyLabel = AddChildView(std::make_unique<views::Label>(
l10n_util::GetStringUTF16(IDS_TAILORED_SECURITY_UNCONSENTED_MODAL_BODY)));
bodyLabel->SetMultiLine(true);
bodyLabel->SetHorizontalAlignment(gfx::ALIGN_LEFT);
SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::Orientation::kVertical,
ChromeLayoutProvider::Get()->GetInsetsMetric(views::INSETS_DIALOG)));
set_fixed_width(ChromeLayoutProvider::Get()->GetDistanceMetric(
views::DISTANCE_MODAL_DIALOG_PREFERRED_WIDTH));
SetButtonLabel(ui::mojom::DialogButton::kOk,
l10n_util::GetStringUTF16(
IDS_TAILORED_SECURITY_UNCONSENTED_ACCEPT_BUTTON));
SetButtonLabel(ui::mojom::DialogButton::kCancel,
l10n_util::GetStringUTF16(
IDS_TAILORED_SECURITY_UNCONSENTED_CANCEL_BUTTON));
RecordModalOutcomeAndRunCallback(TailoredSecurityOutcome::kShown,
base::DoNothing());
SetAcceptCallback(base::BindOnce(
RecordModalOutcomeAndRunCallback, TailoredSecurityOutcome::kAccepted,
base::BindOnce(&EnableEsbAndShowSettings, web_contents_)));
SetCancelCallback(base::BindOnce(RecordModalOutcomeAndRunCallback,
TailoredSecurityOutcome::kDismissed,
base::DoNothing()));
SetCloseCallback(base::BindOnce(RecordModalOutcomeAndRunCallback,
TailoredSecurityOutcome::kDismissed,
base::DoNothing()));
}
TailoredSecurityUnconsentedModal::~TailoredSecurityUnconsentedModal() = default;
bool TailoredSecurityUnconsentedModal::IsDialogButtonEnabled(
ui::mojom::DialogButton button) const {
return (button == ui::mojom::DialogButton::kOk ||
button == ui::mojom::DialogButton::kCancel);
}
bool TailoredSecurityUnconsentedModal::ShouldShowCloseButton() const {
return false;
}
void TailoredSecurityUnconsentedModal::AddedToWidget() {
signin::IdentityManager* identity_manager =
IdentityManagerFactory::GetForProfile(
Profile::FromBrowserContext(web_contents_->GetBrowserContext()));
if (!identity_manager ||
!identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSignin)) {
return;
}
ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance();
gfx::ImageSkia header_image =
*bundle.GetImageSkiaNamed(IDR_TAILORED_SECURITY_UNCONSENTED);
auto image_view = std::make_unique<views::ImageView>(
ui::ImageModel::FromImageSkia(header_image));
image_view->SetVerticalAlignment(views::ImageView::Alignment::kLeading);
GetBubbleFrameView()->SetHeaderView(std::move(image_view));
}
BEGIN_METADATA(TailoredSecurityUnconsentedModal)
END_METADATA
} // namespace safe_browsing
|