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 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
|
// Copyright 2015 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/profiles/profile_attributes_entry.h"
#include <optional>
#include <utility>
#include <vector>
#include "base/hash/hash.h"
#include "base/logging.h"
#include "base/notreached.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "chrome/browser/signin/signin_util.h"
#include "chrome/browser/ui/profiles/profile_colors_util.h"
#include "chrome/common/pref_names.h"
#include "components/policy/core/browser/browser_policy_connector.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "components/profile_metrics/state.h"
#include "components/signin/public/base/signin_pref_names.h"
#include "components/signin/public/base/signin_switches.h"
#include "components/signin/public/identity_manager/account_info.h"
#include "google_apis/gaia/gaia_id.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/image/canvas_image_source.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/native_theme/native_theme.h"
#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/themes/theme_properties.h" // nogncheck crbug.com/1125897
#endif
namespace {
const char kGAIAGivenNameKey[] = "gaia_given_name";
const char kGAIANameKey[] = "gaia_name";
const char kShortcutNameKey[] = "shortcut_name";
const char kActiveTimeKey[] = "active_time";
const char kMetricsBucketIndex[] = "metrics_bucket_index";
const char kForceSigninProfileLockedKey[] = "force_signin_profile_locked";
const char kHostedDomain[] = "hosted_domain";
const char kOIDCIdentityNameKey[] = "oidc_identity_name";
const char kProfileManagementEnrollmentToken[] =
"profile_management_enrollment_token";
const char kDasherlessManagement[] = "dasherless_management";
const char kProfileManagementOidcAuthToken[] =
"profile_management_oidc_auth_token";
const char kProfileManagementOidcIdToken[] = "profile_management_oidc_id_token";
const char kProfileManagementId[] = "profile_management_id";
const char kProfileManagementOidcState[] = "profile_management_oidc_state";
const char kUserAcceptedAccountManagement[] =
"user_accepted_account_management";
// All accounts info. This is a dictionary containing sub-dictionaries of
// account information, keyed by the gaia ID. The sub-dictionaries are empty for
// now but can be populated in the future. Example for two accounts:
//
// "all_accounts": {
// "gaia_id1": {},
// "gaia_id2": {}
// }
const char kAllAccountsKey[] = "all_accounts";
// Avatar info.
const char kLastDownloadedGAIAPictureUrlWithSizeKey[] =
"last_downloaded_gaia_picture_url_with_size";
const char kGAIAPictureFileNameKey[] = "gaia_picture_file_name";
// Profile colors info.
const char kProfileHighlightColorKey[] = "profile_highlight_color";
const char kDefaultAvatarFillColorKey[] = "default_avatar_fill_color";
const char kDefaultAvatarStrokeColorKey[] = "default_avatar_stroke_color";
const char kProfileColorSeedKey[] = "profile_color_seed";
// Low-entropy accounts info, for metrics only.
const char kFirstAccountNameHash[] = "first_account_name_hash";
const char kHasMultipleAccountNames[] = "has_multiple_account_names";
// Local state pref to keep track of the next available profile bucket.
const char kNextMetricsBucketIndex[] = "profile.metrics.next_bucket_index";
// Deprecated 3/2023.
const char kAccountCategories[] = "account_categories";
constexpr int kIntegerNotSet = -1;
// Number of distinct low-entropy hash values. Changing this value invalidates
// existing persisted hashes.
constexpr int kNumberOfLowEntropyHashValues = 1024;
// Returns the next available metrics bucket index and increases the index
// counter. I.e. two consecutive calls will return two consecutive numbers.
int NextAvailableMetricsBucketIndex() {
PrefService* local_prefs = g_browser_process->local_state();
int next_index = local_prefs->GetInteger(kNextMetricsBucketIndex);
DCHECK_GT(next_index, 0);
local_prefs->SetInteger(kNextMetricsBucketIndex, next_index + 1);
return next_index;
}
int GetLowEntropyHashValue(const std::string& value) {
return base::PersistentHash(value) % kNumberOfLowEntropyHashValues;
}
} // namespace
using profiles::PlaceholderAvatarIconParams;
const char ProfileAttributesEntry::kSupervisedUserId[] = "managed_user_id";
const char ProfileAttributesEntry::kAvatarIconKey[] = "avatar_icon";
const char ProfileAttributesEntry::kBackgroundAppsKey[] = "background_apps";
const char ProfileAttributesEntry::kProfileIsEphemeral[] = "is_ephemeral";
const char ProfileAttributesEntry::kUserNameKey[] = "user_name";
const char ProfileAttributesEntry::kGAIAIdKey[] = "gaia_id";
const char ProfileAttributesEntry::kIsConsentedPrimaryAccountKey[] =
"is_consented_primary_account";
const char ProfileAttributesEntry::kNameKey[] = "name";
const char ProfileAttributesEntry::kEnterpriseLabelKey[] = "enterprise_label";
const char ProfileAttributesEntry::kIsUsingDefaultNameKey[] =
"is_using_default_name";
const char ProfileAttributesEntry::kIsUsingDefaultAvatarKey[] =
"is_using_default_avatar";
const char ProfileAttributesEntry::kUseGAIAPictureKey[] = "use_gaia_picture";
const char ProfileAttributesEntry::kAccountIdKey[] = "account_id_key";
const char ProfileAttributesEntry::kIsGlicEligible[] = "is_glic_eligible";
// static
void ProfileAttributesEntry::RegisterLocalStatePrefs(
PrefRegistrySimple* registry) {
// Bucket 0 is reserved for the guest profile, so start new bucket indices
// at 1.
registry->RegisterIntegerPref(kNextMetricsBucketIndex, 1);
}
ProfileAttributesEntry::ProfileAttributesEntry() = default;
ProfileManagementOidcTokens::ProfileManagementOidcTokens() = default;
ProfileManagementOidcTokens::ProfileManagementOidcTokens(
const std::string& auth_token,
const std::string& id_token,
const std::u16string& identity_name)
: auth_token(auth_token),
id_token(id_token),
identity_name(identity_name) {}
ProfileManagementOidcTokens::ProfileManagementOidcTokens(
const std::string& auth_token,
const std::string& id_token,
const std::string& state)
: auth_token(auth_token), id_token(id_token), state(state) {}
ProfileManagementOidcTokens::ProfileManagementOidcTokens(
const std::string& encrypted_user_info)
: auth_token(""), id_token(encrypted_user_info), is_token_encrypted(true) {}
ProfileManagementOidcTokens::ProfileManagementOidcTokens(
ProfileManagementOidcTokens&& other) = default;
ProfileManagementOidcTokens& ProfileManagementOidcTokens::operator=(
ProfileManagementOidcTokens&& other) = default;
ProfileManagementOidcTokens::ProfileManagementOidcTokens(
const ProfileManagementOidcTokens& other) = default;
ProfileManagementOidcTokens& ProfileManagementOidcTokens::operator=(
const ProfileManagementOidcTokens& other) = default;
ProfileManagementOidcTokens::~ProfileManagementOidcTokens() = default;
void ProfileAttributesEntry::Initialize(ProfileAttributesStorage* storage,
const base::FilePath& path,
PrefService* prefs) {
DCHECK(!profile_attributes_storage_);
DCHECK(storage);
profile_attributes_storage_ = storage;
DCHECK(profile_path_.empty());
DCHECK(!path.empty());
profile_path_ = path;
DCHECK(!prefs_);
DCHECK(prefs);
prefs_ = prefs;
storage_key_ =
profile_attributes_storage_->StorageKeyFromProfilePath(profile_path_);
MigrateObsoleteProfileAttributes();
const base::Value::Dict* entry_data = GetEntryData();
if (entry_data) {
if (!entry_data->contains(kIsConsentedPrimaryAccountKey)) {
SetBool(kIsConsentedPrimaryAccountKey,
!GetGAIAId().empty() || !GetUserName().empty());
}
}
if (signin_util::IsForceSigninEnabled()) {
if (!CanBeManaged())
SetBool(kForceSigninProfileLockedKey, true);
} else {
// Reset the locked state to avoid a profile being locked after the force
// signin policy has been disabled.
SetBool(kForceSigninProfileLockedKey, false);
}
}
void ProfileAttributesEntry::InitializeLastNameToDisplay() {
DCHECK(last_name_to_display_.empty());
last_name_to_display_ = GetName();
}
std::u16string ProfileAttributesEntry::GetLocalProfileName() const {
if (!GetEnterpriseProfileLabel().empty()) {
return GetEnterpriseProfileLabel();
}
return GetString16(kNameKey);
}
std::u16string ProfileAttributesEntry::GetEnterpriseProfileLabel() const {
return GetString16(kEnterpriseLabelKey);
}
std::u16string ProfileAttributesEntry::GetGAIANameToDisplay() const {
std::u16string gaia_given_name = GetGAIAGivenName();
return gaia_given_name.empty() ? GetGAIAName() : gaia_given_name;
}
bool ProfileAttributesEntry::ShouldShowProfileLocalName(
const std::u16string& gaia_name_to_display) const {
// Never show the profile name if it is equal to GAIA given name,
// e.g. Matt (Matt), in that case we should only show the GAIA name.
if (base::EqualsCaseInsensitiveASCII(gaia_name_to_display,
GetLocalProfileName())) {
return false;
}
// Customized profile name that is not equal to Gaia name, e.g. Matt (Work).
if (!IsUsingDefaultName() || !GetEnterpriseProfileLabel().empty()) {
return true;
}
// The profile local name is a default profile name : Person n.
std::vector<ProfileAttributesEntry*> entries =
profile_attributes_storage_->GetAllProfilesAttributes();
for (ProfileAttributesEntry* entry : entries) {
if (entry == this)
continue;
std::u16string other_gaia_name_to_display = entry->GetGAIANameToDisplay();
if (other_gaia_name_to_display.empty() ||
other_gaia_name_to_display != gaia_name_to_display)
continue;
// Another profile with the same GAIA name.
bool other_profile_name_equal_GAIA_name = base::EqualsCaseInsensitiveASCII(
other_gaia_name_to_display, entry->GetLocalProfileName());
// If for the other profile, the profile name is equal to GAIA name then it
// will not be shown. For disambiguation, show for the current profile the
// profile name even if it is Person n.
if (other_profile_name_equal_GAIA_name)
return true;
bool other_is_using_default_name = entry->IsUsingDefaultName();
// Both profiles have a default profile name,
// e.g. Matt (Person 1), Matt (Person 2).
if (other_is_using_default_name) {
return true;
}
}
return false;
}
bool ProfileAttributesEntry::ShouldUpdateGAIAPicture(
const std::string& image_url_with_size,
bool image_is_empty) const {
std::string old_file_name = GetString(kGAIAPictureFileNameKey);
if (old_file_name.empty() && image_is_empty) {
// On Windows, Taskbar and Desktop icons are refreshed every time
// |OnProfileAvatarChanged| notification is fired.
// Updating from an empty image to a null image is a no-op and it is
// important to avoid firing |OnProfileAvatarChanged| in this case.
// See http://crbug.com/900374
DCHECK(!IsGAIAPictureLoaded());
return false;
}
std::string current_gaia_image_url =
GetLastDownloadedGAIAPictureUrlWithSize();
if (old_file_name.empty() || image_is_empty ||
current_gaia_image_url != image_url_with_size) {
return true;
}
const gfx::Image* gaia_picture = GetGAIAPicture();
if (gaia_picture && !gaia_picture->IsEmpty()) {
return false;
}
// We either did not load the GAIA image or we failed to. In that case, only
// update if the GAIA picture is used as the profile avatar.
return IsUsingDefaultAvatar() || IsUsingGAIAPicture();
}
std::u16string ProfileAttributesEntry::GetLastNameToDisplay() const {
return last_name_to_display_;
}
bool ProfileAttributesEntry::HasProfileNameChanged() {
std::u16string name = GetName();
if (last_name_to_display_ == name)
return false;
last_name_to_display_ = name;
return true;
}
NameForm ProfileAttributesEntry::GetNameForm() const {
std::u16string name_to_display = GetGAIANameToDisplay();
if (name_to_display.empty())
return NameForm::kLocalName;
if (!ShouldShowProfileLocalName(name_to_display))
return NameForm::kGaiaName;
return NameForm::kGaiaAndLocalName;
}
std::u16string ProfileAttributesEntry::GetName() const {
switch (GetNameForm()) {
case NameForm::kGaiaName:
return GetGAIANameToDisplay();
case NameForm::kLocalName:
return GetLocalProfileName();
case NameForm::kGaiaAndLocalName:
return GetGAIANameToDisplay() + u" (" + GetLocalProfileName() + u")";
}
}
std::u16string ProfileAttributesEntry::GetShortcutName() const {
return GetString16(kShortcutNameKey);
}
base::FilePath ProfileAttributesEntry::GetPath() const {
return profile_path_;
}
base::Time ProfileAttributesEntry::GetActiveTime() const {
if (IsDouble(kActiveTimeKey)) {
return base::Time::FromSecondsSinceUnixEpoch(GetDouble(kActiveTimeKey));
} else {
return base::Time();
}
}
std::u16string ProfileAttributesEntry::GetUserName() const {
return GetString16(kUserNameKey);
}
gfx::Image ProfileAttributesEntry::GetAvatarIcon(
int size_for_placeholder_avatar,
bool use_high_res_file,
const PlaceholderAvatarIconParams& icon_params) const {
if (IsUsingGAIAPicture()) {
const gfx::Image* image = GetGAIAPicture();
if (image)
return *image;
}
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)
// TODO(crbug.com/40138086): After launch, remove the treatment of placeholder
// avatars from GetHighResAvatar() and from any other places.
if (GetAvatarIconIndex() == profiles::GetPlaceholderAvatarIndex()) {
return GetPlaceholderAvatarIcon(size_for_placeholder_avatar, icon_params);
}
#endif // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)
#if !BUILDFLAG(IS_ANDROID)
// Use the high resolution version of the avatar if it exists. Mobile doesn't
// need the high resolution version so no need to fetch it.
if (use_high_res_file) {
const gfx::Image* image = GetHighResAvatar();
if (image)
return *image;
}
#endif
const int icon_index = GetAvatarIconIndex();
#if BUILDFLAG(IS_WIN)
if (!profiles::IsModernAvatarIconIndex(icon_index)) {
// Return the 2x version of the old avatar, defined specifically for
// Windows. No special treatment is needed for modern avatars as they
// already have high enough resolution.
const int win_resource_id =
profiles::GetOldDefaultAvatar2xIconResourceIDAtIndex(icon_index);
return ui::ResourceBundle::GetSharedInstance().GetNativeImageNamed(
win_resource_id);
}
#endif
int resource_id = profiles::GetDefaultAvatarIconResourceIDAtIndex(icon_index);
return ui::ResourceBundle::GetSharedInstance().GetNativeImageNamed(
resource_id);
}
bool ProfileAttributesEntry::GetBackgroundStatus() const {
return GetBool(kBackgroundAppsKey);
}
std::u16string ProfileAttributesEntry::GetGAIAName() const {
std::u16string gaia_name = GetString16(kGAIANameKey);
return gaia_name.empty() ? GetString16(kOIDCIdentityNameKey) : gaia_name;
}
std::u16string ProfileAttributesEntry::GetGAIAGivenName() const {
return GetString16(kGAIAGivenNameKey);
}
GaiaId ProfileAttributesEntry::GetGAIAId() const {
return GaiaId(GetString(ProfileAttributesEntry::kGAIAIdKey));
}
const gfx::Image* ProfileAttributesEntry::GetGAIAPicture() const {
std::string file_name = GetString(kGAIAPictureFileNameKey);
// If the picture is not on disk then return nullptr.
if (file_name.empty())
return nullptr;
base::FilePath image_path = profile_path_.AppendASCII(file_name);
return profile_attributes_storage_->LoadAvatarPictureFromPath(
profile_path_, storage_key_, image_path);
}
bool ProfileAttributesEntry::IsUsingGAIAPicture() const {
bool result = GetBool(kUseGAIAPictureKey);
if (!result) {
// Prefer the GAIA avatar over a non-customized avatar.
result = IsUsingDefaultAvatar() && GetGAIAPicture();
}
return result;
}
bool ProfileAttributesEntry::IsGAIAPictureLoaded() const {
return profile_attributes_storage_->IsGAIAPictureLoaded(storage_key_);
}
std::string ProfileAttributesEntry::GetLastDownloadedGAIAPictureUrlWithSize()
const {
return GetString(kLastDownloadedGAIAPictureUrlWithSizeKey);
}
bool ProfileAttributesEntry::IsSupervised() const {
return !GetSupervisedUserId().empty();
}
bool ProfileAttributesEntry::IsOmitted() const {
return is_omitted_;
}
bool ProfileAttributesEntry::IsSigninRequired() const {
return GetBool(kForceSigninProfileLockedKey);
}
std::string ProfileAttributesEntry::GetSupervisedUserId() const {
return GetString(kSupervisedUserId);
}
bool ProfileAttributesEntry::IsEphemeral() const {
return GetBool(kProfileIsEphemeral);
}
bool ProfileAttributesEntry::IsUsingDefaultName() const {
return GetBool(kIsUsingDefaultNameKey);
}
SigninState ProfileAttributesEntry::GetSigninState() const {
bool is_consented_primary_account = GetBool(kIsConsentedPrimaryAccountKey);
if (!GetGAIAId().empty() || !GetUserName().empty()) {
return is_consented_primary_account
? SigninState::kSignedInWithConsentedPrimaryAccount
: SigninState::kSignedInWithUnconsentedPrimaryAccount;
}
DCHECK(!is_consented_primary_account);
return SigninState::kNotSignedIn;
}
bool ProfileAttributesEntry::IsAuthenticated() const {
return GetBool(kIsConsentedPrimaryAccountKey);
}
bool ProfileAttributesEntry::CanBeManaged() const {
switch (GetSigninState()) {
case SigninState::kSignedInWithConsentedPrimaryAccount:
return true;
case SigninState::kSignedInWithUnconsentedPrimaryAccount:
return GetBool(kUserAcceptedAccountManagement);
case SigninState::kNotSignedIn:
return false;
}
}
bool ProfileAttributesEntry::IsUsingDefaultAvatar() const {
return GetBool(kIsUsingDefaultAvatarKey);
}
bool ProfileAttributesEntry::IsSignedInWithCredentialProvider() const {
return GetBool(prefs::kSignedInWithCredentialProvider);
}
bool ProfileAttributesEntry::IsDasherlessManagement() const {
return GetBool(kDasherlessManagement);
}
size_t ProfileAttributesEntry::GetAvatarIconIndex() const {
std::string icon_url = GetString(kAvatarIconKey);
size_t icon_index = 0;
if (!profiles::IsDefaultAvatarIconUrl(icon_url, &icon_index))
DLOG(WARNING) << "Unknown avatar icon: " << icon_url;
return icon_index;
}
std::optional<ProfileThemeColors>
ProfileAttributesEntry::GetProfileThemeColorsIfSet() const {
std::optional<SkColor> profile_highlight_color =
GetProfileThemeColor(kProfileHighlightColorKey);
std::optional<SkColor> default_avatar_fill_color =
GetProfileThemeColor(kDefaultAvatarFillColorKey);
std::optional<SkColor> default_avatar_stroke_color =
GetProfileThemeColor(kDefaultAvatarStrokeColorKey);
std::optional<SkColor> profile_color_seed =
GetProfileThemeColor(kProfileColorSeedKey);
DCHECK_EQ(profile_highlight_color.has_value(),
default_avatar_stroke_color.has_value());
DCHECK_EQ(profile_highlight_color.has_value(),
default_avatar_fill_color.has_value());
if (!profile_highlight_color.has_value()) {
return std::nullopt;
}
ProfileThemeColors colors;
colors.profile_highlight_color = profile_highlight_color.value();
colors.default_avatar_fill_color = default_avatar_fill_color.value();
colors.default_avatar_stroke_color = default_avatar_stroke_color.value();
colors.profile_color_seed =
profile_color_seed.value_or(profile_highlight_color.value());
return colors;
}
ProfileThemeColors ProfileAttributesEntry::GetProfileThemeColors() const {
#if BUILDFLAG(IS_ANDROID)
// Profile theme colors shouldn't be queried on Android.
NOTREACHED();
#else
std::optional<ProfileThemeColors> theme_colors = GetProfileThemeColorsIfSet();
if (theme_colors)
return *theme_colors;
return GetDefaultProfileThemeColors();
#endif
}
size_t ProfileAttributesEntry::GetMetricsBucketIndex() {
int bucket_index = GetInteger(kMetricsBucketIndex);
if (bucket_index == kIntegerNotSet) {
bucket_index = NextAvailableMetricsBucketIndex();
SetInteger(kMetricsBucketIndex, bucket_index);
}
return bucket_index;
}
std::string ProfileAttributesEntry::GetHostedDomain() const {
return GetString(kHostedDomain);
}
std::string ProfileAttributesEntry::GetProfileManagementEnrollmentToken()
const {
return GetString(kProfileManagementEnrollmentToken);
}
ProfileManagementOidcTokens
ProfileAttributesEntry::GetProfileManagementOidcTokens() const {
std::string auth_token = GetString(kProfileManagementOidcAuthToken);
std::string id_token = GetString(kProfileManagementOidcIdToken);
return (auth_token.empty() && !id_token.empty())
? ProfileManagementOidcTokens(id_token)
: ProfileManagementOidcTokens(
auth_token, id_token,
GetString(kProfileManagementOidcState));
}
std::string ProfileAttributesEntry::GetProfileManagementId() const {
return GetString(kProfileManagementId);
}
std::string ProfileAttributesEntry::GetAccountIdKey() const {
return GetString(kAccountIdKey);
}
bool ProfileAttributesEntry::IsGlicEligible() const {
return GetBool(kIsGlicEligible);
}
void ProfileAttributesEntry::SetIsGlicEligible(bool value) {
SetBool(kIsGlicEligible, value);
}
base::flat_set<GaiaId> ProfileAttributesEntry::GetGaiaIds() const {
const base::Value* accounts = GetValue(kAllAccountsKey);
if (!accounts || !accounts->is_dict()) {
return base::flat_set<GaiaId>();
}
return base::MakeFlatSet<GaiaId>(
accounts->GetDict(), {}, [](const auto& it) { return GaiaId(it.first); });
}
void ProfileAttributesEntry::SetGaiaIds(
const base::flat_set<GaiaId>& gaia_ids) {
base::Value::Dict accounts;
for (const auto& gaia_id : gaia_ids) {
// The dictionary is empty for now, but can hold account-specific info in
// the future.
accounts.Set(gaia_id.ToString(), base::Value::Dict());
}
SetValue(kAllAccountsKey, base::Value(std::move(accounts)));
}
void ProfileAttributesEntry::SetLocalProfileName(const std::u16string& name,
bool is_default_name) {
bool changed = SetString16(kNameKey, name);
changed |= SetBool(kIsUsingDefaultNameKey, is_default_name);
if (changed)
profile_attributes_storage_->NotifyIfProfileNamesHaveChanged();
}
void ProfileAttributesEntry::SetEnterpriseProfileLabel(
const std::u16string& label) {
SetString16(kEnterpriseLabelKey, label);
}
void ProfileAttributesEntry::SetShortcutName(const std::u16string& name) {
SetString16(kShortcutNameKey, name);
}
void ProfileAttributesEntry::SetActiveTimeToNow() {
if (IsDouble(kActiveTimeKey) &&
base::Time::Now() - GetActiveTime() < base::Hours(1)) {
return;
}
SetDouble(kActiveTimeKey, base::Time::Now().InSecondsFSinceUnixEpoch());
}
void ProfileAttributesEntry::SetIsOmitted(bool is_omitted) {
bool old_value = IsOmitted();
SetIsOmittedInternal(is_omitted);
// Send a notification only if the value has really changed.
if (old_value != is_omitted_)
profile_attributes_storage_->NotifyProfileIsOmittedChanged(GetPath());
}
void ProfileAttributesEntry::SetSupervisedUserId(const std::string& id) {
if (SetString(kSupervisedUserId, id))
profile_attributes_storage_->NotifyProfileSupervisedUserIdChanged(
GetPath());
}
void ProfileAttributesEntry::SetBackgroundStatus(bool running_background_apps) {
SetBool(kBackgroundAppsKey, running_background_apps);
}
void ProfileAttributesEntry::SetGAIAName(const std::u16string& name) {
if (SetString16(kGAIANameKey, name))
profile_attributes_storage_->NotifyIfProfileNamesHaveChanged();
}
void ProfileAttributesEntry::SetGAIAGivenName(const std::u16string& name) {
if (SetString16(kGAIAGivenNameKey, name))
profile_attributes_storage_->NotifyIfProfileNamesHaveChanged();
}
void ProfileAttributesEntry::SetGAIAPicture(
const std::string& image_url_with_size,
gfx::Image image) {
if (!ShouldUpdateGAIAPicture(image_url_with_size, image.IsEmpty()))
return;
std::string old_file_name = GetString(kGAIAPictureFileNameKey);
std::string new_file_name;
if (image.IsEmpty()) {
// Delete the old bitmap from disk.
base::FilePath image_path = profile_path_.AppendASCII(old_file_name);
profile_attributes_storage_->DeleteGAIAImageAtPath(
profile_path_, storage_key_, image_path);
} else {
// Save the new bitmap to disk.
new_file_name =
old_file_name.empty()
? base::FilePath(profiles::kGAIAPictureFileName).MaybeAsASCII()
: old_file_name;
base::FilePath image_path = profile_path_.AppendASCII(new_file_name);
profile_attributes_storage_->SaveGAIAImageAtPath(
profile_path_, storage_key_, image, image_path, image_url_with_size);
}
SetString(kGAIAPictureFileNameKey, new_file_name);
profile_attributes_storage_->NotifyOnProfileAvatarChanged(profile_path_);
}
void ProfileAttributesEntry::SetIsUsingGAIAPicture(bool value) {
if (SetBool(kUseGAIAPictureKey, value)) {
profile_attributes_storage_->NotifyOnProfileAvatarChanged(profile_path_);
}
}
void ProfileAttributesEntry::SetLastDownloadedGAIAPictureUrlWithSize(
const std::string& image_url_with_size) {
SetString(kLastDownloadedGAIAPictureUrlWithSizeKey, image_url_with_size);
}
void ProfileAttributesEntry::SetSignedInWithCredentialProvider(bool value) {
SetBool(prefs::kSignedInWithCredentialProvider, value);
}
void ProfileAttributesEntry::SetDasherlessManagement(bool value) {
SetBool(kDasherlessManagement, value);
}
void ProfileAttributesEntry::LockForceSigninProfile(bool is_lock) {
DCHECK(signin_util::IsForceSigninEnabled());
if (SetBool(kForceSigninProfileLockedKey, is_lock)) {
profile_attributes_storage_->NotifyIsSigninRequiredChanged(GetPath());
}
}
void ProfileAttributesEntry::SetIsEphemeral(bool value) {
if (!value) {
DCHECK(!IsOmitted()) << "An omitted account should not be made "
"non-ephemeral. Call SetIsOmitted(false) first.";
}
SetBool(kProfileIsEphemeral, value);
}
void ProfileAttributesEntry::SetUserAcceptedAccountManagement(bool value) {
if (SetBool(kUserAcceptedAccountManagement, value))
profile_attributes_storage_->NotifyProfileUserManagementAcceptanceChanged(
GetPath());
}
bool ProfileAttributesEntry::UserAcceptedAccountManagement() const {
return GetBool(kUserAcceptedAccountManagement);
}
void ProfileAttributesEntry::SetIsUsingDefaultAvatar(bool value) {
SetBool(kIsUsingDefaultAvatarKey, value);
}
void ProfileAttributesEntry::SetAvatarIconIndex(size_t icon_index) {
std::string default_avatar_icon_url =
profiles::GetDefaultAvatarIconUrl(icon_index);
if (SetString(kAvatarIconKey, default_avatar_icon_url)) {
// On Windows, Taskbar and Desktop icons are refreshed every time
// |OnProfileAvatarChanged| notification is fired.
// As the current avatar icon is already set to |default_avatar_icon_url|,
// it is important to avoid firing |OnProfileAvatarChanged| in this case.
// See http://crbug.com/900374
base::FilePath profile_path = GetPath();
if (!profile_attributes_storage_->GetDisableAvatarDownloadForTesting()) {
profile_attributes_storage_->DownloadHighResAvatarIfNeeded(icon_index,
profile_path);
}
profile_attributes_storage_->NotifyOnProfileAvatarChanged(profile_path);
}
}
void ProfileAttributesEntry::SetProfileThemeColors(
const std::optional<ProfileThemeColors>& colors) {
bool changed = false;
if (colors.has_value()) {
changed |=
SetInteger(kProfileHighlightColorKey, colors->profile_highlight_color);
changed |= SetInteger(kDefaultAvatarFillColorKey,
colors->default_avatar_fill_color);
changed |= SetInteger(kDefaultAvatarStrokeColorKey,
colors->default_avatar_stroke_color);
changed |= SetInteger(kProfileColorSeedKey, colors->profile_color_seed);
} else {
changed |= ClearValue(kProfileHighlightColorKey);
changed |= ClearValue(kDefaultAvatarFillColorKey);
changed |= ClearValue(kDefaultAvatarStrokeColorKey);
changed |= ClearValue(kProfileColorSeedKey);
}
if (changed) {
profile_attributes_storage_->NotifyProfileThemeColorsChanged(GetPath());
}
// Only notify if the profile uses the placeholder avatar.
if (changed &&
GetAvatarIconIndex() == profiles::GetPlaceholderAvatarIndex()) {
profile_attributes_storage_->NotifyOnProfileAvatarChanged(GetPath());
}
}
void ProfileAttributesEntry::SetHostedDomain(std::string hosted_domain) {
if (SetString(kHostedDomain, hosted_domain))
profile_attributes_storage_->NotifyProfileHostedDomainChanged(GetPath());
}
void ProfileAttributesEntry::SetProfileManagementEnrollmentToken(
const std::string& enrollment_token) {
if (SetString(kProfileManagementEnrollmentToken, enrollment_token)) {
profile_attributes_storage_->NotifyProfileManagementEnrollmentTokenChanged(
GetPath());
}
}
void ProfileAttributesEntry::SetProfileManagementOidcTokens(
const ProfileManagementOidcTokens& oidc_tokens) {
SetString(kProfileManagementOidcAuthToken, oidc_tokens.auth_token);
SetString(kProfileManagementOidcIdToken, oidc_tokens.id_token);
SetString(kProfileManagementOidcState, oidc_tokens.state);
if (SetString16(kOIDCIdentityNameKey, oidc_tokens.identity_name)) {
profile_attributes_storage_->NotifyIfProfileNamesHaveChanged();
}
}
void ProfileAttributesEntry::SetProfileManagementId(const std::string& id) {
if (SetString(kProfileManagementId, id)) {
profile_attributes_storage_->NotifyProfileManagementIdChanged(GetPath());
}
}
void ProfileAttributesEntry::SetAuthInfo(const GaiaId& gaia_id,
const std::u16string& user_name,
bool is_consented_primary_account) {
// If gaia_id, username and consent state are unchanged, abort early.
if (GetBool(kIsConsentedPrimaryAccountKey) == is_consented_primary_account &&
gaia_id == GetGAIAId() && user_name == GetUserName()) {
return;
}
{
// Bundle the changes in a single update.
ScopedDictPrefUpdate update(prefs_, prefs::kProfileAttributes);
base::Value::Dict& attributes_dict = update.Get();
base::Value::Dict* entry = attributes_dict.EnsureDict(storage_key_);
entry->Set(kGAIAIdKey, gaia_id.ToString());
entry->Set(kUserNameKey, user_name);
DCHECK(!is_consented_primary_account || !gaia_id.empty() ||
!user_name.empty());
entry->Set(kIsConsentedPrimaryAccountKey, is_consented_primary_account);
}
profile_attributes_storage_->NotifyProfileAuthInfoChanged(profile_path_);
}
void ProfileAttributesEntry::AddAccountName(const std::string& name) {
int hash = GetLowEntropyHashValue(name);
int first_hash = GetInteger(kFirstAccountNameHash);
if (first_hash == kIntegerNotSet) {
SetInteger(kFirstAccountNameHash, hash);
return;
}
if (first_hash != hash) {
SetBool(kHasMultipleAccountNames, true);
}
}
void ProfileAttributesEntry::ClearAccountNames() {
ClearValue(kFirstAccountNameHash);
ClearValue(kHasMultipleAccountNames);
}
const gfx::Image* ProfileAttributesEntry::GetHighResAvatar() const {
const size_t avatar_index = GetAvatarIconIndex();
// If this is the placeholder avatar, it is already included in the
// resources, so it doesn't need to be downloaded.
if (avatar_index == profiles::GetPlaceholderAvatarIndex()) {
return &ui::ResourceBundle::GetSharedInstance().GetImageNamed(
profiles::GetPlaceholderAvatarIconResourceID());
}
const std::string key =
profiles::GetDefaultAvatarIconFileNameAtIndex(avatar_index);
const base::FilePath image_path =
profiles::GetPathOfHighResAvatarAtIndex(avatar_index);
return profile_attributes_storage_->LoadAvatarPictureFromPath(GetPath(), key,
image_path);
}
gfx::Image ProfileAttributesEntry::GetPlaceholderAvatarIcon(
int size,
const PlaceholderAvatarIconParams& icon_params) const {
ProfileThemeColors colors = GetProfileThemeColors();
// Outline Silhouette Person Icon
if (icon_params.visibility_against_background.has_value()) {
// If the icon should be visible against the background, it cannot have a
// background or padding.
CHECK(!icon_params.has_background);
CHECK(!icon_params.has_padding);
return profiles::GetPlaceholderAvatarIconVisibleAgainstBackground(
colors.profile_color_seed, size,
icon_params.visibility_against_background.value());
}
return profiles::GetPlaceholderAvatarIconWithColors(
colors.default_avatar_fill_color, colors.default_avatar_stroke_color,
size, icon_params);
}
bool ProfileAttributesEntry::HasMultipleAccountNames() const {
// If the value is not set, GetBool() returns false.
return GetBool(kHasMultipleAccountNames);
}
void ProfileAttributesEntry::RecordAccountNamesMetric() const {
if (HasMultipleAccountNames()) {
profile_metrics::LogProfileAllAccountsNames(
IsAuthenticated()
? profile_metrics::AllAccountsNames::kMultipleNamesWithSync
: profile_metrics::AllAccountsNames::kMultipleNamesWithoutSync);
} else {
profile_metrics::LogProfileAllAccountsNames(
profile_metrics::AllAccountsNames::kLikelySingleName);
}
}
const base::Value::Dict* ProfileAttributesEntry::GetEntryData() const {
if (!prefs_) {
return nullptr;
}
const base::Value::Dict& attributes =
prefs_->GetDict(prefs::kProfileAttributes);
return attributes.FindDict(storage_key_);
}
const base::Value* ProfileAttributesEntry::GetValue(const char* key) const {
const base::Value::Dict* entry_data = GetEntryData();
return entry_data ? entry_data->Find(key) : nullptr;
}
std::string ProfileAttributesEntry::GetString(const char* key) const {
const base::Value* value = GetValue(key);
if (!value || !value->is_string())
return std::string();
return value->GetString();
}
std::u16string ProfileAttributesEntry::GetString16(const char* key) const {
const base::Value* value = GetValue(key);
if (!value || !value->is_string())
return std::u16string();
return base::UTF8ToUTF16(value->GetString());
}
double ProfileAttributesEntry::GetDouble(const char* key) const {
const base::Value* value = GetValue(key);
if (!value || !value->is_double())
return 0.0;
return value->GetDouble();
}
bool ProfileAttributesEntry::GetBool(const char* key) const {
const base::Value* value = GetValue(key);
return value && value->is_bool() && value->GetBool();
}
int ProfileAttributesEntry::GetInteger(const char* key) const {
const base::Value* value = GetValue(key);
if (!value || !value->is_int())
return kIntegerNotSet;
return value->GetInt();
}
std::optional<SkColor> ProfileAttributesEntry::GetProfileThemeColor(
const char* key) const {
// Do not use GetInteger(), as it defaults to kIntegerNotSet which is
// undistinguishable from a valid color.
const base::Value* value = GetValue(key);
if (!value || !value->is_int())
return std::nullopt;
return value->GetInt();
}
// Type checking. Only IsDouble is implemented because others do not have
// callsites.
bool ProfileAttributesEntry::IsDouble(const char* key) const {
const base::Value* value = GetValue(key);
return value && value->is_double();
}
// Internal setters using keys;
bool ProfileAttributesEntry::SetString(const char* key,
const std::string& value) {
std::string old_value = GetString(key);
return SetValue(key, base::Value(value)) && old_value != value;
}
bool ProfileAttributesEntry::SetString16(const char* key,
const std::u16string& value) {
std::u16string old_value = GetString16(key);
return SetValue(key, base::Value(value)) && old_value != value;
}
bool ProfileAttributesEntry::SetDouble(const char* key, double value) {
double old_value = GetDouble(key);
return SetValue(key, base::Value(value)) && old_value != value;
}
bool ProfileAttributesEntry::SetBool(const char* key, bool value) {
bool old_value = GetBool(key);
return SetValue(key, base::Value(value)) && old_value != value;
}
bool ProfileAttributesEntry::SetInteger(const char* key, int value) {
int old_value = GetInteger(key);
return SetValue(key, base::Value(value)) && old_value != value;
}
bool ProfileAttributesEntry::SetValue(const char* key, base::Value value) {
const base::Value* old_value = GetValue(key);
if (old_value && *old_value == value)
return false;
ScopedDictPrefUpdate update(prefs_, prefs::kProfileAttributes);
base::Value::Dict& attributes_dict = update.Get();
base::Value::Dict* entry = attributes_dict.EnsureDict(storage_key_);
entry->Set(key, std::move(value));
return true;
}
bool ProfileAttributesEntry::ClearValue(const char* key) {
const base::Value* old_value = GetValue(key);
if (!old_value)
return false;
ScopedDictPrefUpdate update(prefs_, prefs::kProfileAttributes);
base::Value::Dict& attributes_dict = update.Get();
base::Value::Dict* entry = attributes_dict.FindDict(storage_key_);
DCHECK(entry);
entry->Remove(key);
return true;
}
// This method should be periodically pruned of year+ old migrations.
void ProfileAttributesEntry::MigrateObsoleteProfileAttributes() {
// Added 3/2023.
ClearValue(kAccountCategories);
}
void ProfileAttributesEntry::SetIsOmittedInternal(bool is_omitted) {
if (is_omitted) {
DCHECK(IsEphemeral()) << "Only ephemeral profiles can be omitted.";
}
is_omitted_ = is_omitted;
}
|