blob: 4b5424812358160d79c82b36102bd5573a277ae1 [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/browsing_history_handler.h"
#include <stddef.h>
#include <set>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/i18n/rtl.h"
#include "base/i18n/time_formatting.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/default_clock.h"
#include "base/time/time.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/favicon/large_icon_service_factory.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/history/history_utils.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/profile_sync_service_factory.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "chrome/browser/ui/webui/favicon_source.h"
#include "chrome/common/buildflags.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/pref_names.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/browser/bookmark_utils.h"
#include "components/browser_sync/profile_sync_service.h"
#include "components/favicon/core/fallback_url_util.h"
#include "components/favicon/core/large_icon_service.h"
#include "components/keyed_service/core/service_access_type.h"
#include "components/prefs/pref_service.h"
#include "components/query_parser/snippet.h"
#include "components/strings/grit/components_strings.h"
#include "components/sync/device_info/device_info.h"
#include "components/sync/device_info/device_info_tracker.h"
#include "components/url_formatter/url_formatter.h"
#include "content/public/browser/url_data_source.h"
#include "content/public/browser/web_ui.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/l10n/time_format.h"
#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
#include "chrome/browser/supervised_user/supervised_user_navigation_observer.h"
#include "chrome/browser/supervised_user/supervised_user_service.h"
#include "chrome/browser/supervised_user/supervised_user_service_factory.h"
#include "chrome/browser/supervised_user/supervised_user_url_filter.h"
#endif
using bookmarks::BookmarkModel;
using history::BrowsingHistoryService;
using history::HistoryService;
using history::WebHistoryService;
using syncer::SyncService;
namespace {
// Identifiers for the type of device from which a history entry originated.
static const char kDeviceTypeLaptop[] = "laptop";
static const char kDeviceTypePhone[] = "phone";
static const char kDeviceTypeTablet[] = "tablet";
// Gets the name and type of a device for the given sync client ID.
// |name| and |type| are out parameters.
void GetDeviceNameAndType(const browser_sync::ProfileSyncService* sync_service,
const std::string& client_id,
std::string* name,
std::string* type) {
// DeviceInfoTracker must be syncing in order for remote history entries to
// be available.
DCHECK(sync_service);
DCHECK(sync_service->GetDeviceInfoTracker());
DCHECK(sync_service->GetDeviceInfoTracker()->IsSyncing());
std::unique_ptr<syncer::DeviceInfo> device_info =
sync_service->GetDeviceInfoTracker()->GetDeviceInfo(client_id);
if (device_info.get()) {
*name = device_info->client_name();
switch (device_info->device_type()) {
case sync_pb::SyncEnums::TYPE_PHONE:
*type = kDeviceTypePhone;
break;
case sync_pb::SyncEnums::TYPE_TABLET:
*type = kDeviceTypeTablet;
break;
default:
*type = kDeviceTypeLaptop;
}
return;
}
*name = l10n_util::GetStringUTF8(IDS_HISTORY_UNKNOWN_DEVICE);
*type = kDeviceTypeLaptop;
}
// Formats |entry|'s URL and title and adds them to |result|.
void SetHistoryEntryUrlAndTitle(
const BrowsingHistoryService::HistoryEntry& entry,
base::DictionaryValue* result) {
result->SetString("url", entry.url.spec());
bool using_url_as_the_title = false;
base::string16 title_to_set(entry.title);
if (entry.title.empty()) {
using_url_as_the_title = true;
title_to_set = base::UTF8ToUTF16(entry.url.spec());
}
// Since the title can contain BiDi text, we need to mark the text as either
// RTL or LTR, depending on the characters in the string. If we use the URL
// as the title, we mark the title as LTR since URLs are always treated as
// left to right strings.
if (base::i18n::IsRTL()) {
if (using_url_as_the_title)
base::i18n::WrapStringWithLTRFormatting(&title_to_set);
else
base::i18n::AdjustStringForLocaleDirection(&title_to_set);
}
// Number of chars to truncate titles when making them "short".
static const size_t kShortTitleLength = 300;
if (title_to_set.size() > kShortTitleLength)
title_to_set.resize(kShortTitleLength);
result->SetString("title", title_to_set);
}
// Converts |entry| to a DictionaryValue to be owned by the caller.
std::unique_ptr<base::DictionaryValue> HistoryEntryToValue(
const BrowsingHistoryService::HistoryEntry& entry,
BookmarkModel* bookmark_model,
SupervisedUserService* supervised_user_service,
const browser_sync::ProfileSyncService* sync_service,
base::Clock* clock) {
std::unique_ptr<base::DictionaryValue> result(new base::DictionaryValue());
SetHistoryEntryUrlAndTitle(entry, result.get());
base::string16 domain = url_formatter::IDNToUnicode(entry.url.host());
// When the domain is empty, use the scheme instead. This allows for a
// sensible treatment of e.g. file: URLs when group by domain is on.
if (domain.empty())
domain = base::UTF8ToUTF16(entry.url.scheme() + ":");
// The items which are to be written into result are also described in
// chrome/browser/resources/history/history.js in @typedef for
// HistoryEntry. Please update it whenever you add or remove
// any keys in result.
result->SetString("domain", domain);
result->SetString(
"fallbackFaviconText",
base::UTF16ToASCII(favicon::GetFallbackIconText(entry.url)));
result->SetDouble("time", entry.time.ToJsTime());
// Pass the timestamps in a list.
std::unique_ptr<base::ListValue> timestamps(new base::ListValue);
for (int64_t timestamp : entry.all_timestamps) {
timestamps->AppendDouble(
base::Time::FromInternalValue(timestamp).ToJsTime());
}
result->Set("allTimestamps", std::move(timestamps));
// Always pass the short date since it is needed both in the search and in
// the monthly view.
result->SetString("dateShort", base::TimeFormatShortDate(entry.time));
base::string16 snippet_string;
base::string16 date_relative_day;
base::string16 date_time_of_day;
bool is_blocked_visit = false;
int host_filtering_behavior = -1;
// Only pass in the strings we need (search results need a shortdate
// and snippet, browse results need day and time information). Makes sure that
// values of result are never undefined
if (entry.is_search_result) {
snippet_string = entry.snippet;
} else {
base::Time midnight = clock->Now().LocalMidnight();
base::string16 date_str =
ui::TimeFormat::RelativeDate(entry.time, &midnight);
if (date_str.empty()) {
date_str = base::TimeFormatFriendlyDate(entry.time);
} else {
date_str = l10n_util::GetStringFUTF16(
IDS_HISTORY_DATE_WITH_RELATIVE_TIME, date_str,
base::TimeFormatFriendlyDate(entry.time));
}
date_relative_day = date_str;
date_time_of_day = base::TimeFormatTimeOfDay(entry.time);
}
std::string device_name;
std::string device_type;
if (!entry.client_id.empty())
GetDeviceNameAndType(sync_service, entry.client_id, &device_name,
&device_type);
result->SetString("deviceName", device_name);
result->SetString("deviceType", device_type);
#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
if (supervised_user_service) {
const SupervisedUserURLFilter* url_filter =
supervised_user_service->GetURLFilter();
int filtering_behavior =
url_filter->GetFilteringBehaviorForURL(entry.url.GetWithEmptyPath());
is_blocked_visit = entry.blocked_visit;
host_filtering_behavior = filtering_behavior;
}
#endif
result->SetString("dateTimeOfDay", date_time_of_day);
result->SetString("dateRelativeDay", date_relative_day);
result->SetString("snippet", snippet_string);
result->SetBoolean("starred", bookmark_model->IsBookmarked(entry.url));
result->SetInteger("hostFilteringBehavior", host_filtering_behavior);
result->SetBoolean("blockedVisit", is_blocked_visit);
return result;
}
} // namespace
BrowsingHistoryHandler::BrowsingHistoryHandler()
: clock_(base::DefaultClock::GetInstance()),
browsing_history_service_(nullptr) {}
BrowsingHistoryHandler::~BrowsingHistoryHandler() {}
void BrowsingHistoryHandler::RegisterMessages() {
Profile* profile = GetProfile();
HistoryService* local_history = HistoryServiceFactory::GetForProfile(
profile, ServiceAccessType::EXPLICIT_ACCESS);
SyncService* sync_service =
ProfileSyncServiceFactory::GetSyncServiceForBrowserContext(profile);
browsing_history_service_ = std::make_unique<BrowsingHistoryService>(
this, local_history, sync_service);
// Create our favicon data source.
content::URLDataSource::Add(profile, new FaviconSource(profile));
web_ui()->RegisterMessageCallback(
"queryHistory",
base::BindRepeating(&BrowsingHistoryHandler::HandleQueryHistory,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"queryHistoryContinuation",
base::BindRepeating(
&BrowsingHistoryHandler::HandleQueryHistoryContinuation,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"removeVisits",
base::BindRepeating(&BrowsingHistoryHandler::HandleRemoveVisits,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"clearBrowsingData",
base::BindRepeating(&BrowsingHistoryHandler::HandleClearBrowsingData,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"removeBookmark",
base::BindRepeating(&BrowsingHistoryHandler::HandleRemoveBookmark,
base::Unretained(this)));
}
void BrowsingHistoryHandler::HandleQueryHistory(const base::ListValue* args) {
query_history_continuation_.Reset();
// Parse the arguments from JavaScript. There are two required arguments:
// - the text to search for (may be empty)
// - the maximum number of results to return (may be 0, meaning that there
// is no maximum).
base::string16 search_text = ExtractStringValue(args);
history::QueryOptions options;
if (!args->GetInteger(1, &options.max_count)) {
NOTREACHED() << "Failed to convert argument 2.";
return;
}
options.duplicate_policy = history::QueryOptions::REMOVE_DUPLICATES_PER_DAY;
browsing_history_service_->QueryHistory(search_text, options);
}
void BrowsingHistoryHandler::HandleQueryHistoryContinuation(
const base::ListValue* args) {
DCHECK(args->empty());
DCHECK(query_history_continuation_);
std::move(query_history_continuation_).Run();
}
void BrowsingHistoryHandler::HandleRemoveVisits(const base::ListValue* args) {
std::vector<BrowsingHistoryService::HistoryEntry> items_to_remove;
items_to_remove.reserve(args->GetSize());
for (base::ListValue::const_iterator it = args->begin();
it != args->end(); ++it) {
const base::DictionaryValue* deletion = NULL;
base::string16 url;
const base::ListValue* timestamps = NULL;
// Each argument is a dictionary with properties "url" and "timestamps".
if (!(it->GetAsDictionary(&deletion) && deletion->GetString("url", &url) &&
deletion->GetList("timestamps", &timestamps))) {
NOTREACHED() << "Unable to extract arguments";
return;
}
DCHECK_GT(timestamps->GetSize(), 0U);
BrowsingHistoryService::HistoryEntry entry;
entry.url = GURL(url);
double timestamp;
for (base::ListValue::const_iterator ts_iterator = timestamps->begin();
ts_iterator != timestamps->end(); ++ts_iterator) {
if (!ts_iterator->GetAsDouble(&timestamp)) {
NOTREACHED() << "Unable to extract visit timestamp.";
continue;
}
base::Time visit_time = base::Time::FromJsTime(timestamp);
entry.all_timestamps.insert(visit_time.ToInternalValue());
}
items_to_remove.push_back(entry);
}
browsing_history_service_->RemoveVisits(items_to_remove);
}
void BrowsingHistoryHandler::HandleClearBrowsingData(
const base::ListValue* args) {
// TODO(beng): This is an improper direct dependency on Browser. Route this
// through some sort of delegate.
Browser* browser = chrome::FindBrowserWithWebContents(
web_ui()->GetWebContents());
chrome::ShowClearBrowsingDataDialog(browser);
}
void BrowsingHistoryHandler::HandleRemoveBookmark(const base::ListValue* args) {
base::string16 url = ExtractStringValue(args);
Profile* profile = GetProfile();
BookmarkModel* model = BookmarkModelFactory::GetForBrowserContext(profile);
bookmarks::RemoveAllBookmarks(model, GURL(url));
}
void BrowsingHistoryHandler::OnQueryComplete(
const std::vector<BrowsingHistoryService::HistoryEntry>& results,
const BrowsingHistoryService::QueryResultsInfo& query_results_info,
base::OnceClosure continuation_closure) {
query_history_continuation_ = std::move(continuation_closure);
Profile* profile = Profile::FromWebUI(web_ui());
BookmarkModel* bookmark_model =
BookmarkModelFactory::GetForBrowserContext(profile);
SupervisedUserService* supervised_user_service = NULL;
#if defined(ENABLE_SUPERVISED_USERS)
if (profile->IsSupervised())
supervised_user_service =
SupervisedUserServiceFactory::GetForProfile(profile);
#endif
browser_sync::ProfileSyncService* sync_service =
ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile);
// Convert the result vector into a ListValue.
base::ListValue results_value;
for (const BrowsingHistoryService::HistoryEntry& entry : results) {
std::unique_ptr<base::Value> value(HistoryEntryToValue(
entry, bookmark_model, supervised_user_service, sync_service, clock_));
results_value.Append(std::move(value));
}
base::DictionaryValue results_info;
// The items which are to be written into results_info_value_ are also
// described in chrome/browser/resources/history/history.js in @typedef for
// HistoryQuery. Please update it whenever you add or remove any keys in
// results_info_value_.
results_info.SetString("term", query_results_info.search_text);
results_info.SetBoolean("finished", query_results_info.reached_beginning);
web_ui()->CallJavascriptFunctionUnsafe("historyResult", results_info,
results_value);
}
void BrowsingHistoryHandler::OnRemoveVisitsComplete() {
web_ui()->CallJavascriptFunctionUnsafe("deleteComplete");
}
void BrowsingHistoryHandler::OnRemoveVisitsFailed() {
web_ui()->CallJavascriptFunctionUnsafe("deleteFailed");
}
void BrowsingHistoryHandler::HistoryDeleted() {
web_ui()->CallJavascriptFunctionUnsafe("historyDeleted");
}
void BrowsingHistoryHandler::HasOtherFormsOfBrowsingHistory(
bool has_other_forms,
bool has_synced_results) {
web_ui()->CallJavascriptFunctionUnsafe("showNotification",
base::Value(has_other_forms));
}
Profile* BrowsingHistoryHandler::GetProfile() {
return Profile::FromWebUI(web_ui());
}