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
|
// 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/webui/settings/privacy_sandbox_handler.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_countries.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_service.h"
#include "chrome/browser/privacy_sandbox/privacy_sandbox_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "components/privacy_sandbox/canonical_topic.h"
#include "components/privacy_sandbox/privacy_sandbox_features.h"
namespace settings {
namespace {
// Keys of the dictionary returned by getFledgeState.
constexpr char kJoiningSites[] = "joiningSites";
constexpr char kBlockedSites[] = "blockedSites";
// Keys of the dictionary of the CanonicalTopic JS type.
constexpr char kTopicId[] = "topicId";
constexpr char kTaxonomyVersion[] = "taxonomyVersion";
constexpr char kDisplayString[] = "displayString";
constexpr char kDescription[] = "description";
// Keys of the dictionary returned by getTopicsState.
constexpr char kTopTopics[] = "topTopics";
constexpr char kBlockedTopics[] = "blockedTopics";
// Key of the dictionary returned by getFirstLevelTopics
constexpr char kFirstLevelTopics[] = "firstLevelTopics";
base::Value::Dict ConvertTopicToValue(
const privacy_sandbox::CanonicalTopic& topic) {
base::Value::Dict topic_value;
topic_value.Set(kTopicId, topic.topic_id().value());
topic_value.Set(kTaxonomyVersion, topic.taxonomy_version());
topic_value.Set(kDisplayString, topic.GetLocalizedRepresentation());
topic_value.Set(kDescription, topic.GetLocalizedDescription());
return topic_value;
}
} // namespace
PrivacySandboxHandler::PrivacySandboxHandler() = default;
PrivacySandboxHandler::~PrivacySandboxHandler() = default;
void PrivacySandboxHandler::RegisterMessages() {
web_ui()->RegisterMessageCallback(
"setFledgeJoiningAllowed",
base::BindRepeating(&PrivacySandboxHandler::HandleSetFledgeJoiningAllowed,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"getFledgeState",
base::BindRepeating(&PrivacySandboxHandler::HandleGetFledgeState,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"setTopicAllowed",
base::BindRepeating(&PrivacySandboxHandler::HandleSetTopicAllowed,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"getTopicsState",
base::BindRepeating(&PrivacySandboxHandler::HandleGetTopicsState,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"topicsToggleChanged",
base::BindRepeating(&PrivacySandboxHandler::HandleTopicsToggleChanged,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"getFirstLevelTopics",
base::BindRepeating(&PrivacySandboxHandler::HandleGetFirstLevelTopics,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"getChildTopicsCurrentlyAssigned",
base::BindRepeating(
&PrivacySandboxHandler::HandleGetChildTopicsCurrentlyAssigned,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"privacySandboxPrivacyGuideShouldShowAdTopicsCard",
base::BindRepeating(
&PrivacySandboxHandler::
HandlePrivacySandboxPrivacyGuideShouldShowAdTopicsCard,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"shouldShowPrivacySandboxAdTopicsContentParity",
base::BindRepeating(
&PrivacySandboxHandler::
HandleShouldShowPrivacySandboxAdTopicsContentParity,
base::Unretained(this)));
}
void PrivacySandboxHandler::HandleSetFledgeJoiningAllowed(
const base::Value::List& args) {
const std::string& site = args[0].GetString();
const bool enabled = args[1].GetBool();
GetPrivacySandboxService()->SetFledgeJoiningAllowed(site, enabled);
}
void PrivacySandboxHandler::HandleGetFledgeState(
const base::Value::List& args) {
AllowJavascript();
const std::string& callback_id = args[0].GetString();
GetPrivacySandboxService()->GetFledgeJoiningEtldPlusOneForDisplay(
base::BindOnce(&PrivacySandboxHandler::OnFledgeJoiningSitesRecieved,
weak_ptr_factory_.GetWeakPtr(), callback_id));
}
void PrivacySandboxHandler::HandleSetTopicAllowed(
const base::Value::List& args) {
const int topic_id = args[0].GetInt();
const int taxonomy_version = args[1].GetInt();
const bool allowed = args[2].GetBool();
GetPrivacySandboxService()->SetTopicAllowed(
privacy_sandbox::CanonicalTopic(browsing_topics::Topic(topic_id),
taxonomy_version),
allowed);
}
void PrivacySandboxHandler::HandleGetTopicsState(
const base::Value::List& args) {
AllowJavascript();
base::Value::List top_topics_list;
for (const auto& topic : GetPrivacySandboxService()->GetCurrentTopTopics()) {
top_topics_list.Append(ConvertTopicToValue(topic));
}
base::Value::List blocked_topics_list;
for (const auto& topic : GetPrivacySandboxService()->GetBlockedTopics()) {
blocked_topics_list.Append(ConvertTopicToValue(topic));
}
base::Value::Dict topics_state;
topics_state.Set(kTopTopics, std::move(top_topics_list));
topics_state.Set(kBlockedTopics, std::move(blocked_topics_list));
ResolveJavascriptCallback(args[0], std::move(topics_state));
}
void PrivacySandboxHandler::HandleTopicsToggleChanged(
const base::Value::List& args) {
AllowJavascript();
const int toggle_value = args[0].GetBool();
GetPrivacySandboxService()->TopicsToggleChanged(toggle_value);
}
void PrivacySandboxHandler::OnFledgeJoiningSitesRecieved(
const std::string& callback_id,
std::vector<std::string> joining_sites) {
// Combine |joining_sites| with the blocked FLEDGE sites information. The
// latter is available synchronously.
base::Value::List joining_sites_list;
for (const auto& site : joining_sites) {
joining_sites_list.Append(site);
}
const auto blocked_sites =
GetPrivacySandboxService()->GetBlockedFledgeJoiningTopFramesForDisplay();
base::Value::List blocked_sites_list;
for (const auto& site : blocked_sites) {
blocked_sites_list.Append(site);
}
base::Value::Dict fledge_state;
fledge_state.Set(kJoiningSites, std::move(joining_sites_list));
fledge_state.Set(kBlockedSites, std::move(blocked_sites_list));
ResolveJavascriptCallback(base::Value(callback_id), std::move(fledge_state));
}
void PrivacySandboxHandler::HandleGetFirstLevelTopics(
const base::Value::List& args) {
AllowJavascript();
base::Value::List blocked_topics_list;
for (const auto& topic : GetPrivacySandboxService()->GetBlockedTopics()) {
blocked_topics_list.Append(ConvertTopicToValue(topic));
}
base::Value::List first_level_topics_list;
for (const auto& topic : GetPrivacySandboxService()->GetFirstLevelTopics()) {
first_level_topics_list.Append(ConvertTopicToValue(topic));
}
base::Value::Dict first_level_topics_state;
first_level_topics_state.Set(kBlockedTopics, std::move(blocked_topics_list));
first_level_topics_state.Set(kFirstLevelTopics,
std::move(first_level_topics_list));
ResolveJavascriptCallback(args[0], std::move(first_level_topics_state));
}
void PrivacySandboxHandler::HandleGetChildTopicsCurrentlyAssigned(
const base::Value::List& args) {
AllowJavascript();
base::Value::List child_topics_currently_assigned_list;
const int topic_id = args[1].GetInt();
const int taxonomy_version = args[2].GetInt();
for (const auto& topic :
GetPrivacySandboxService()->GetChildTopicsCurrentlyAssigned(
privacy_sandbox::CanonicalTopic(browsing_topics::Topic(topic_id),
taxonomy_version))) {
child_topics_currently_assigned_list.Append(ConvertTopicToValue(topic));
}
ResolveJavascriptCallback(args[0],
std::move(child_topics_currently_assigned_list));
}
void PrivacySandboxHandler::
HandlePrivacySandboxPrivacyGuideShouldShowAdTopicsCard(
const base::Value::List& args) {
AllowJavascript();
bool should_show_ad_topics_card =
GetPrivacySandboxService()
->PrivacySandboxPrivacyGuideShouldShowAdTopicsCard();
ResolveJavascriptCallback(args[0], should_show_ad_topics_card);
}
void PrivacySandboxHandler::HandleShouldShowPrivacySandboxAdTopicsContentParity(
const base::Value::List& args) {
AllowJavascript();
ResolveJavascriptCallback(
args[0], base::FeatureList::IsEnabled(
privacy_sandbox::kPrivacySandboxAdTopicsContentParity));
}
PrivacySandboxCountries* PrivacySandboxHandler::GetPrivacySandboxCountries() {
return GetSingletonPrivacySandboxCountries();
}
PrivacySandboxService* PrivacySandboxHandler::GetPrivacySandboxService() {
auto* privacy_sandbox_service =
PrivacySandboxServiceFactory::GetForProfile(Profile::FromWebUI(web_ui()));
DCHECK(privacy_sandbox_service);
return privacy_sandbox_service;
}
void PrivacySandboxHandler::OnJavascriptDisallowed() {
weak_ptr_factory_.InvalidateWeakPtrs();
}
} // namespace settings
|