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
|
// 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/ui/webui/new_tab_footer/new_tab_footer_handler.h"
#include <utility>
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/enterprise/browser_management/browser_management_service.h"
#include "chrome/browser/enterprise/browser_management/management_service_factory.h"
#include "chrome/browser/enterprise/util/managed_browser_utils.h"
#include "chrome/browser/extensions/settings_api_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/background/ntp_custom_background_service_factory.h"
#include "chrome/browser/ui/browser_window/public/browser_window_interface.h"
#include "chrome/browser/ui/color/chrome_color_id.h"
#include "chrome/browser/ui/managed_ui.h"
#include "chrome/browser/ui/webui/new_tab_footer/footer_context_menu.h"
#include "chrome/browser/ui/webui/new_tab_footer/new_tab_footer.mojom.h"
#include "chrome/browser/ui/webui/new_tab_footer/new_tab_footer_helper.h"
#include "chrome/browser/ui/webui/new_tab_page/new_tab_page_ui.h"
#include "chrome/browser/ui/webui/webui_embedding_context.h"
#include "chrome/browser/ui/webui/webui_util_desktop.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/branded_strings.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
#include "components/policy/core/common/cloud/machine_level_user_cloud_policy_manager.h"
#include "components/prefs/pref_service.h"
#include "components/strings/grit/components_strings.h"
#include "components/vector_icons/vector_icons.h"
#include "content/public/browser/web_contents.h"
#include "net/base/url_util.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/page_transition_types.h"
#include "ui/base/webui/web_ui_util.h"
#include "ui/base/window_open_disposition.h"
#include "ui/color/color_provider.h"
#include "ui/gfx/image/image_skia_rep_default.h"
#include "ui/gfx/paint_vector_icon.h"
NewTabFooterHandler::NewTabFooterHandler(
mojo::PendingReceiver<new_tab_footer::mojom::NewTabFooterHandler>
pending_handler,
mojo::PendingRemote<new_tab_footer::mojom::NewTabFooterDocument>
pending_document,
base::WeakPtr<TopChromeWebUIController::Embedder> embedder,
NtpCustomBackgroundService* ntp_custom_background_service,
content::WebContents* web_contents)
: embedder_(embedder),
profile_(Profile::FromBrowserContext(web_contents->GetBrowserContext())),
web_contents_(web_contents),
ntp_custom_background_service_(ntp_custom_background_service),
theme_provider_(&ThemeService::GetThemeProviderForProfile(profile_)),
document_(std::move(pending_document)),
handler_{this, std::move(pending_handler)} {
extension_registry_observation_.Observe(
extensions::ExtensionRegistry::Get(profile_));
management_observation_.Observe(
policy::ManagementServiceFactory::GetForProfile(profile_));
if (ntp_custom_background_service_) {
ntp_custom_background_service_observation_.Observe(
ntp_custom_background_service_);
}
profile_pref_change_registrar_.Init(profile_->GetPrefs());
profile_pref_change_registrar_.Add(
prefs::kNTPFooterExtensionAttributionEnabled,
base::BindRepeating(&NewTabFooterHandler::UpdateNtpExtensionName,
base::Unretained(this)));
auto* local_state = g_browser_process->local_state();
if (local_state) {
local_state_pref_change_registrar_.Init(local_state);
local_state_pref_change_registrar_.Add(
prefs::kNTPFooterManagementNoticeEnabled,
base::BindRepeating(&NewTabFooterHandler::UpdateManagementNotice,
base::Unretained(this)));
local_state_pref_change_registrar_.Add(
prefs::kEnterpriseCustomLabelForBrowser,
base::BindRepeating(&NewTabFooterHandler::UpdateManagementNotice,
base::Unretained(this)));
}
}
NewTabFooterHandler::~NewTabFooterHandler() = default;
void NewTabFooterHandler::UpdateNtpExtensionName() {
std::string id;
std::string name;
bool attribution_enabled = profile_->GetPrefs()->GetBoolean(
prefs::kNTPFooterExtensionAttributionEnabled);
if (attribution_enabled) {
if (const extensions::Extension* ntp_extension =
extensions::GetExtensionOverridingNewTabPage(profile_)) {
id = ntp_extension->id();
name = ntp_extension->name();
}
}
curr_ntp_extension_id_ = id;
document_->SetNtpExtensionName(std::move(name));
}
void NewTabFooterHandler::UpdateBackgroundAttribution() {
OnCustomBackgroundImageUpdated();
}
void NewTabFooterHandler::SetThemeProviderForTesting(
ui::ThemeProvider* theme_provider) {
theme_provider_ = theme_provider;
}
void NewTabFooterHandler::OpenExtensionOptionsPageWithFallback() {
GURL options_url = GURL(chrome::kChromeUIExtensionsURL);
if (!curr_ntp_extension_id_.empty()) {
options_url = net::AppendOrReplaceQueryParameter(options_url, "id",
curr_ntp_extension_id_);
}
OpenUrlInCurrentTab(options_url);
}
void NewTabFooterHandler::OpenManagementPage() {
OpenUrlInCurrentTab(GURL(chrome::kChromeUIManagementURL));
}
void NewTabFooterHandler::ShowContextMenu(const gfx::Point& point) {
if (!embedder_) {
return;
}
auto* browser = webui::GetBrowserWindowInterface(web_contents_);
if (browser) {
embedder_->ShowContextMenu(point,
std::make_unique<FooterContextMenu>(browser));
}
}
void NewTabFooterHandler::UpdateManagementNotice() {
if (!enterprise_util::CanShowEnterpriseBadgingForNTPFooter(profile_)) {
document_->SetManagementNotice(nullptr);
return;
}
auto notice = new_tab_footer::mojom::ManagementNotice::New();
notice->text = GetManagementNoticeText();
SkBitmap bitmap = GetManagementNoticeIconBitmap();
if (!bitmap.empty()) {
notice->custom_bitmap_data_url = GURL(webui::GetBitmapDataUrl(bitmap));
}
document_->SetManagementNotice(std::move(notice));
}
void NewTabFooterHandler::OpenUrlInCurrentTab(const GURL& url) {
auto* browser_window = webui::GetBrowserWindowInterface(web_contents_);
if (!browser_window || !url.is_valid()) {
return;
}
content::OpenURLParams params(url, content::Referrer(),
WindowOpenDisposition::CURRENT_TAB,
ui::PAGE_TRANSITION_LINK, false);
browser_window->OpenURL(params, /*navigation_handle_callback=*/{});
}
std::string NewTabFooterHandler::GetManagementNoticeText() {
CHECK(enterprise_util::CanShowEnterpriseBadgingForNTPFooter(profile_));
// Return "Managed by <label>" if custom label is set.
std::string custom_label = g_browser_process->local_state()->GetString(
prefs::kEnterpriseCustomLabelForBrowser);
if (!custom_label.empty()) {
return l10n_util::GetStringFUTF8(IDS_MANAGED_BY,
base::UTF8ToUTF16(custom_label));
}
// Return "Managed by <management domain>" if a cloud manager is known.
// Otherwise return the generic "Managed by your organization" message.
std::optional<std::string> cloud_policy_manager = GetDeviceManagerIdentity();
return cloud_policy_manager && !cloud_policy_manager->empty()
? l10n_util::GetStringFUTF8(
IDS_MANAGED_BY, base::UTF8ToUTF16(*cloud_policy_manager))
: l10n_util::GetStringUTF8(IDS_MANAGED);
}
SkBitmap NewTabFooterHandler::GetManagementNoticeIconBitmap() {
CHECK(enterprise_util::CanShowEnterpriseBadgingForNTPFooter(profile_));
// Return custom icon if set by policy.
gfx::Image* custom_icon =
policy::ManagementServiceFactory::GetForProfile(profile_)
->GetManagementIconForBrowser();
if (custom_icon && !custom_icon->IsEmpty()) {
return custom_icon->AsBitmap();
}
return SkBitmap();
}
void NewTabFooterHandler::OnExtensionReady(
content::BrowserContext* browser_context,
const extensions::Extension* extension) {
UpdateNtpExtensionName();
}
void NewTabFooterHandler::OnExtensionUnloaded(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UnloadedExtensionReason reason) {
UpdateNtpExtensionName();
}
void NewTabFooterHandler::UpdateAttachedTabState() {
AttachedTabStateUpdated(last_source_url_);
}
void NewTabFooterHandler::AttachedTabStateUpdated(const GURL& url) {
last_source_url_ = url;
new_tab_footer::mojom::NewTabPageType ntp_type =
new_tab_footer::mojom::NewTabPageType::kOther;
if (NewTabPageUI::IsNewTabPageOrigin(url)) {
ntp_type = new_tab_footer::mojom::NewTabPageType::kFirstPartyWebUI;
} else if (ntp_footer::IsExtensionNtp(url, profile_)) {
ntp_type = new_tab_footer::mojom::NewTabPageType::kExtension;
}
document_->AttachedTabStateUpdated(ntp_type);
}
void NewTabFooterHandler::OnCustomBackgroundImageUpdated() {
const bool theme_has_custom_image =
theme_provider_->HasCustomImage(IDR_THEME_NTP_BACKGROUND);
if (theme_has_custom_image) {
document_->SetBackgroundAttribution(nullptr);
return;
}
auto custom_background =
ntp_custom_background_service_
? ntp_custom_background_service_->GetCustomBackground()
: std::nullopt;
if (!custom_background.has_value() ||
custom_background->custom_background_attribution_line_1.empty()) {
document_->SetBackgroundAttribution(nullptr);
return;
}
auto attribution = new_tab_footer::mojom::BackgroundAttribution::New();
attribution->name =
custom_background->custom_background_attribution_line_2.empty()
? custom_background->custom_background_attribution_line_1
: l10n_util::GetStringFUTF8(
IDS_NEW_TAB_FOOTER_BACKGROUND_ATTRIBUTION_TEXT,
base::UTF8ToUTF16(
custom_background->custom_background_attribution_line_1),
base::UTF8ToUTF16(
custom_background->custom_background_attribution_line_2));
attribution->url =
custom_background->custom_background_attribution_action_url;
document_->SetBackgroundAttribution(std::move(attribution));
}
void NewTabFooterHandler::OnEnterpriseLogoUpdatedForBrowser() {
UpdateManagementNotice();
}
|