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 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
|
// Copyright 2025 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/enterprise/connectors/analysis/content_analysis_dialog_controller.h"
#include <cstddef>
#include <memory>
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "cc/paint/paint_flags.h"
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_delegate.h"
#include "chrome/browser/enterprise/connectors/analysis/content_analysis_features.h"
#include "chrome/browser/safe_browsing/cloud_content_scanning/deep_scanning_utils.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
#include "components/constrained_window/constrained_window_views.h"
#include "components/strings/grit/components_strings.h"
#include "components/vector_icons/vector_icons.h"
#include "components/web_modal/web_contents_modal_dialog_manager.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/web_contents.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/metadata/metadata_impl_macros.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/base/ui_base_types.h"
#include "ui/color/color_id.h"
#include "ui/color/color_provider.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/text_constants.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/bubble/bubble_frame_view.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/link.h"
#include "ui/views/controls/textarea/textarea.h"
#include "ui/views/controls/throbber.h"
#include "ui/views/layout/box_layout_view.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/layout/layout_provider.h"
#include "ui/views/layout/table_layout_view.h"
#include "base/win/windows_h_disallowed.h"
namespace enterprise_connectors {
namespace {
constexpr base::TimeDelta kResizeAnimationDuration = base::Milliseconds(100);
constexpr int kSideImageSize = 24;
constexpr int kLineHeight = 20;
constexpr gfx::Insets kSideImageInsets(8);
constexpr int kMessageAndIconRowLeadingPadding = 32;
constexpr int kMessageAndIconRowTrailingPadding = 48;
constexpr int kSideIconBetweenChildSpacing = 16;
constexpr int kPaddingBeforeBypassJustification = 16;
constexpr size_t kMaxBypassJustificationLength = 280;
// These time values are non-const in order to be overridden in test so they
// complete faster.
base::TimeDelta minimum_pending_dialog_time_ = base::Seconds(2);
base::TimeDelta success_dialog_timeout_ = base::Seconds(1);
base::TimeDelta show_dialog_delay_ = base::Seconds(1);
// A simple background class to show a colored circle behind the side icon once
// the scanning is done.
// TODO(pkasting): This is copy and pasted from ThemedSolidBackground. Merge.
class CircleBackground : public views::Background {
public:
explicit CircleBackground(ui::ColorId color) { SetColor(color); }
CircleBackground(const CircleBackground&) = delete;
CircleBackground& operator=(const CircleBackground&) = delete;
~CircleBackground() override = default;
// views::Background:
void Paint(gfx::Canvas* canvas, views::View* view) const override {
int radius = view->bounds().width() / 2;
gfx::PointF center(radius, radius);
cc::PaintFlags flags;
flags.setAntiAlias(true);
flags.setStyle(cc::PaintFlags::kFill_Style);
flags.setColor(color().ResolveToSkColor(view->GetColorProvider()));
canvas->DrawCircle(center, radius, flags);
}
void OnViewThemeChanged(views::View* view) override { view->SchedulePaint(); }
};
ContentAnalysisDialogController::TestObserver* observer_for_testing = nullptr;
} // namespace
// View classes used to override OnThemeChanged and update the sub-views to the
// new theme.
class DeepScanningBaseView {
public:
explicit DeepScanningBaseView(ContentAnalysisDialogController* dialog)
: dialog_(dialog) {}
ContentAnalysisDialogController* dialog() { return dialog_; }
protected:
raw_ptr<ContentAnalysisDialogController, DanglingUntriaged> dialog_;
};
class DeepScanningTopImageView : public DeepScanningBaseView,
public views::ImageView {
METADATA_HEADER(DeepScanningTopImageView, views::ImageView)
public:
using DeepScanningBaseView::DeepScanningBaseView;
void Update() {
if (!GetWidget()) {
return;
}
SetImage(dialog()->GetTopImage());
}
protected:
void OnThemeChanged() override {
views::ImageView::OnThemeChanged();
Update();
}
};
BEGIN_METADATA(DeepScanningTopImageView)
END_METADATA
class DeepScanningSideIconImageView : public DeepScanningBaseView,
public views::ImageView {
METADATA_HEADER(DeepScanningSideIconImageView, views::ImageView)
public:
using DeepScanningBaseView::DeepScanningBaseView;
void Update() {
if (!GetWidget()) {
return;
}
SetImage(ui::ImageModel::FromVectorIcon(vector_icons::kBusinessIcon,
dialog()->GetSideImageLogoColor(),
kSideImageSize));
if (dialog()->is_result()) {
SetBackground(std::make_unique<CircleBackground>(
dialog()->GetSideImageBackgroundColor()));
}
}
protected:
void OnThemeChanged() override {
views::ImageView::OnThemeChanged();
Update();
}
};
BEGIN_METADATA(DeepScanningSideIconImageView)
END_METADATA
class DeepScanningSideIconSpinnerView : public DeepScanningBaseView,
public views::Throbber {
METADATA_HEADER(DeepScanningSideIconSpinnerView, views::Throbber)
public:
using DeepScanningBaseView::DeepScanningBaseView;
void Update() {
if (dialog()->is_result()) {
parent()->RemoveChildView(this);
delete this;
}
}
protected:
void OnThemeChanged() override {
views::Throbber::OnThemeChanged();
Update();
}
};
BEGIN_METADATA(DeepScanningSideIconSpinnerView)
END_METADATA
// static
base::TimeDelta ContentAnalysisDialogController::GetMinimumPendingDialogTime() {
return minimum_pending_dialog_time_;
}
// static
base::TimeDelta ContentAnalysisDialogController::GetSuccessDialogTimeout() {
return success_dialog_timeout_;
}
// static
base::TimeDelta ContentAnalysisDialogController::ShowDialogDelay() {
return show_dialog_delay_;
}
ContentAnalysisDialogController::ContentAnalysisDialogController(
std::unique_ptr<ContentAnalysisDelegateBase> delegate,
bool is_cloud,
content::WebContents* contents,
safe_browsing::DeepScanAccessPoint access_point,
int files_count,
FinalContentAnalysisResult final_result,
download::DownloadItem* download_item)
: content::WebContentsObserver(contents),
delegate_base_(std::move(delegate)),
final_result_(final_result),
access_point_(std::move(access_point)),
files_count_(files_count),
download_item_(download_item),
is_cloud_(is_cloud) {
DVLOG(1) << __func__;
DCHECK(delegate_base_);
SetOwnedByWidget(OwnedByWidgetPassKey());
set_fixed_width(views::LayoutProvider::Get()->GetDistanceMetric(
views::DISTANCE_MODAL_DIALOG_PREFERRED_WIDTH));
if (observer_for_testing) {
observer_for_testing->ConstructorCalled(this, base::TimeTicks::Now());
}
if (final_result_ != FinalContentAnalysisResult::SUCCESS) {
UpdateStateFromFinalResult(final_result_);
}
SetupButtons();
if (download_item_) {
download_item_->AddObserver(this);
}
// Because the display of the dialog is delayed, it won't block UI
// interaction with the top level web contents until it is visible. To block
// interaction as of now, ignore input events manually.
top_level_contents_ =
constrained_window::GetTopLevelWebContents(web_contents())->GetWeakPtr();
top_level_contents_->StoreFocus();
scoped_ignore_input_events_ =
top_level_contents_->IgnoreInputEvents(std::nullopt);
if (ShowDialogDelay().is_zero() || !is_pending()) {
DVLOG(1) << __func__ << ": Showing in ctor";
ShowDialogNow();
} else {
content::GetUIThreadTaskRunner({})->PostDelayedTask(
FROM_HERE,
base::BindOnce(&ContentAnalysisDialogController::ShowDialogNow,
weak_ptr_factory_.GetWeakPtr()),
ShowDialogDelay());
}
if (is_warning() && bypass_requires_justification()) {
bypass_justification_text_length_->SetEnabledColor(
bypass_justification_text_length_->GetColorProvider()->GetColor(
ui::kColorAlertHighSeverity));
}
}
void ContentAnalysisDialogController::ShowDialogNow() {
if (will_be_deleted_soon_) {
DVLOG(1) << __func__ << ": aborting since dialog will be deleted soon";
return;
}
auto* manager =
web_modal::WebContentsModalDialogManager::FromWebContents(web_contents());
if (!manager) {
// `manager` being null indicates that `web_contents()` doesn't correspond
// to a browser tab (ex: an extension background page reading the
// clipboard). In such a case, we don't show a dialog and instead simply
// accept/cancel the result immediately. See crbug.com/374120523 and
// crbug.com/388049470 for more context.
if (!is_pending()) {
CancelButtonCallback();
}
return;
}
// If the web contents is still valid when the delay timer goes off and the
// dialog has not yet been shown, show it now.
if (web_contents() && !contents_view_) {
DVLOG(1) << __func__ << ": first time";
first_shown_timestamp_ = base::TimeTicks::Now();
constrained_window::ShowWebModalDialogViews(this, web_contents());
if (observer_for_testing) {
observer_for_testing->ViewsFirstShown(this, first_shown_timestamp_);
}
}
}
std::u16string ContentAnalysisDialogController::GetWindowTitle() const {
return std::u16string();
}
void ContentAnalysisDialogController::AcceptButtonCallback() {
DCHECK(delegate_base_);
DCHECK(is_warning());
accepted_or_cancelled_ = true;
std::optional<std::u16string> justification = std::nullopt;
if (delegate_base_->BypassRequiresJustification() && bypass_justification_) {
justification = bypass_justification_->GetText();
}
delegate_base_->BypassWarnings(justification);
}
void ContentAnalysisDialogController::CancelButtonCallback() {
accepted_or_cancelled_ = true;
if (delegate_base_) {
delegate_base_->Cancel(is_warning());
}
}
void ContentAnalysisDialogController::LearnMoreLinkClickedCallback(
const ui::Event& event) {
DCHECK(has_learn_more_url());
web_contents()->OpenURL(
content::OpenURLParams((*delegate_base_->GetCustomLearnMoreUrl()),
content::Referrer(),
WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_LINK, false),
/*navigation_handle_callback=*/{});
}
void ContentAnalysisDialogController::SuccessCallback() {
#if defined(USE_AURA)
if (web_contents()) {
// It's possible focus has been lost and gained back incorrectly if the user
// clicked on the page between the time the scan started and the time the
// dialog closes. This results in the behaviour detailed in
// crbug.com/1139050. The fix is to preemptively take back focus when this
// dialog closes on its own.
scoped_ignore_input_events_.reset();
web_contents()->Focus();
}
#endif
}
void ContentAnalysisDialogController::ContentsChanged(
views::Textfield* sender,
const std::u16string& new_contents) {
if (bypass_justification_text_length_) {
bypass_justification_text_length_->SetText(l10n_util::GetStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_BYPASS_JUSTIFICATION_TEXT_LIMIT_LABEL,
base::NumberToString16(new_contents.size()),
base::NumberToString16(kMaxBypassJustificationLength)));
}
if (new_contents.size() == 0 ||
new_contents.size() > kMaxBypassJustificationLength) {
DialogDelegate::SetButtonEnabled(ui::mojom::DialogButton::kOk, false);
if (bypass_justification_text_length_) {
bypass_justification_text_length_->SetEnabledColor(
bypass_justification_text_length_->GetColorProvider()->GetColor(
ui::kColorAlertHighSeverity));
}
} else {
DialogDelegate::SetButtonEnabled(ui::mojom::DialogButton::kOk, true);
if (bypass_justification_text_length_ && justification_text_label_) {
bypass_justification_text_length_->SetEnabledColor(
justification_text_label_->GetEnabledColor());
}
}
}
bool ContentAnalysisDialogController::ShouldShowCloseButton() const {
return false;
}
views::View* ContentAnalysisDialogController::GetContentsView() {
if (!contents_view_) {
DVLOG(1) << __func__ << ": first time";
contents_view_ = new views::BoxLayoutView(); // Owned by caller.
contents_view_->SetOrientation(views::BoxLayout::Orientation::kVertical);
// Padding to distance the top image from the icon and message.
contents_view_->SetBetweenChildSpacing(16);
// padding to distance the message from the button(s). When doing a cloud
// based analysis, a top image is added to the view and the top padding
// looks fine. When not doing a cloud-based analysis set the top padding
// to make things look nice.
contents_view_->SetInsideBorderInsets(
gfx::Insets::TLBR(is_cloud_ ? 0 : 24, 0, 10, 0));
// Add the top image for cloud-based analysis.
if (is_cloud_) {
image_ = contents_view_->AddChildView(
std::make_unique<DeepScanningTopImageView>(this));
}
// Create message area layout.
contents_layout_ = contents_view_->AddChildView(
std::make_unique<views::TableLayoutView>());
contents_layout_
->AddPaddingColumn(views::TableLayout::kFixedSize,
kMessageAndIconRowLeadingPadding)
.AddColumn(views::LayoutAlignment::kStart,
views::LayoutAlignment::kStart,
views::TableLayout::kFixedSize,
views::TableLayout::ColumnSize::kUsePreferred, 0, 0)
.AddPaddingColumn(views::TableLayout::kFixedSize,
kSideIconBetweenChildSpacing)
.AddColumn(views::LayoutAlignment::kStretch,
views::LayoutAlignment::kStretch, 1.0f,
views::TableLayout::ColumnSize::kUsePreferred, 0, 0)
.AddPaddingColumn(views::TableLayout::kFixedSize,
kMessageAndIconRowTrailingPadding)
// There is initially only 1 row in the table for the side icon and
// message. Rows are added later when other elements are needed.
.AddRows(1, views::TableLayout::kFixedSize);
// Add the side icon.
contents_layout_->AddChildView(CreateSideIcon());
// Add the message.
message_ =
contents_layout_->AddChildView(std::make_unique<views::StyledLabel>());
message_->SetText(GetDialogMessage());
message_->SetLineHeight(kLineHeight);
// Calculate the width of the side icon column with insets and padding.
int side_icon_column_width = kMessageAndIconRowLeadingPadding +
kSideImageInsets.width() + kSideImageSize +
kSideIconBetweenChildSpacing;
message_->SizeToFit(fixed_width() - side_icon_column_width -
kMessageAndIconRowTrailingPadding);
message_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
if (!is_pending()) {
UpdateDialog();
}
}
return contents_view_;
}
views::Widget* ContentAnalysisDialogController::GetWidget() {
return contents_view_->GetWidget();
}
const views::Widget* ContentAnalysisDialogController::GetWidget() const {
return contents_view_->GetWidget();
}
ui::mojom::ModalType ContentAnalysisDialogController::GetModalType() const {
return ui::mojom::ModalType::kChild;
}
void ContentAnalysisDialogController::WebContentsDestroyed() {
// If WebContents are destroyed, then the scan results don't matter so the
// delegate can be destroyed as well.
CancelDialogWithoutCallback();
}
void ContentAnalysisDialogController::PrimaryPageChanged(content::Page& page) {
// If the primary page is changed, the scan results would be stale. So the
// delegate should be reset and dialog should be cancelled.
CancelDialogWithoutCallback();
}
void ContentAnalysisDialogController::ShowResult(
FinalContentAnalysisResult result) {
DCHECK(is_pending());
UpdateStateFromFinalResult(result);
// Update the pending dialog only after it has been shown for a minimum amount
// of time.
base::TimeDelta time_shown = base::TimeTicks::Now() - first_shown_timestamp_;
if (time_shown >= GetMinimumPendingDialogTime()) {
UpdateDialog();
} else {
content::GetUIThreadTaskRunner({})->PostDelayedTask(
FROM_HERE,
base::BindOnce(&ContentAnalysisDialogController::UpdateDialog,
weak_ptr_factory_.GetWeakPtr()),
GetMinimumPendingDialogTime() - time_shown);
}
}
ContentAnalysisDialogController::~ContentAnalysisDialogController() {
DVLOG(1) << __func__;
if (bypass_justification_) {
bypass_justification_->SetController(nullptr);
}
if (top_level_contents_) {
scoped_ignore_input_events_.reset();
top_level_contents_->RestoreFocus();
}
if (download_item_) {
download_item_->RemoveObserver(this);
}
if (observer_for_testing) {
observer_for_testing->DestructorCalled(this);
}
}
void ContentAnalysisDialogController::UpdateStateFromFinalResult(
FinalContentAnalysisResult final_result) {
final_result_ = final_result;
switch (final_result_) {
case FinalContentAnalysisResult::ENCRYPTED_FILES:
case FinalContentAnalysisResult::LARGE_FILES:
case FinalContentAnalysisResult::FAIL_CLOSED:
case FinalContentAnalysisResult::FAILURE:
dialog_state_ = State::FAILURE;
break;
case FinalContentAnalysisResult::SUCCESS:
dialog_state_ = State::SUCCESS;
break;
case FinalContentAnalysisResult::WARNING:
dialog_state_ = State::WARNING;
break;
}
}
void ContentAnalysisDialogController::UpdateViews() {
DCHECK(contents_view_);
// Update the style of the dialog to reflect the new state.
if (image_) {
image_->Update();
}
side_icon_image_->Update();
// There isn't always a spinner, for instance when the dialog is started in a
// state other than the "pending" state.
if (side_icon_spinner_) {
// Calling `Update` leads to the deletion of the spinner.
side_icon_spinner_.ExtractAsDangling()->Update();
}
// Update the buttons.
SetupButtons();
// Update the message's text, and send an alert for screen readers since the
// text changed.
std::u16string new_message = GetDialogMessage();
UpdateDialogMessage(std::move(new_message));
// Add bypass justification views when required on warning verdicts. The order
// of the helper functions needs to be preserved for them to appear in the
// correct order.
if (is_warning() && bypass_requires_justification()) {
AddJustificationTextLabelToDialog();
AddJustificationTextAreaToDialog();
AddJustificationTextLengthToDialog();
}
}
bool ContentAnalysisDialogController::ShouldShowDialogNow() {
DCHECK(!is_pending());
// If the final result is fail closed, display ui regardless of cloud or local
// analysis.
if (final_result_ == FinalContentAnalysisResult::FAIL_CLOSED) {
DVLOG(1) << __func__ << ": show fail-closed ui.";
return true;
}
// Otherwise, show dialog now only if it is cloud analysis and the verdict is
// not success.
return is_cloud_ && !is_success();
}
void ContentAnalysisDialogController::UpdateDialog() {
if (!contents_view_ && !is_pending()) {
// If the dialog is no longer pending, a final verdict was received before
// the dialog was displayed. Show the verdict right away only if
// ShouldShowDialogNow() returns true.
ShouldShowDialogNow() ? ShowDialogNow() : CancelDialogAndDelete();
return;
}
DCHECK(is_result());
int height_before = contents_view_->GetPreferredSize().height();
UpdateViews();
// Resize the dialog's height. This is needed since the text might take more
// lines after changing.
int height_after = contents_view_->GetHeightForWidth(contents_view_->width());
int height_to_add = std::max(height_after - height_before, 0);
if (height_to_add > 0 && GetWidget()) {
Resize(height_to_add);
}
// Update the dialog.
DialogDelegate::DialogModelChanged();
contents_view_->InvalidateLayout();
// Schedule the dialog to close itself in the success case.
if (is_success()) {
content::GetUIThreadTaskRunner({})->PostDelayedTask(
FROM_HERE,
base::BindOnce(&DialogDelegate::CancelDialog,
weak_ptr_factory_.GetWeakPtr()),
GetSuccessDialogTimeout());
}
if (observer_for_testing) {
observer_for_testing->DialogUpdated(this, final_result_);
}
// Cancel the dialog as it is updated in tests in the failure dialog case.
// This is necessary to terminate tests that end when the dialog is closed.
if (observer_for_testing && is_failure()) {
CancelDialog();
}
}
void ContentAnalysisDialogController::Resize(int height_to_add) {
// Only resize if the dialog is updated to show a result.
DCHECK(is_result());
views::Widget* widget = GetWidget();
DCHECK(widget);
gfx::Rect dialog_rect = widget->GetContentsView()->GetContentsBounds();
int new_height = dialog_rect.height();
// Remove the button row's height if it's removed in the success case.
if (is_success()) {
DCHECK(contents_view_->parent());
DCHECK_EQ(contents_view_->parent()->children().size(), 2ul);
DCHECK_EQ(contents_view_->parent()->children()[0], contents_view_);
views::View* button_row_view = contents_view_->parent()->children()[1];
new_height -= button_row_view->GetContentsBounds().height();
}
// Apply the message lines delta.
new_height += height_to_add;
dialog_rect.set_height(new_height);
// Setup the animation.
bounds_animator_ =
std::make_unique<views::BoundsAnimator>(widget->GetRootView());
bounds_animator_->SetAnimationDuration(kResizeAnimationDuration);
DCHECK(widget->GetRootView());
views::View* view_to_resize = widget->GetRootView()->children()[0];
// Start the animation.
bounds_animator_->AnimateViewTo(view_to_resize, dialog_rect);
// Change the widget's size.
gfx::Size new_size = view_to_resize->size();
new_size.set_height(new_height);
widget->SetSize(new_size);
}
void ContentAnalysisDialogController::SetupButtons() {
if (is_warning()) {
// Include the Ok and Cancel buttons if there is a bypassable warning.
DialogDelegate::SetButtons(
static_cast<int>(ui::mojom::DialogButton::kCancel) |
static_cast<int>(ui::mojom::DialogButton::kOk));
DialogDelegate::SetDefaultButton(
static_cast<int>(ui::mojom::DialogButton::kCancel));
DialogDelegate::SetButtonLabel(ui::mojom::DialogButton::kCancel,
GetCancelButtonText());
DialogDelegate::SetCancelCallback(
base::BindOnce(&ContentAnalysisDialogController::CancelButtonCallback,
weak_ptr_factory_.GetWeakPtr()));
DialogDelegate::SetButtonLabel(ui::mojom::DialogButton::kOk,
GetBypassWarningButtonText());
DialogDelegate::SetAcceptCallback(
base::BindOnce(&ContentAnalysisDialogController::AcceptButtonCallback,
weak_ptr_factory_.GetWeakPtr()));
if (delegate_base_->BypassRequiresJustification()) {
DialogDelegate::SetButtonEnabled(ui::mojom::DialogButton::kOk, false);
}
} else if (is_failure() || is_pending()) {
// Include the Cancel button when the scan is pending or failing.
DialogDelegate::SetButtons(
static_cast<int>(ui::mojom::DialogButton::kCancel));
DialogDelegate::SetDefaultButton(
static_cast<int>(ui::mojom::DialogButton::kNone));
DialogDelegate::SetButtonLabel(ui::mojom::DialogButton::kCancel,
GetCancelButtonText());
DialogDelegate::SetCancelCallback(
base::BindOnce(&ContentAnalysisDialogController::CancelButtonCallback,
weak_ptr_factory_.GetWeakPtr()));
} else {
// Include no buttons otherwise.
DialogDelegate::SetButtons(
static_cast<int>(ui::mojom::DialogButton::kNone));
DialogDelegate::SetCancelCallback(
base::BindOnce(&ContentAnalysisDialogController::SuccessCallback,
weak_ptr_factory_.GetWeakPtr()));
}
}
std::u16string ContentAnalysisDialogController::GetDialogMessage() const {
switch (dialog_state_) {
case State::PENDING:
return GetPendingMessage();
case State::FAILURE:
return GetFailureMessage();
case State::SUCCESS:
return GetSuccessMessage();
case State::WARNING:
return GetWarningMessage();
}
}
std::u16string ContentAnalysisDialogController::GetCancelButtonText() const {
int text_id;
auto overriden_text = delegate_base_->OverrideCancelButtonText();
if (overriden_text) {
return overriden_text.value();
}
switch (dialog_state_) {
case State::SUCCESS:
NOTREACHED();
case State::PENDING:
text_id = IDS_DEEP_SCANNING_DIALOG_CANCEL_UPLOAD_BUTTON;
break;
case State::FAILURE:
text_id = IDS_CLOSE;
break;
case State::WARNING:
text_id = IDS_DEEP_SCANNING_DIALOG_CANCEL_WARNING_BUTTON;
break;
}
return l10n_util::GetStringUTF16(text_id);
}
std::u16string ContentAnalysisDialogController::GetBypassWarningButtonText()
const {
DCHECK(is_warning());
return l10n_util::GetStringUTF16(IDS_DEEP_SCANNING_DIALOG_PROCEED_BUTTON);
}
std::unique_ptr<views::View> ContentAnalysisDialogController::CreateSideIcon() {
// The icon left of the text has the appearance of a blue "Enterprise" logo
// with a spinner when the scan is pending.
auto icon = std::make_unique<views::View>();
icon->SetLayoutManager(std::make_unique<views::FillLayout>());
auto side_image = std::make_unique<DeepScanningSideIconImageView>(this);
side_image->SetImage(ui::ImageModel::FromVectorIcon(
vector_icons::kBusinessIcon, gfx::kPlaceholderColor, kSideImageSize));
side_image->SetBorder(views::CreateEmptyBorder(kSideImageInsets));
side_icon_image_ = icon->AddChildView(std::move(side_image));
// Add a spinner if the scan result is pending.
if (is_pending()) {
auto spinner = std::make_unique<DeepScanningSideIconSpinnerView>(this);
spinner->Start();
side_icon_spinner_ = icon->AddChildView(std::move(spinner));
}
return icon;
}
ui::ColorId ContentAnalysisDialogController::GetSideImageBackgroundColor()
const {
DCHECK(is_result());
DCHECK(contents_view_);
switch (dialog_state_) {
case State::PENDING:
NOTREACHED();
case State::SUCCESS:
return ui::kColorAccent;
case State::FAILURE:
return ui::kColorAlertHighSeverity;
case State::WARNING:
return ui::kColorAlertMediumSeverityIcon;
}
}
int ContentAnalysisDialogController::GetTopImageId(bool use_dark) const {
if (use_dark) {
switch (dialog_state_) {
case State::PENDING:
return IDR_UPLOAD_SCANNING_DARK;
case State::SUCCESS:
return IDR_UPLOAD_SUCCESS_DARK;
case State::FAILURE:
return IDR_UPLOAD_VIOLATION_DARK;
case State::WARNING:
return IDR_UPLOAD_WARNING_DARK;
}
} else {
switch (dialog_state_) {
case State::PENDING:
return IDR_UPLOAD_SCANNING;
case State::SUCCESS:
return IDR_UPLOAD_SUCCESS;
case State::FAILURE:
return IDR_UPLOAD_VIOLATION;
case State::WARNING:
return IDR_UPLOAD_WARNING;
}
}
}
std::u16string ContentAnalysisDialogController::GetPendingMessage() const {
DCHECK(is_pending());
if (is_print_scan()) {
return l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_PRINT_PENDING_MESSAGE);
}
return l10n_util::GetPluralStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_UPLOAD_PENDING_MESSAGE, files_count_);
}
std::u16string ContentAnalysisDialogController::GetFailureMessage() const {
DCHECK(is_failure());
// If the admin has specified a custom message for this failure, it takes
// precedence over the generic ones.
if (has_custom_message()) {
return GetCustomMessage();
}
if (final_result_ == FinalContentAnalysisResult::FAIL_CLOSED) {
DVLOG(1) << __func__ << ": display fail-closed message.";
return l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_UPLOAD_FAIL_CLOSED_MESSAGE);
}
if (final_result_ == FinalContentAnalysisResult::LARGE_FILES) {
if (is_print_scan()) {
return l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_LARGE_PRINT_FAILURE_MESSAGE);
}
return l10n_util::GetPluralStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_LARGE_FILE_FAILURE_MESSAGE, files_count_);
}
if (final_result_ == FinalContentAnalysisResult::ENCRYPTED_FILES) {
return l10n_util::GetPluralStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_ENCRYPTED_FILE_FAILURE_MESSAGE, files_count_);
}
if (is_print_scan()) {
return l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_PRINT_WARNING_MESSAGE);
}
return l10n_util::GetPluralStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_UPLOAD_FAILURE_MESSAGE, files_count_);
}
std::u16string ContentAnalysisDialogController::GetWarningMessage() const {
DCHECK(is_warning());
// If the admin has specified a custom message for this warning, it takes
// precedence over the generic one.
if (has_custom_message()) {
return GetCustomMessage();
}
if (is_print_scan()) {
return l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_PRINT_WARNING_MESSAGE);
}
return l10n_util::GetPluralStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_UPLOAD_WARNING_MESSAGE, files_count_);
}
std::u16string ContentAnalysisDialogController::GetSuccessMessage() const {
DCHECK(is_success());
if (is_print_scan()) {
return l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_PRINT_SUCCESS_MESSAGE);
}
return l10n_util::GetPluralStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_SUCCESS_MESSAGE, files_count_);
}
std::u16string ContentAnalysisDialogController::GetCustomMessage() const {
DCHECK(is_warning() || is_failure());
DCHECK(has_custom_message());
return *(delegate_base_->GetCustomMessage());
}
void ContentAnalysisDialogController::AddLearnMoreLinkToDialog() {
DCHECK(contents_view_);
DCHECK(contents_layout_);
DCHECK(is_warning() || is_failure());
// There is only ever up to one link in the dialog, so return early instead of
// adding another one.
if (learn_more_link_) {
return;
}
// Add a row for the new element, and add an empty view to skip the first
// column.
contents_layout_->AddRows(1, views::TableLayout::kFixedSize);
contents_layout_->AddChildView(std::make_unique<views::View>());
// Since `learn_more_link_` is not as wide as the column it's a part of,
// instead of being added directly to it, it has a parent with a BoxLayout so
// that its width corresponds to its own text size instead of the full column
// width.
views::View* learn_more_column =
contents_layout_->AddChildView(std::make_unique<views::View>());
learn_more_column->SetLayoutManager(std::make_unique<views::BoxLayout>());
learn_more_link_ = learn_more_column->AddChildView(
std::make_unique<views::Link>(l10n_util::GetStringUTF16(
IDS_DEEP_SCANNING_DIALOG_CUSTOM_MESSAGE_LEARN_MORE_LINK)));
learn_more_link_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
learn_more_link_->SetCallback(base::BindRepeating(
&ContentAnalysisDialogController::LearnMoreLinkClickedCallback,
base::Unretained(this)));
}
void ContentAnalysisDialogController::AddJustificationTextLabelToDialog() {
DCHECK(contents_view_);
DCHECK(contents_layout_);
DCHECK(is_warning());
// There is only ever up to one justification section in the dialog, so return
// early instead of adding another one.
if (justification_text_label_) {
return;
}
// Add a row for the new element, and add an empty view to skip the first
// column.
contents_layout_->AddRows(1, views::TableLayout::kFixedSize);
contents_layout_->AddChildView(std::make_unique<views::View>());
justification_text_label_ =
contents_layout_->AddChildView(std::make_unique<views::Label>());
justification_text_label_->SetText(
delegate_base_->GetBypassJustificationLabel());
justification_text_label_->SetBorder(views::CreateEmptyBorder(
gfx::Insets::TLBR(kPaddingBeforeBypassJustification, 0, 0, 0)));
justification_text_label_->SetLineHeight(kLineHeight);
justification_text_label_->SetMultiLine(true);
justification_text_label_->SetVerticalAlignment(gfx::ALIGN_MIDDLE);
justification_text_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
}
void ContentAnalysisDialogController::AddJustificationTextAreaToDialog() {
DCHECK(contents_view_);
DCHECK(contents_layout_);
DCHECK(justification_text_label_);
DCHECK(is_warning());
// There is only ever up to one justification text box in the dialog, so
// return early instead of adding another one.
if (bypass_justification_) {
return;
}
// Add a row for the new element, and add an empty view to skip the first
// column.
contents_layout_->AddRows(1, views::TableLayout::kFixedSize);
contents_layout_->AddChildView(std::make_unique<views::View>());
bypass_justification_ =
contents_layout_->AddChildView(std::make_unique<views::Textarea>());
bypass_justification_->GetViewAccessibility().SetName(
*justification_text_label_);
bypass_justification_->SetController(this);
}
void ContentAnalysisDialogController::AddJustificationTextLengthToDialog() {
DCHECK(contents_view_);
DCHECK(contents_layout_);
DCHECK(is_warning());
// There is only ever up to one justification text length indicator in the
// dialog, so return early instead of adding another one.
if (bypass_justification_text_length_) {
return;
}
// Add a row for the new element, and add an empty view to skip the first
// column.
contents_layout_->AddRows(1, views::TableLayout::kFixedSize);
contents_layout_->AddChildView(std::make_unique<views::View>());
bypass_justification_text_length_ =
contents_layout_->AddChildView(std::make_unique<views::Label>());
bypass_justification_text_length_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
bypass_justification_text_length_->SetText(l10n_util::GetStringFUTF16(
IDS_DEEP_SCANNING_DIALOG_BYPASS_JUSTIFICATION_TEXT_LIMIT_LABEL,
base::NumberToString16(0),
base::NumberToString16(kMaxBypassJustificationLength)));
// Set the color to red initially because a 0 length message is invalid. Skip
// this if the color provider is unavailable.
if (bypass_justification_text_length_->GetColorProvider()) {
bypass_justification_text_length_->SetEnabledColor(
bypass_justification_text_length_->GetColorProvider()->GetColor(
ui::kColorAlertHighSeverity));
}
}
void ContentAnalysisDialogController::AddLinksToDialogMessage() {
if (!has_custom_message_ranges()) {
return;
}
std::vector<std::pair<gfx::Range, GURL>> ranges =
*(delegate_base_->GetCustomRuleMessageRanges());
for (const auto& range : ranges) {
if (!range.second.is_valid()) {
continue;
}
message_->AddStyleRange(
gfx::Range(range.first.start(), range.first.end()),
views::StyledLabel::RangeStyleInfo::CreateForLink(base::BindRepeating(
[](base::WeakPtr<content::WebContents> web_contents, GURL url,
const ui::Event& event) {
if (!web_contents) {
return;
}
web_contents->OpenURL(
content::OpenURLParams(
url, content::Referrer(),
WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_LINK,
/*is_renderer_initiated=*/false),
/*navigation_handle_callback=*/{});
},
web_contents()->GetWeakPtr(), range.second)));
}
}
void ContentAnalysisDialogController::UpdateDialogMessage(
std::u16string new_message) {
if ((is_failure() || is_warning()) && has_custom_message()) {
message_->SetText(new_message);
AddLinksToDialogMessage();
message_->GetViewAccessibility().AnnounceText(std::move(new_message));
if (has_learn_more_url()) {
AddLearnMoreLinkToDialog();
}
} else {
message_->SetText(new_message);
message_->GetViewAccessibility().AnnounceText(std::move(new_message));
// Add a "Learn More" link for warnings/failures when one is provided.
if ((is_failure() || is_warning()) && has_learn_more_url()) {
AddLearnMoreLinkToDialog();
}
}
}
bool ContentAnalysisDialogController::ShouldUseDarkTopImage() const {
return color_utils::IsDark(
contents_view_->GetColorProvider()->GetColor(ui::kColorDialogBackground));
}
ui::ImageModel ContentAnalysisDialogController::GetTopImage() const {
return ui::ImageModel::FromResourceId(GetTopImageId(ShouldUseDarkTopImage()));
}
bool ContentAnalysisDialogController::is_print_scan() const {
return access_point_ == safe_browsing::DeepScanAccessPoint::PRINT;
}
void ContentAnalysisDialogController::CancelDialogAndDelete() {
if (observer_for_testing) {
observer_for_testing->CancelDialogAndDeleteCalled(this, final_result_);
}
if (contents_view_) {
DVLOG(1) << __func__ << ": dialog will be canceled";
CancelDialog();
} else {
DVLOG(1) << __func__ << ": dialog will be deleted soon";
will_be_deleted_soon_ = true;
content::GetUIThreadTaskRunner({})->DeleteSoon(FROM_HERE, this);
}
}
ui::ColorId ContentAnalysisDialogController::GetSideImageLogoColor() const {
DCHECK(contents_view_);
switch (dialog_state_) {
case State::PENDING:
// In the dialog's pending state, the side image is just an enterprise
// logo surrounded by a throbber, so we use the throbber color for it.
return ui::kColorThrobber;
case State::SUCCESS:
case State::FAILURE:
case State::WARNING:
// In a result state, the side image is a circle colored with the result's
// color and an enterprise logo in front of it, so the logo should have
// the same color as the dialog's overall background.
return ui::kColorDialogBackground;
}
}
// static
void ContentAnalysisDialogController::SetMinimumPendingDialogTimeForTesting(
base::TimeDelta delta) {
minimum_pending_dialog_time_ = delta;
}
// static
void ContentAnalysisDialogController::SetSuccessDialogTimeoutForTesting(
base::TimeDelta delta) {
success_dialog_timeout_ = delta;
}
// static
void ContentAnalysisDialogController::SetShowDialogDelayForTesting(
base::TimeDelta delta) {
show_dialog_delay_ = delta;
}
// static
void ContentAnalysisDialogController::SetObserverForTesting(
TestObserver* observer) {
observer_for_testing = observer;
}
views::ImageView* ContentAnalysisDialogController::GetTopImageForTesting()
const {
return image_;
}
views::Throbber* ContentAnalysisDialogController::GetSideIconSpinnerForTesting()
const {
return side_icon_spinner_;
}
views::StyledLabel* ContentAnalysisDialogController::GetMessageForTesting()
const {
return message_;
}
views::Link* ContentAnalysisDialogController::GetLearnMoreLinkForTesting()
const {
return learn_more_link_;
}
views::Label*
ContentAnalysisDialogController::GetBypassJustificationLabelForTesting() const {
return justification_text_label_;
}
views::Textarea*
ContentAnalysisDialogController::GetBypassJustificationTextareaForTesting()
const {
return bypass_justification_;
}
views::Label*
ContentAnalysisDialogController::GetJustificationTextLengthForTesting() const {
return bypass_justification_text_length_;
}
void ContentAnalysisDialogController::OnDownloadUpdated(
download::DownloadItem* download) {
if (download->GetDangerType() ==
download::DOWNLOAD_DANGER_TYPE_USER_VALIDATED &&
!accepted_or_cancelled_) {
// The user validated the verdict in another instance of
// `ContentAnalysisDialogController`, so this one is now pointless and can
// go away.
CancelDialogWithoutCallback();
}
}
void ContentAnalysisDialogController::OnDownloadOpened(
download::DownloadItem* download) {
if (!accepted_or_cancelled_) {
CancelDialogWithoutCallback();
}
}
void ContentAnalysisDialogController::OnDownloadDestroyed(
download::DownloadItem* download) {
if (!accepted_or_cancelled_) {
CancelDialogWithoutCallback();
}
download_item_ = nullptr;
}
void ContentAnalysisDialogController::CancelDialogWithoutCallback() {
// Reset `delegate` so no logic runs when the dialog is cancelled.
delegate_base_.reset(nullptr);
// view may be null if the dialog was delayed and never shown before the
// verdict is known.
if (contents_view_) {
CancelDialog();
}
}
} // namespace enterprise_connectors
|