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
|
// Copyright (c) 2012 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 <set>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/i18n/rtl.h"
#include "base/i18n/time_formatting.h"
#include "base/memory/singleton.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/histogram.h"
#include "base/prefs/pref_service.h"
#include "base/strings/string16.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/history/history_notifications.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/history/web_history_service.h"
#include "chrome/browser/history/web_history_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/browser/sync/profile_sync_service.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/browser/ui/webui/metrics_handler.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/browser/bookmark_utils.h"
#include "components/history/core/browser/history_types.h"
#include "components/search/search.h"
#include "components/signin/core/browser/signin_manager.h"
#include "components/sync_driver/device_info.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/url_data_source.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "grit/browser_resources.h"
#include "grit/theme_resources.h"
#include "net/base/escape.h"
#include "net/base/net_util.h"
#include "sync/protocol/history_delete_directive_specifics.pb.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/l10n/time_format.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/webui/web_ui_util.h"
#if defined(ENABLE_EXTENSIONS)
#include "chrome/browser/extensions/activity_log/activity_log.h"
#endif
#if defined(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
#if defined(OS_ANDROID)
#include "chrome/browser/android/chromium_application.h"
#endif
#if !defined(OS_ANDROID) && !defined(OS_IOS)
#include "chrome/browser/ui/webui/ntp/foreign_session_handler.h"
#include "chrome/browser/ui/webui/ntp/ntp_login_handler.h"
#endif
static const char kStringsJsFile[] = "strings.js";
static const char kHistoryJsFile[] = "history.js";
static const char kOtherDevicesJsFile[] = "other_devices.js";
// The amount of time to wait for a response from the WebHistoryService.
static const int kWebHistoryTimeoutSeconds = 3;
namespace {
// Buckets for UMA histograms.
enum WebHistoryQueryBuckets {
WEB_HISTORY_QUERY_FAILED = 0,
WEB_HISTORY_QUERY_SUCCEEDED,
WEB_HISTORY_QUERY_TIMED_OUT,
NUM_WEB_HISTORY_QUERY_BUCKETS
};
#if defined(OS_MACOSX)
const char kIncognitoModeShortcut[] = "("
"\xE2\x87\xA7" // Shift symbol (U+21E7 'UPWARDS WHITE ARROW').
"\xE2\x8C\x98" // Command symbol (U+2318 'PLACE OF INTEREST SIGN').
"N)";
#elif defined(OS_WIN)
const char kIncognitoModeShortcut[] = "(Ctrl+Shift+N)";
#else
const char kIncognitoModeShortcut[] = "(Shift+Ctrl+N)";
#endif
// 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";
content::WebUIDataSource* CreateHistoryUIHTMLSource(Profile* profile) {
PrefService* prefs = profile->GetPrefs();
// Check if the profile is authenticated. Guest profiles or incognito
// windows may not have a sign in manager, and are considered not
// authenticated.
SigninManagerBase* signin_manager =
SigninManagerFactory::GetForProfile(profile);
bool is_authenticated = signin_manager != nullptr &&
signin_manager->IsAuthenticated();
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIHistoryFrameHost);
source->AddBoolean("isUserSignedIn", is_authenticated);
source->AddLocalizedString("collapseSessionMenuItemText",
IDS_NEW_TAB_OTHER_SESSIONS_COLLAPSE_SESSION);
source->AddLocalizedString("expandSessionMenuItemText",
IDS_NEW_TAB_OTHER_SESSIONS_EXPAND_SESSION);
source->AddLocalizedString("restoreSessionMenuItemText",
IDS_NEW_TAB_OTHER_SESSIONS_OPEN_ALL);
source->AddLocalizedString("xMore", IDS_OTHER_DEVICES_X_MORE);
source->AddLocalizedString("loading", IDS_HISTORY_LOADING);
source->AddLocalizedString("title", IDS_HISTORY_TITLE);
source->AddLocalizedString("newest", IDS_HISTORY_NEWEST);
source->AddLocalizedString("newer", IDS_HISTORY_NEWER);
source->AddLocalizedString("older", IDS_HISTORY_OLDER);
source->AddLocalizedString("searchResultsFor", IDS_HISTORY_SEARCHRESULTSFOR);
source->AddLocalizedString("searchResult", IDS_HISTORY_SEARCH_RESULT);
source->AddLocalizedString("searchResults", IDS_HISTORY_SEARCH_RESULTS);
source->AddLocalizedString("foundSearchResults",
IDS_HISTORY_FOUND_SEARCH_RESULTS);
source->AddLocalizedString("history", IDS_HISTORY_BROWSERESULTS);
source->AddLocalizedString("cont", IDS_HISTORY_CONTINUED);
source->AddLocalizedString("searchButton", IDS_HISTORY_SEARCH_BUTTON);
source->AddLocalizedString("noSearchResults", IDS_HISTORY_NO_SEARCH_RESULTS);
source->AddLocalizedString("noResults", IDS_HISTORY_NO_RESULTS);
source->AddLocalizedString("historyInterval", IDS_HISTORY_INTERVAL);
source->AddLocalizedString("removeSelected",
IDS_HISTORY_REMOVE_SELECTED_ITEMS);
source->AddLocalizedString("clearAllHistory",
IDS_HISTORY_OPEN_CLEAR_BROWSING_DATA_DIALOG);
source->AddString(
"deleteWarning",
l10n_util::GetStringFUTF16(IDS_HISTORY_DELETE_PRIOR_VISITS_WARNING,
base::UTF8ToUTF16(kIncognitoModeShortcut)));
source->AddLocalizedString("removeBookmark", IDS_HISTORY_REMOVE_BOOKMARK);
source->AddLocalizedString("actionMenuDescription",
IDS_HISTORY_ACTION_MENU_DESCRIPTION);
source->AddLocalizedString("removeFromHistory", IDS_HISTORY_REMOVE_PAGE);
source->AddLocalizedString("moreFromSite", IDS_HISTORY_MORE_FROM_SITE);
source->AddLocalizedString("groupByDomainLabel", IDS_GROUP_BY_DOMAIN_LABEL);
source->AddLocalizedString("rangeLabel", IDS_HISTORY_RANGE_LABEL);
source->AddLocalizedString("rangeAllTime", IDS_HISTORY_RANGE_ALL_TIME);
source->AddLocalizedString("rangeWeek", IDS_HISTORY_RANGE_WEEK);
source->AddLocalizedString("rangeMonth", IDS_HISTORY_RANGE_MONTH);
source->AddLocalizedString("rangeToday", IDS_HISTORY_RANGE_TODAY);
source->AddLocalizedString("rangeNext", IDS_HISTORY_RANGE_NEXT);
source->AddLocalizedString("rangePrevious", IDS_HISTORY_RANGE_PREVIOUS);
source->AddLocalizedString("numberVisits", IDS_HISTORY_NUMBER_VISITS);
source->AddLocalizedString("filterAllowed", IDS_HISTORY_FILTER_ALLOWED);
source->AddLocalizedString("filterBlocked", IDS_HISTORY_FILTER_BLOCKED);
source->AddLocalizedString("inContentPack", IDS_HISTORY_IN_CONTENT_PACK);
source->AddLocalizedString("allowItems", IDS_HISTORY_FILTER_ALLOW_ITEMS);
source->AddLocalizedString("blockItems", IDS_HISTORY_FILTER_BLOCK_ITEMS);
source->AddLocalizedString("lockButton", IDS_HISTORY_LOCK_BUTTON);
source->AddLocalizedString("blockedVisitText",
IDS_HISTORY_BLOCKED_VISIT_TEXT);
source->AddLocalizedString("unlockButton", IDS_HISTORY_UNLOCK_BUTTON);
source->AddLocalizedString("hasSyncedResults",
IDS_HISTORY_HAS_SYNCED_RESULTS);
source->AddLocalizedString("noSyncedResults", IDS_HISTORY_NO_SYNCED_RESULTS);
source->AddLocalizedString("cancel", IDS_CANCEL);
source->AddLocalizedString("deleteConfirm",
IDS_HISTORY_DELETE_PRIOR_VISITS_CONFIRM_BUTTON);
source->AddLocalizedString("bookmarked", IDS_HISTORY_ENTRY_BOOKMARKED);
source->AddLocalizedString("entrySummary", IDS_HISTORY_ENTRY_SUMMARY);
source->AddBoolean("isFullHistorySyncEnabled",
WebHistoryServiceFactory::GetForProfile(profile) != NULL);
source->AddBoolean("groupByDomain",
profile->IsSupervised() ||
base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kHistoryEnableGroupByDomain));
bool allow_deleting_history =
prefs->GetBoolean(prefs::kAllowDeletingBrowserHistory);
source->AddBoolean("allowDeletingHistory", allow_deleting_history);
source->AddBoolean("isInstantExtendedApiEnabled",
chrome::IsInstantExtendedAPIEnabled());
source->AddBoolean("isSupervisedProfile", profile->IsSupervised());
source->AddBoolean("hideDeleteVisitUI",
profile->IsSupervised() && !allow_deleting_history);
source->SetJsonPath(kStringsJsFile);
source->AddResourcePath(kHistoryJsFile, IDR_HISTORY_JS);
source->AddResourcePath(kOtherDevicesJsFile, IDR_OTHER_DEVICES_JS);
source->SetDefaultResource(IDR_HISTORY_HTML);
source->DisableDenyXFrameOptions();
return source;
}
// Returns a localized version of |visit_time| including a relative
// indicator (e.g. today, yesterday).
base::string16 getRelativeDateLocalized(const base::Time& visit_time) {
base::Time midnight = base::Time::Now().LocalMidnight();
base::string16 date_str = ui::TimeFormat::RelativeDate(visit_time, &midnight);
if (date_str.empty()) {
date_str = base::TimeFormatFriendlyDate(visit_time);
} else {
date_str = l10n_util::GetStringFUTF16(
IDS_HISTORY_DATE_WITH_RELATIVE_TIME,
date_str,
base::TimeFormatFriendlyDate(visit_time));
}
return date_str;
}
// Sets the correct year when substracting months from a date.
void normalizeMonths(base::Time::Exploded* exploded) {
// Decrease a year at a time until we have a proper date.
while (exploded->month < 1) {
exploded->month += 12;
exploded->year--;
}
}
// Returns true if |entry| represents a local visit that had no corresponding
// visit on the server.
bool IsLocalOnlyResult(const BrowsingHistoryHandler::HistoryEntry& entry) {
return entry.entry_type == BrowsingHistoryHandler::HistoryEntry::LOCAL_ENTRY;
}
// Gets the name and type of a device for the given sync client ID.
// |name| and |type| are out parameters.
void GetDeviceNameAndType(const ProfileSyncService* sync_service,
const std::string& client_id,
std::string* name,
std::string* type) {
// DeviceInfoTracker becomes available when Sync backend gets initialed.
// It must exist in order for remote history entries to be available.
if (sync_service && sync_service->GetDeviceInfoTracker()) {
scoped_ptr<sync_driver::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;
}
} else {
NOTREACHED() << "Got a remote history entry but no DeviceInfoTracker.";
}
*name = l10n_util::GetStringUTF8(IDS_HISTORY_UNKNOWN_DEVICE);
*type = kDeviceTypeLaptop;
}
} // namespace
////////////////////////////////////////////////////////////////////////////////
//
// BrowsingHistoryHandler
//
////////////////////////////////////////////////////////////////////////////////
BrowsingHistoryHandler::HistoryEntry::HistoryEntry(
BrowsingHistoryHandler::HistoryEntry::EntryType entry_type,
const GURL& url, const base::string16& title, base::Time time,
const std::string& client_id, bool is_search_result,
const base::string16& snippet, bool blocked_visit,
const std::string& accept_languages) {
this->entry_type = entry_type;
this->url = url;
this->title = title;
this->time = time;
this->client_id = client_id;
all_timestamps.insert(time.ToInternalValue());
this->is_search_result = is_search_result;
this->snippet = snippet;
this->blocked_visit = blocked_visit;
this->accept_languages = accept_languages;
}
BrowsingHistoryHandler::HistoryEntry::HistoryEntry()
: entry_type(EMPTY_ENTRY), is_search_result(false), blocked_visit(false) {
}
BrowsingHistoryHandler::HistoryEntry::~HistoryEntry() {
}
void BrowsingHistoryHandler::HistoryEntry::SetUrlAndTitle(
base::DictionaryValue* result) const {
result->SetString("url", url.spec());
bool using_url_as_the_title = false;
base::string16 title_to_set(title);
if (title.empty()) {
using_url_as_the_title = true;
title_to_set = base::UTF8ToUTF16(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);
}
result->SetString("title", title_to_set);
}
scoped_ptr<base::DictionaryValue> BrowsingHistoryHandler::HistoryEntry::ToValue(
BookmarkModel* bookmark_model,
SupervisedUserService* supervised_user_service,
const ProfileSyncService* sync_service) const {
scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue());
SetUrlAndTitle(result.get());
base::string16 domain = net::IDNToUnicode(url.host(), accept_languages);
// 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(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->SetDouble("time", time.ToJsTime());
// Pass the timestamps in a list.
scoped_ptr<base::ListValue> timestamps(new base::ListValue);
for (std::set<int64>::const_iterator it = all_timestamps.begin();
it != all_timestamps.end(); ++it) {
timestamps->AppendDouble(base::Time::FromInternalValue(*it).ToJsTime());
}
result->Set("allTimestamps", timestamps.release());
// Always pass the short date since it is needed both in the search and in
// the monthly view.
result->SetString("dateShort", base::TimeFormatShortDate(time));
// Only pass in the strings we need (search results need a shortdate
// and snippet, browse results need day and time information).
if (is_search_result) {
result->SetString("snippet", snippet);
} else {
base::Time midnight = base::Time::Now().LocalMidnight();
base::string16 date_str = ui::TimeFormat::RelativeDate(time, &midnight);
if (date_str.empty()) {
date_str = base::TimeFormatFriendlyDate(time);
} else {
date_str = l10n_util::GetStringFUTF16(
IDS_HISTORY_DATE_WITH_RELATIVE_TIME,
date_str,
base::TimeFormatFriendlyDate(time));
}
result->SetString("dateRelativeDay", date_str);
result->SetString("dateTimeOfDay", base::TimeFormatTimeOfDay(time));
}
result->SetBoolean("starred", bookmark_model->IsBookmarked(url));
std::string device_name;
std::string device_type;
if (!client_id.empty())
GetDeviceNameAndType(sync_service, client_id, &device_name, &device_type);
result->SetString("deviceName", device_name);
result->SetString("deviceType", device_type);
#if defined(ENABLE_SUPERVISED_USERS)
if (supervised_user_service) {
const SupervisedUserURLFilter* url_filter =
supervised_user_service->GetURLFilterForUIThread();
int filtering_behavior =
url_filter->GetFilteringBehaviorForURL(url.GetWithEmptyPath());
result->SetInteger("hostFilteringBehavior", filtering_behavior);
result->SetBoolean("blockedVisit", blocked_visit);
}
#endif
return result.Pass();
}
bool BrowsingHistoryHandler::HistoryEntry::SortByTimeDescending(
const BrowsingHistoryHandler::HistoryEntry& entry1,
const BrowsingHistoryHandler::HistoryEntry& entry2) {
return entry1.time > entry2.time;
}
BrowsingHistoryHandler::BrowsingHistoryHandler()
: has_pending_delete_request_(false),
weak_factory_(this) {
}
BrowsingHistoryHandler::~BrowsingHistoryHandler() {
query_task_tracker_.TryCancelAll();
web_history_request_.reset();
}
void BrowsingHistoryHandler::RegisterMessages() {
// Create our favicon data source.
Profile* profile = Profile::FromWebUI(web_ui());
content::URLDataSource::Add(
profile, new FaviconSource(profile, FaviconSource::ANY));
// Get notifications when history is cleared.
registrar_.Add(this, chrome::NOTIFICATION_HISTORY_URLS_DELETED,
content::Source<Profile>(profile->GetOriginalProfile()));
web_ui()->RegisterMessageCallback("queryHistory",
base::Bind(&BrowsingHistoryHandler::HandleQueryHistory,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("removeVisits",
base::Bind(&BrowsingHistoryHandler::HandleRemoveVisits,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("clearBrowsingData",
base::Bind(&BrowsingHistoryHandler::HandleClearBrowsingData,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("removeBookmark",
base::Bind(&BrowsingHistoryHandler::HandleRemoveBookmark,
base::Unretained(this)));
}
bool BrowsingHistoryHandler::ExtractIntegerValueAtIndex(
const base::ListValue* value,
int index,
int* out_int) {
double double_value;
if (value->GetDouble(index, &double_value)) {
*out_int = static_cast<int>(double_value);
return true;
}
NOTREACHED();
return false;
}
void BrowsingHistoryHandler::WebHistoryTimeout() {
// TODO(dubroy): Communicate the failure to the front end.
if (!query_task_tracker_.HasTrackedTasks())
ReturnResultsToFrontEnd();
UMA_HISTOGRAM_ENUMERATION(
"WebHistory.QueryCompletion",
WEB_HISTORY_QUERY_TIMED_OUT, NUM_WEB_HISTORY_QUERY_BUCKETS);
}
void BrowsingHistoryHandler::QueryHistory(
base::string16 search_text, const history::QueryOptions& options) {
Profile* profile = Profile::FromWebUI(web_ui());
// Anything in-flight is invalid.
query_task_tracker_.TryCancelAll();
web_history_request_.reset();
query_results_.clear();
results_info_value_.Clear();
HistoryService* hs = HistoryServiceFactory::GetForProfile(
profile, Profile::EXPLICIT_ACCESS);
hs->QueryHistory(search_text,
options,
base::Bind(&BrowsingHistoryHandler::QueryComplete,
base::Unretained(this),
search_text,
options),
&query_task_tracker_);
history::WebHistoryService* web_history =
WebHistoryServiceFactory::GetForProfile(profile);
if (web_history) {
web_history_query_results_.clear();
web_history_request_ = web_history->QueryHistory(
search_text,
options,
base::Bind(&BrowsingHistoryHandler::WebHistoryQueryComplete,
base::Unretained(this),
search_text, options,
base::TimeTicks::Now()));
// Start a timer so we know when to give up.
web_history_timer_.Start(
FROM_HERE, base::TimeDelta::FromSeconds(kWebHistoryTimeoutSeconds),
this, &BrowsingHistoryHandler::WebHistoryTimeout);
// Set this to false until the results actually arrive.
results_info_value_.SetBoolean("hasSyncedResults", false);
}
}
void BrowsingHistoryHandler::HandleQueryHistory(const base::ListValue* args) {
history::QueryOptions options;
// Parse the arguments from JavaScript. There are five required arguments:
// - the text to search for (may be empty)
// - the offset from which the search should start (in multiples of week or
// month, set by the next argument).
// - the range (BrowsingHistoryHandler::Range) Enum value that sets the range
// of the query.
// - the end time for the query. Only results older than this time will be
// returned.
// - the maximum number of results to return (may be 0, meaning that there
// is no maximum).
base::string16 search_text = ExtractStringValue(args);
int offset;
if (!args->GetInteger(1, &offset)) {
NOTREACHED() << "Failed to convert argument 1. ";
return;
}
int range;
if (!args->GetInteger(2, &range)) {
NOTREACHED() << "Failed to convert argument 2. ";
return;
}
if (range == BrowsingHistoryHandler::MONTH)
SetQueryTimeInMonths(offset, &options);
else if (range == BrowsingHistoryHandler::WEEK)
SetQueryTimeInWeeks(offset, &options);
double end_time;
if (!args->GetDouble(3, &end_time)) {
NOTREACHED() << "Failed to convert argument 3. ";
return;
}
if (end_time)
options.end_time = base::Time::FromJsTime(end_time);
if (!ExtractIntegerValueAtIndex(args, 4, &options.max_count)) {
NOTREACHED() << "Failed to convert argument 4.";
return;
}
options.duplicate_policy = history::QueryOptions::REMOVE_DUPLICATES_PER_DAY;
QueryHistory(search_text, options);
}
void BrowsingHistoryHandler::HandleRemoveVisits(const base::ListValue* args) {
Profile* profile = Profile::FromWebUI(web_ui());
// TODO(davidben): history.js is not aware of this failure and will still
// override |deleteCompleteCallback_|.
if (delete_task_tracker_.HasTrackedTasks() ||
has_pending_delete_request_ ||
!profile->GetPrefs()->GetBoolean(prefs::kAllowDeletingBrowserHistory)) {
web_ui()->CallJavascriptFunction("deleteFailed");
return;
}
HistoryService* history_service =
HistoryServiceFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS);
history::WebHistoryService* web_history =
WebHistoryServiceFactory::GetForProfile(profile);
base::Time now = base::Time::Now();
std::vector<history::ExpireHistoryArgs> expire_list;
expire_list.reserve(args->GetSize());
DCHECK(urls_to_be_deleted_.empty());
for (base::ListValue::const_iterator it = args->begin();
it != args->end(); ++it) {
base::DictionaryValue* deletion = NULL;
base::string16 url;
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", ×tamps))) {
NOTREACHED() << "Unable to extract arguments";
return;
}
DCHECK(timestamps->GetSize() > 0);
// In order to ensure that visits will be deleted from the server and other
// clients (even if they are offline), create a sync delete directive for
// each visit to be deleted.
sync_pb::HistoryDeleteDirectiveSpecifics delete_directive;
sync_pb::GlobalIdDirective* global_id_directive =
delete_directive.mutable_global_id_directive();
double timestamp;
history::ExpireHistoryArgs* expire_args = NULL;
for (base::ListValue::const_iterator ts_iterator = timestamps->begin();
ts_iterator != timestamps->end(); ++ts_iterator) {
if (!(*ts_iterator)->GetAsDouble(×tamp)) {
NOTREACHED() << "Unable to extract visit timestamp.";
continue;
}
base::Time visit_time = base::Time::FromJsTime(timestamp);
if (!expire_args) {
GURL gurl(url);
expire_list.resize(expire_list.size() + 1);
expire_args = &expire_list.back();
expire_args->SetTimeRangeForOneDay(visit_time);
expire_args->urls.insert(gurl);
urls_to_be_deleted_.insert(gurl);
}
// The local visit time is treated as a global ID for the visit.
global_id_directive->add_global_id(visit_time.ToInternalValue());
}
// Set the start and end time in microseconds since the Unix epoch.
global_id_directive->set_start_time_usec(
(expire_args->begin_time - base::Time::UnixEpoch()).InMicroseconds());
// Delete directives shouldn't have an end time in the future.
// TODO(dubroy): Use sane time (crbug.com/146090) here when it's ready.
base::Time end_time = std::min(expire_args->end_time, now);
// -1 because end time in delete directives is inclusive.
global_id_directive->set_end_time_usec(
(end_time - base::Time::UnixEpoch()).InMicroseconds() - 1);
// TODO(dubroy): Figure out the proper way to handle an error here.
if (web_history)
history_service->ProcessLocalDeleteDirective(delete_directive);
}
history_service->ExpireHistory(
expire_list,
base::Bind(&BrowsingHistoryHandler::RemoveComplete,
base::Unretained(this)),
&delete_task_tracker_);
if (web_history) {
has_pending_delete_request_ = true;
web_history->ExpireHistory(
expire_list,
base::Bind(&BrowsingHistoryHandler::RemoveWebHistoryComplete,
weak_factory_.GetWeakPtr()));
}
#if defined(ENABLE_EXTENSIONS)
// If the profile has activity logging enabled also clean up any URLs from
// the extension activity log. The extension activity log contains URLS
// which websites an extension has activity on so it will indirectly
// contain websites that a user has visited.
extensions::ActivityLog* activity_log =
extensions::ActivityLog::GetInstance(profile);
for (std::vector<history::ExpireHistoryArgs>::const_iterator it =
expire_list.begin(); it != expire_list.end(); ++it) {
activity_log->RemoveURLs(it->urls);
}
#endif
}
void BrowsingHistoryHandler::HandleClearBrowsingData(
const base::ListValue* args) {
#if defined(OS_ANDROID)
chrome::android::ChromiumApplication::OpenClearBrowsingData(
web_ui()->GetWebContents());
#else
// 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);
#endif
}
void BrowsingHistoryHandler::HandleRemoveBookmark(const base::ListValue* args) {
base::string16 url = ExtractStringValue(args);
Profile* profile = Profile::FromWebUI(web_ui());
BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile);
bookmarks::RemoveAllBookmarks(model, GURL(url));
}
// static
void BrowsingHistoryHandler::MergeDuplicateResults(
std::vector<BrowsingHistoryHandler::HistoryEntry>* results) {
std::vector<BrowsingHistoryHandler::HistoryEntry> new_results;
// Pre-reserve the size of the new vector. Since we're working with pointers
// later on not doing this could lead to the vector being resized and to
// pointers to invalid locations.
new_results.reserve(results->size());
// Maps a URL to the most recent entry on a particular day.
std::map<GURL, BrowsingHistoryHandler::HistoryEntry*> current_day_entries;
// Keeps track of the day that |current_day_urls| is holding the URLs for,
// in order to handle removing per-day duplicates.
base::Time current_day_midnight;
std::sort(
results->begin(), results->end(), HistoryEntry::SortByTimeDescending);
for (std::vector<BrowsingHistoryHandler::HistoryEntry>::const_iterator it =
results->begin(); it != results->end(); ++it) {
// Reset the list of found URLs when a visit from a new day is encountered.
if (current_day_midnight != it->time.LocalMidnight()) {
current_day_entries.clear();
current_day_midnight = it->time.LocalMidnight();
}
// Keep this visit if it's the first visit to this URL on the current day.
if (current_day_entries.count(it->url) == 0) {
new_results.push_back(*it);
current_day_entries[it->url] = &new_results.back();
} else {
// Keep track of the timestamps of all visits to the URL on the same day.
BrowsingHistoryHandler::HistoryEntry* entry =
current_day_entries[it->url];
entry->all_timestamps.insert(
it->all_timestamps.begin(), it->all_timestamps.end());
if (entry->entry_type != it->entry_type) {
entry->entry_type =
BrowsingHistoryHandler::HistoryEntry::COMBINED_ENTRY;
}
}
}
results->swap(new_results);
}
void BrowsingHistoryHandler::ReturnResultsToFrontEnd() {
Profile* profile = Profile::FromWebUI(web_ui());
BookmarkModel* bookmark_model = BookmarkModelFactory::GetForProfile(profile);
SupervisedUserService* supervised_user_service = NULL;
#if defined(ENABLE_SUPERVISED_USERS)
if (profile->IsSupervised())
supervised_user_service =
SupervisedUserServiceFactory::GetForProfile(profile);
#endif
ProfileSyncService* sync_service =
ProfileSyncServiceFactory::GetInstance()->GetForProfile(profile);
// Combine the local and remote results into |query_results_|, and remove
// any duplicates.
if (!web_history_query_results_.empty()) {
int local_result_count = query_results_.size();
query_results_.insert(query_results_.end(),
web_history_query_results_.begin(),
web_history_query_results_.end());
MergeDuplicateResults(&query_results_);
if (local_result_count) {
// In the best case, we expect that all local results are duplicated on
// the server. Keep track of how many are missing.
int missing_count = std::count_if(
query_results_.begin(), query_results_.end(), IsLocalOnlyResult);
UMA_HISTOGRAM_PERCENTAGE("WebHistory.LocalResultMissingOnServer",
missing_count * 100.0 / local_result_count);
}
}
// Convert the result vector into a ListValue.
base::ListValue results_value;
for (std::vector<BrowsingHistoryHandler::HistoryEntry>::iterator it =
query_results_.begin(); it != query_results_.end(); ++it) {
scoped_ptr<base::Value> value(
it->ToValue(bookmark_model, supervised_user_service, sync_service));
results_value.Append(value.release());
}
web_ui()->CallJavascriptFunction(
"historyResult", results_info_value_, results_value);
results_info_value_.Clear();
query_results_.clear();
web_history_query_results_.clear();
}
void BrowsingHistoryHandler::QueryComplete(
const base::string16& search_text,
const history::QueryOptions& options,
history::QueryResults* results) {
DCHECK_EQ(0U, query_results_.size());
query_results_.reserve(results->size());
const std::string accept_languages = GetAcceptLanguages();
for (size_t i = 0; i < results->size(); ++i) {
history::URLResult const &page = (*results)[i];
// TODO(dubroy): Use sane time (crbug.com/146090) here when it's ready.
query_results_.push_back(
HistoryEntry(
HistoryEntry::LOCAL_ENTRY,
page.url(),
page.title(),
page.visit_time(),
std::string(),
!search_text.empty(),
page.snippet().text(),
page.blocked_visit(),
accept_languages));
}
// 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_value_.SetString("term", search_text);
results_info_value_.SetBoolean("finished", results->reached_beginning());
// Add the specific dates that were searched to display them.
// TODO(sergiu): Put today if the start is in the future.
results_info_value_.SetString("queryStartTime",
getRelativeDateLocalized(options.begin_time));
if (!options.end_time.is_null()) {
results_info_value_.SetString("queryEndTime",
getRelativeDateLocalized(options.end_time -
base::TimeDelta::FromDays(1)));
} else {
results_info_value_.SetString("queryEndTime",
getRelativeDateLocalized(base::Time::Now()));
}
if (!web_history_timer_.IsRunning())
ReturnResultsToFrontEnd();
}
void BrowsingHistoryHandler::WebHistoryQueryComplete(
const base::string16& search_text,
const history::QueryOptions& options,
base::TimeTicks start_time,
history::WebHistoryService::Request* request,
const base::DictionaryValue* results_value) {
base::TimeDelta delta = base::TimeTicks::Now() - start_time;
UMA_HISTOGRAM_TIMES("WebHistory.ResponseTime", delta);
const std::string accept_languages = GetAcceptLanguages();
// If the response came in too late, do nothing.
// TODO(dubroy): Maybe show a banner, and prompt the user to reload?
if (!web_history_timer_.IsRunning())
return;
web_history_timer_.Stop();
UMA_HISTOGRAM_ENUMERATION(
"WebHistory.QueryCompletion",
results_value ? WEB_HISTORY_QUERY_SUCCEEDED : WEB_HISTORY_QUERY_FAILED,
NUM_WEB_HISTORY_QUERY_BUCKETS);
DCHECK_EQ(0U, web_history_query_results_.size());
const base::ListValue* events = NULL;
if (results_value && results_value->GetList("event", &events)) {
web_history_query_results_.reserve(events->GetSize());
for (unsigned int i = 0; i < events->GetSize(); ++i) {
const base::DictionaryValue* event = NULL;
const base::DictionaryValue* result = NULL;
const base::ListValue* results = NULL;
const base::ListValue* ids = NULL;
base::string16 url;
base::string16 title;
base::Time visit_time;
if (!(events->GetDictionary(i, &event) &&
event->GetList("result", &results) &&
results->GetDictionary(0, &result) &&
result->GetString("url", &url) &&
result->GetList("id", &ids) &&
ids->GetSize() > 0)) {
LOG(WARNING) << "Improperly formed JSON response from history server.";
continue;
}
// Title is optional, so the return value is ignored here.
result->GetString("title", &title);
// Extract the timestamps of all the visits to this URL.
// They are referred to as "IDs" by the server.
for (int j = 0; j < static_cast<int>(ids->GetSize()); ++j) {
const base::DictionaryValue* id = NULL;
std::string timestamp_string;
int64 timestamp_usec = 0;
if (!ids->GetDictionary(j, &id) ||
!id->GetString("timestamp_usec", ×tamp_string) ||
!base::StringToInt64(timestamp_string, ×tamp_usec)) {
NOTREACHED() << "Unable to extract timestamp.";
continue;
}
// The timestamp on the server is a Unix time.
base::Time time = base::Time::UnixEpoch() +
base::TimeDelta::FromMicroseconds(timestamp_usec);
// Get the ID of the client that this visit came from.
std::string client_id;
id->GetString("client_id", &client_id);
web_history_query_results_.push_back(
HistoryEntry(
HistoryEntry::REMOTE_ENTRY,
GURL(url),
title,
time,
client_id,
!search_text.empty(),
base::string16(),
/* blocked_visit */ false,
accept_languages));
}
}
} else if (results_value) {
NOTREACHED() << "Failed to parse JSON response.";
}
results_info_value_.SetBoolean("hasSyncedResults", results_value != NULL);
if (!query_task_tracker_.HasTrackedTasks())
ReturnResultsToFrontEnd();
}
void BrowsingHistoryHandler::RemoveComplete() {
urls_to_be_deleted_.clear();
// Notify the page that the deletion request is complete, but only if a web
// history delete request is not still pending.
if (!has_pending_delete_request_)
web_ui()->CallJavascriptFunction("deleteComplete");
}
void BrowsingHistoryHandler::RemoveWebHistoryComplete(bool success) {
has_pending_delete_request_ = false;
// TODO(dubroy): Should we handle failure somehow? Delete directives will
// ensure that the visits are eventually deleted, so maybe it's not necessary.
if (!delete_task_tracker_.HasTrackedTasks())
RemoveComplete();
}
void BrowsingHistoryHandler::SetQueryTimeInWeeks(
int offset, history::QueryOptions* options) {
// LocalMidnight returns the beginning of the current day so get the
// beginning of the next one.
base::Time midnight = base::Time::Now().LocalMidnight() +
base::TimeDelta::FromDays(1);
options->end_time = midnight -
base::TimeDelta::FromDays(7 * offset);
options->begin_time = midnight -
base::TimeDelta::FromDays(7 * (offset + 1));
}
void BrowsingHistoryHandler::SetQueryTimeInMonths(
int offset, history::QueryOptions* options) {
// Configure the begin point of the search to the start of the
// current month.
base::Time::Exploded exploded;
base::Time::Now().LocalMidnight().LocalExplode(&exploded);
exploded.day_of_month = 1;
if (offset == 0) {
options->begin_time = base::Time::FromLocalExploded(exploded);
// Set the end time of this first search to null (which will
// show results from the future, should the user's clock have
// been set incorrectly).
options->end_time = base::Time();
} else {
// Go back |offset| months in the past. The end time is not inclusive, so
// use the first day of the |offset| - 1 and |offset| months (e.g. for
// the last month, |offset| = 1, use the first days of the last month and
// the current month.
exploded.month -= offset - 1;
// Set the correct year.
normalizeMonths(&exploded);
options->end_time = base::Time::FromLocalExploded(exploded);
exploded.month -= 1;
// Set the correct year
normalizeMonths(&exploded);
options->begin_time = base::Time::FromLocalExploded(exploded);
}
}
// Helper function for Observe that determines if there are any differences
// between the URLs noticed for deletion and the ones we are expecting.
static bool DeletionsDiffer(const history::URLRows& deleted_rows,
const std::set<GURL>& urls_to_be_deleted) {
if (deleted_rows.size() != urls_to_be_deleted.size())
return true;
for (history::URLRows::const_iterator i = deleted_rows.begin();
i != deleted_rows.end(); ++i) {
if (urls_to_be_deleted.find(i->url()) == urls_to_be_deleted.end())
return true;
}
return false;
}
void BrowsingHistoryHandler::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
if (type != chrome::NOTIFICATION_HISTORY_URLS_DELETED) {
NOTREACHED();
return;
}
history::URLsDeletedDetails* deletedDetails =
content::Details<history::URLsDeletedDetails>(details).ptr();
if (deletedDetails->all_history ||
DeletionsDiffer(deletedDetails->rows, urls_to_be_deleted_))
web_ui()->CallJavascriptFunction("historyDeleted");
}
std::string BrowsingHistoryHandler::GetAcceptLanguages() const {
Profile* profile = Profile::FromWebUI(web_ui());
return profile->GetPrefs()->GetString(prefs::kAcceptLanguages);
}
////////////////////////////////////////////////////////////////////////////////
//
// HistoryUI
//
////////////////////////////////////////////////////////////////////////////////
HistoryUI::HistoryUI(content::WebUI* web_ui) : WebUIController(web_ui) {
web_ui->AddMessageHandler(new BrowsingHistoryHandler());
web_ui->AddMessageHandler(new MetricsHandler());
// On mobile we deal with foreign sessions differently.
#if !defined(OS_ANDROID) && !defined(OS_IOS)
if (chrome::IsInstantExtendedAPIEnabled()) {
web_ui->AddMessageHandler(new browser_sync::ForeignSessionHandler());
web_ui->AddMessageHandler(new NTPLoginHandler());
}
#endif
// Set up the chrome://history-frame/ source.
Profile* profile = Profile::FromWebUI(web_ui);
content::WebUIDataSource::Add(profile, CreateHistoryUIHTMLSource(profile));
}
// static
base::RefCountedMemory* HistoryUI::GetFaviconResourceBytes(
ui::ScaleFactor scale_factor) {
return ResourceBundle::GetSharedInstance().
LoadDataResourceBytesForScale(IDR_HISTORY_FAVICON, scale_factor);
}
|