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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/user_manager/user.h"
#include <stddef.h>
#include <memory>
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/metrics/histogram_macros.h"
#include "base/strings/utf_string_conversions.h"
#include "base/threading/thread_restrictions.h"
#include "components/account_id/account_id.h"
#include "components/user_manager/user_manager.h"
#include "google_apis/gaia/gaia_auth_util.h"
namespace user_manager {
namespace {
// Must be in sync with histogram enum UserTypeChanged in enums.xml.
// The values must never be changed (only new ones can be added) as they
// are stored in UMA logs.
enum class UserTypeChangeHistogram {
UNKNOWN_FATAL = 0,
REGULAR_TO_CHILD = 1,
CHILD_TO_REGULAR = 2,
COUNT, // Not a value, just a count of other values.
};
void UMAUserTypeChanged(const UserTypeChangeHistogram value) {
UMA_HISTOGRAM_ENUMERATION("UserManager.UserTypeChanged", value,
UserTypeChangeHistogram::COUNT);
}
// Returns account name portion of an email.
std::string GetUserName(const std::string& email) {
std::string::size_type i = email.find('@');
if (i == 0 || i == std::string::npos) {
return email;
}
return email.substr(0, i);
}
} // namespace
// static
bool User::TypeHasGaiaAccount(UserType user_type) {
return user_type == USER_TYPE_REGULAR ||
user_type == USER_TYPE_CHILD;
}
// static
bool User::TypeIsKiosk(UserType type) {
return type == USER_TYPE_KIOSK_APP || type == USER_TYPE_ARC_KIOSK_APP ||
type == USER_TYPE_WEB_KIOSK_APP;
}
// Also used for regular supervised users.
class RegularUser : public User {
public:
RegularUser(const AccountId& account_id, const UserType user_type);
RegularUser(const RegularUser&) = delete;
RegularUser& operator=(const RegularUser&) = delete;
~RegularUser() override;
// Overridden from User:
UserType GetType() const override;
void UpdateType(UserType user_type) override;
bool CanSyncImage() const override;
private:
bool is_child_;
};
class GuestUser : public User {
public:
explicit GuestUser(const AccountId& guest_account_id);
GuestUser(const GuestUser&) = delete;
GuestUser& operator=(const GuestUser&) = delete;
~GuestUser() override;
// Overridden from User:
UserType GetType() const override;
};
class DeviceLocalAccountUserBase : public User {
public:
DeviceLocalAccountUserBase(const DeviceLocalAccountUserBase&) = delete;
DeviceLocalAccountUserBase& operator=(const DeviceLocalAccountUserBase&) =
delete;
// User:
bool IsAffiliated() const override;
protected:
explicit DeviceLocalAccountUserBase(const AccountId& account_id);
~DeviceLocalAccountUserBase() override;
// User:
void SetAffiliation(bool) override;
bool IsDeviceLocalAccount() const override;
};
class KioskAppUser : public DeviceLocalAccountUserBase {
public:
explicit KioskAppUser(const AccountId& kiosk_app_account_id);
KioskAppUser(const KioskAppUser&) = delete;
KioskAppUser& operator=(const KioskAppUser&) = delete;
~KioskAppUser() override;
// Overridden from User:
UserType GetType() const override;
};
class ArcKioskAppUser : public DeviceLocalAccountUserBase {
public:
explicit ArcKioskAppUser(const AccountId& arc_kiosk_account_id);
ArcKioskAppUser(const ArcKioskAppUser&) = delete;
ArcKioskAppUser& operator=(const ArcKioskAppUser&) = delete;
~ArcKioskAppUser() override;
// Overridden from User:
UserType GetType() const override;
};
class WebKioskAppUser : public DeviceLocalAccountUserBase {
public:
explicit WebKioskAppUser(const AccountId& web_kiosk_account_id);
WebKioskAppUser(const WebKioskAppUser&) = delete;
WebKioskAppUser& operator=(const WebKioskAppUser&) = delete;
~WebKioskAppUser() override;
// Overridden from User:
UserType GetType() const override;
};
class PublicAccountUser : public DeviceLocalAccountUserBase {
public:
explicit PublicAccountUser(const AccountId& account_id);
PublicAccountUser(const PublicAccountUser&) = delete;
PublicAccountUser& operator=(const PublicAccountUser&) = delete;
~PublicAccountUser() override;
// Overridden from User:
UserType GetType() const override;
};
User::User(const AccountId& account_id)
: account_id_(account_id), user_image_(new UserImage) {}
User::~User() {}
std::string User::GetDisplayEmail() const {
return display_email();
}
std::u16string User::GetDisplayName() const {
// Fallback to the email account name in case display name haven't been set.
return display_name_.empty() ? base::UTF8ToUTF16(GetAccountName(true))
: display_name_;
}
std::u16string User::GetGivenName() const {
return given_name_;
}
const gfx::ImageSkia& User::GetImage() const {
return user_image_->image();
}
const AccountId& User::GetAccountId() const {
return account_id_;
}
void User::UpdateType(UserType user_type) {
UMAUserTypeChanged(UserTypeChangeHistogram::UNKNOWN_FATAL);
LOG(FATAL) << "Unsupported user type change " << GetType() << "=>"
<< user_type;
}
bool User::HasGaiaAccount() const {
return TypeHasGaiaAccount(GetType());
}
bool User::IsActiveDirectoryUser() const {
return false;
}
bool User::IsChild() const {
return GetType() == USER_TYPE_CHILD;
}
std::string User::GetAccountName(bool use_display_email) const {
if (use_display_email && !display_email_.empty())
return GetUserName(display_email_);
else
return GetUserName(account_id_.GetUserEmail());
}
bool User::HasDefaultImage() const {
return UserManager::Get()->IsValidDefaultUserImageId(image_index_);
}
bool User::CanSyncImage() const {
return false;
}
std::string User::display_email() const {
return display_email_;
}
bool User::can_lock() const {
return can_lock_;
}
const std::string& User::username_hash() const {
return username_hash_;
}
bool User::is_logged_in() const {
return is_logged_in_;
}
bool User::is_active() const {
return is_active_;
}
bool User::has_gaia_account() const {
static_assert(user_manager::NUM_USER_TYPES == 10,
"NUM_USER_TYPES should equal 10");
switch (GetType()) {
case user_manager::USER_TYPE_REGULAR:
case user_manager::USER_TYPE_CHILD:
return true;
case user_manager::USER_TYPE_GUEST:
case user_manager::USER_TYPE_PUBLIC_ACCOUNT:
case user_manager::USER_TYPE_KIOSK_APP:
case user_manager::USER_TYPE_ARC_KIOSK_APP:
case user_manager::USER_TYPE_WEB_KIOSK_APP:
return false;
default:
NOTREACHED();
}
return false;
}
void User::AddProfileCreatedObserver(base::OnceClosure on_profile_created) {
if (profile_is_created_)
std::move(on_profile_created).Run();
else
on_profile_created_observers_.push_back(std::move(on_profile_created));
}
bool User::IsAffiliated() const {
return is_affiliated_.value_or(false);
}
void User::IsAffiliatedAsync(
base::OnceCallback<void(bool)> is_affiliated_callback) {
if (is_affiliated_.has_value())
std::move(is_affiliated_callback).Run(is_affiliated_.value());
else
on_affiliation_set_callbacks_.push_back(std::move(is_affiliated_callback));
}
void User::SetProfileIsCreated() {
profile_is_created_ = true;
for (auto& callback : on_profile_created_observers_)
std::move(callback).Run();
on_profile_created_observers_.clear();
}
void User::SetAffiliation(bool is_affiliated) {
is_affiliated_ = is_affiliated;
for (auto& callback : on_affiliation_set_callbacks_)
std::move(callback).Run(is_affiliated_.value());
on_affiliation_set_callbacks_.clear();
}
bool User::IsDeviceLocalAccount() const {
return false;
}
bool User::IsKioskType() const {
return TypeIsKiosk(GetType());
}
User* User::CreateRegularUser(const AccountId& account_id,
const UserType user_type) {
return new RegularUser(account_id, user_type);
}
User* User::CreateGuestUser(const AccountId& guest_account_id) {
return new GuestUser(guest_account_id);
}
User* User::CreateKioskAppUser(const AccountId& kiosk_app_account_id) {
return new KioskAppUser(kiosk_app_account_id);
}
User* User::CreateArcKioskAppUser(const AccountId& arc_kiosk_account_id) {
return new ArcKioskAppUser(arc_kiosk_account_id);
}
User* User::CreateWebKioskAppUser(const AccountId& web_kiosk_account_id) {
return new WebKioskAppUser(web_kiosk_account_id);
}
User* User::CreatePublicAccountUser(const AccountId& account_id,
bool is_using_saml) {
User* user = new PublicAccountUser(account_id);
user->set_using_saml(is_using_saml);
return user;
}
void User::SetAccountLocale(const std::string& resolved_account_locale) {
account_locale_ = std::make_unique<std::string>(resolved_account_locale);
}
void User::SetImage(std::unique_ptr<UserImage> user_image, int image_index) {
user_image_ = std::move(user_image);
image_index_ = image_index;
image_is_stub_ = false;
image_is_loading_ = false;
DCHECK(HasDefaultImage() || user_image_->has_image_bytes());
}
void User::SetImageURL(const GURL& image_url) {
user_image_->set_url(image_url);
}
void User::SetStubImage(std::unique_ptr<UserImage> stub_user_image,
int image_index,
bool is_loading) {
user_image_ = std::move(stub_user_image);
image_index_ = image_index;
image_is_stub_ = true;
image_is_loading_ = is_loading;
}
RegularUser::RegularUser(const AccountId& account_id, const UserType user_type)
: User(account_id), is_child_(user_type == USER_TYPE_CHILD) {
if (user_type != USER_TYPE_CHILD && user_type != USER_TYPE_REGULAR) {
LOG(FATAL) << "Invalid user type " << user_type;
}
set_can_lock(true);
set_display_email(account_id.GetUserEmail());
}
RegularUser::~RegularUser() {
}
UserType RegularUser::GetType() const {
return is_child_ ? user_manager::USER_TYPE_CHILD :
user_manager::USER_TYPE_REGULAR;
}
void RegularUser::UpdateType(UserType user_type) {
const UserType current_type = GetType();
// Can only change between regular and child.
if ((user_type == user_manager::USER_TYPE_CHILD ||
user_type == user_manager::USER_TYPE_REGULAR) &&
(current_type == user_manager::USER_TYPE_CHILD ||
current_type == user_manager::USER_TYPE_REGULAR)) {
// We want all the other type changes to crash, that is why this check is
// not at the top level.
if (user_type == current_type)
return;
const bool old_is_child = is_child_;
is_child_ = user_type == user_manager::USER_TYPE_CHILD;
LOG(WARNING) << "User type has changed: " << current_type
<< " (is_child=" << old_is_child << ") => " << user_type
<< " (is_child=" << is_child_ << ")";
UMAUserTypeChanged(is_child_ ? UserTypeChangeHistogram::REGULAR_TO_CHILD
: UserTypeChangeHistogram::CHILD_TO_REGULAR);
return;
}
// Fail with LOG(FATAL).
User::UpdateType(user_type);
}
bool RegularUser::CanSyncImage() const {
return true;
}
GuestUser::GuestUser(const AccountId& guest_account_id)
: User(guest_account_id) {
set_display_email(std::string());
}
GuestUser::~GuestUser() {
}
UserType GuestUser::GetType() const {
return user_manager::USER_TYPE_GUEST;
}
DeviceLocalAccountUserBase::DeviceLocalAccountUserBase(
const AccountId& account_id) : User(account_id) {
}
DeviceLocalAccountUserBase::~DeviceLocalAccountUserBase() {
}
bool DeviceLocalAccountUserBase::IsAffiliated() const {
return true;
}
void DeviceLocalAccountUserBase::SetAffiliation(bool) {
// Device local accounts are always affiliated. No affiliation modification
// must happen.
NOTREACHED();
}
bool DeviceLocalAccountUserBase::IsDeviceLocalAccount() const {
return true;
}
KioskAppUser::KioskAppUser(const AccountId& kiosk_app_account_id)
: DeviceLocalAccountUserBase(kiosk_app_account_id) {
set_display_email(kiosk_app_account_id.GetUserEmail());
}
KioskAppUser::~KioskAppUser() {
}
UserType KioskAppUser::GetType() const {
return user_manager::USER_TYPE_KIOSK_APP;
}
ArcKioskAppUser::ArcKioskAppUser(const AccountId& arc_kiosk_account_id)
: DeviceLocalAccountUserBase(arc_kiosk_account_id) {
set_display_email(arc_kiosk_account_id.GetUserEmail());
}
ArcKioskAppUser::~ArcKioskAppUser() {
}
UserType ArcKioskAppUser::GetType() const {
return user_manager::USER_TYPE_ARC_KIOSK_APP;
}
WebKioskAppUser::WebKioskAppUser(const AccountId& web_kiosk_account_id)
: DeviceLocalAccountUserBase(web_kiosk_account_id) {
set_display_email(web_kiosk_account_id.GetUserEmail());
}
WebKioskAppUser::~WebKioskAppUser() {}
UserType WebKioskAppUser::GetType() const {
return user_manager::USER_TYPE_WEB_KIOSK_APP;
}
PublicAccountUser::PublicAccountUser(const AccountId& account_id)
: DeviceLocalAccountUserBase(account_id) {
// Public accounts do not have a real email address, so they do not set
// |display_email_|.
}
PublicAccountUser::~PublicAccountUser() {
}
UserType PublicAccountUser::GetType() const {
return user_manager::USER_TYPE_PUBLIC_ACCOUNT;
}
} // namespace user_manager
|