blob: 8c4b735f03dc8cdd96846994a3f37cb6409af1b0 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// 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/history_ui.h"
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/stl_util.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/ui/webui/browsing_history_handler.h"
#include "chrome/browser/ui/webui/foreign_session_handler.h"
#include "chrome/browser/ui/webui/history_login_handler.h"
#include "chrome/browser/ui/webui/localized_string.h"
#include "chrome/browser/ui/webui/managed_ui_handler.h"
#include "chrome/browser/ui/webui/metrics_handler.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/browser_resources.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/locale_settings.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "services/identity/public/cpp/identity_manager.h"
#include "ui/base/l10n/l10n_util.h"
namespace {
constexpr char kIsUserSignedInKey[] = "isUserSignedIn";
constexpr char kShowMenuPromoKey[] = "showMenuPromo";
bool IsUserSignedIn(Profile* profile) {
identity::IdentityManager* identity_manager =
IdentityManagerFactory::GetForProfile(profile);
return identity_manager && identity_manager->HasPrimaryAccount();
}
bool MenuPromoShown(Profile* profile) {
return profile->GetPrefs()->GetBoolean(prefs::kHistoryMenuPromoShown);
}
content::WebUIDataSource* CreateHistoryUIHTMLSource(Profile* profile) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIHistoryHost);
static constexpr LocalizedString kStrings[] = {
// Localized strings (alphabetical order).
{"actionMenuDescription", IDS_HISTORY_ACTION_MENU_DESCRIPTION},
{"bookmarked", IDS_HISTORY_ENTRY_BOOKMARKED},
{"cancel", IDS_CANCEL},
{"clearBrowsingData", IDS_CLEAR_BROWSING_DATA_TITLE},
{"clearSearch", IDS_HISTORY_CLEAR_SEARCH},
{"closeMenuPromo", IDS_HISTORY_CLOSE_MENU_PROMO},
{"collapseSessionButton", IDS_HISTORY_OTHER_SESSIONS_COLLAPSE_SESSION},
{"delete", IDS_HISTORY_DELETE},
{"deleteConfirm", IDS_HISTORY_DELETE_PRIOR_VISITS_CONFIRM_BUTTON},
{"deleteSession", IDS_HISTORY_OTHER_SESSIONS_HIDE_FOR_NOW},
{"deleteWarning", IDS_HISTORY_DELETE_PRIOR_VISITS_WARNING},
{"entrySummary", IDS_HISTORY_ENTRY_SUMMARY},
{"expandSessionButton", IDS_HISTORY_OTHER_SESSIONS_EXPAND_SESSION},
{"foundSearchResults", IDS_HISTORY_FOUND_SEARCH_RESULTS},
{"historyMenuButton", IDS_HISTORY_HISTORY_MENU_DESCRIPTION},
{"historyMenuItem", IDS_HISTORY_HISTORY_MENU_ITEM},
{"itemsSelected", IDS_HISTORY_ITEMS_SELECTED},
{"loading", IDS_HISTORY_LOADING},
{"menuPromo", IDS_HISTORY_MENU_PROMO},
{"moreFromSite", IDS_HISTORY_MORE_FROM_SITE},
{"openAll", IDS_HISTORY_OTHER_SESSIONS_OPEN_ALL},
{"openTabsMenuItem", IDS_HISTORY_OPEN_TABS_MENU_ITEM},
{"noResults", IDS_HISTORY_NO_RESULTS},
{"noSearchResults", IDS_HISTORY_NO_SEARCH_RESULTS},
{"noSyncedResults", IDS_HISTORY_NO_SYNCED_RESULTS},
{"removeBookmark", IDS_HISTORY_REMOVE_BOOKMARK},
{"removeFromHistory", IDS_HISTORY_REMOVE_PAGE},
{"removeSelected", IDS_HISTORY_REMOVE_SELECTED_ITEMS},
{"searchPrompt", IDS_HISTORY_SEARCH_PROMPT},
{"searchResult", IDS_HISTORY_SEARCH_RESULT},
{"searchResults", IDS_HISTORY_SEARCH_RESULTS},
{"signInButton", IDS_HISTORY_SIGN_IN_BUTTON},
{"signInPromo", IDS_HISTORY_SIGN_IN_PROMO},
{"signInPromoDesc", IDS_HISTORY_SIGN_IN_PROMO_DESC},
{"title", IDS_HISTORY_TITLE},
};
AddLocalizedStringsBulk(source, kStrings, base::size(kStrings));
source->AddString(
"sidebarFooter",
l10n_util::GetStringFUTF16(
IDS_HISTORY_OTHER_FORMS_OF_HISTORY,
l10n_util::GetStringUTF16(
IDS_SETTINGS_CLEAR_DATA_MYACTIVITY_URL_IN_HISTORY)));
PrefService* prefs = profile->GetPrefs();
bool allow_deleting_history =
prefs->GetBoolean(prefs::kAllowDeletingBrowserHistory);
source->AddBoolean("allowDeletingHistory", allow_deleting_history);
source->AddBoolean(kShowMenuPromoKey, !MenuPromoShown(profile));
source->AddBoolean("isGuestSession", profile->IsGuestSession());
source->AddBoolean(kIsUserSignedInKey, IsUserSignedIn(profile));
struct UncompressedResource {
const char* path;
int idr;
};
const UncompressedResource uncompressed_resources[] = {
{"constants.html", IDR_HISTORY_CONSTANTS_HTML},
{"constants.js", IDR_HISTORY_CONSTANTS_JS},
{"history.js", IDR_HISTORY_HISTORY_JS},
{"images/sign_in_promo.svg", IDR_HISTORY_IMAGES_SIGN_IN_PROMO_SVG},
{"images/sign_in_promo_dark.svg",
IDR_HISTORY_IMAGES_SIGN_IN_PROMO_DARK_SVG},
{"strings.html", IDR_HISTORY_STRINGS_HTML},
#if !BUILDFLAG(OPTIMIZE_WEBUI)
{"app.html", IDR_HISTORY_APP_HTML},
{"app.js", IDR_HISTORY_APP_JS},
{"browser_service.html", IDR_HISTORY_BROWSER_SERVICE_HTML},
{"browser_service.js", IDR_HISTORY_BROWSER_SERVICE_JS},
{"history_item.html", IDR_HISTORY_HISTORY_ITEM_HTML},
{"history_item.js", IDR_HISTORY_HISTORY_ITEM_JS},
{"history_list.html", IDR_HISTORY_HISTORY_LIST_HTML},
{"history_list.js", IDR_HISTORY_HISTORY_LIST_JS},
{"history_toolbar.html", IDR_HISTORY_HISTORY_TOOLBAR_HTML},
{"history_toolbar.js", IDR_HISTORY_HISTORY_TOOLBAR_JS},
{"lazy_load.html", IDR_HISTORY_LAZY_LOAD_HTML},
{"query_manager.html", IDR_HISTORY_QUERY_MANAGER_HTML},
{"query_manager.js", IDR_HISTORY_QUERY_MANAGER_JS},
{"router.html", IDR_HISTORY_ROUTER_HTML},
{"router.js", IDR_HISTORY_ROUTER_JS},
{"searched_label.html", IDR_HISTORY_SEARCHED_LABEL_HTML},
{"searched_label.js", IDR_HISTORY_SEARCHED_LABEL_JS},
{"shared_style.html", IDR_HISTORY_SHARED_STYLE_HTML},
{"shared_vars.html", IDR_HISTORY_SHARED_VARS_HTML},
{"side_bar.html", IDR_HISTORY_SIDE_BAR_HTML},
{"side_bar.js", IDR_HISTORY_SIDE_BAR_JS},
{"synced_device_card.html", IDR_HISTORY_SYNCED_DEVICE_CARD_HTML},
{"synced_device_card.js", IDR_HISTORY_SYNCED_DEVICE_CARD_JS},
{"synced_device_manager.html", IDR_HISTORY_SYNCED_DEVICE_MANAGER_HTML},
{"synced_device_manager.js", IDR_HISTORY_SYNCED_DEVICE_MANAGER_JS},
#endif
};
for (const auto& resource : uncompressed_resources) {
source->AddResourcePath(resource.path, resource.idr);
}
#if BUILDFLAG(OPTIMIZE_WEBUI)
source->AddResourcePath("app.html", IDR_HISTORY_APP_VULCANIZED_HTML);
source->AddResourcePath("app.crisper.js", IDR_HISTORY_APP_CRISPER_JS);
source->AddResourcePath("lazy_load.html",
IDR_HISTORY_LAZY_LOAD_VULCANIZED_HTML);
source->AddResourcePath("lazy_load.crisper.js",
IDR_HISTORY_LAZY_LOAD_CRISPER_JS);
#endif
source->SetDefaultResource(IDR_HISTORY_HISTORY_HTML);
source->SetJsonPath("strings.js");
return source;
}
} // namespace
HistoryUI::HistoryUI(content::WebUI* web_ui) : WebUIController(web_ui) {
Profile* profile = Profile::FromWebUI(web_ui);
content::WebUIDataSource* data_source = CreateHistoryUIHTMLSource(profile);
ManagedUIHandler::Initialize(web_ui, data_source);
content::WebUIDataSource::Add(profile, data_source);
web_ui->AddMessageHandler(std::make_unique<BrowsingHistoryHandler>());
web_ui->AddMessageHandler(std::make_unique<MetricsHandler>());
web_ui->AddMessageHandler(
std::make_unique<browser_sync::ForeignSessionHandler>());
web_ui->AddMessageHandler(std::make_unique<HistoryLoginHandler>(
base::Bind(&HistoryUI::UpdateDataSource, base::Unretained(this))));
web_ui->RegisterMessageCallback(
"menuPromoShown", base::BindRepeating(&HistoryUI::HandleMenuPromoShown,
base::Unretained(this)));
}
HistoryUI::~HistoryUI() {}
void HistoryUI::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
registry->RegisterBooleanPref(
prefs::kHistoryMenuPromoShown, false,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
}
void HistoryUI::UpdateDataSource() {
CHECK(web_ui());
Profile* profile = Profile::FromWebUI(web_ui());
std::unique_ptr<base::DictionaryValue> update(new base::DictionaryValue);
update->SetBoolean(kIsUserSignedInKey, IsUserSignedIn(profile));
update->SetBoolean(kShowMenuPromoKey, !MenuPromoShown(profile));
content::WebUIDataSource::Update(profile, chrome::kChromeUIHistoryHost,
std::move(update));
}
void HistoryUI::HandleMenuPromoShown(const base::ListValue* args) {
Profile::FromWebUI(web_ui())->GetPrefs()->SetBoolean(
prefs::kHistoryMenuPromoShown, true);
UpdateDataSource();
}