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
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/user_manager/known_user.h"
#include <stddef.h>
#include <memory>
#include <utility>
#include "base/logging.h"
#include "base/metrics/histogram_macros.h"
#include "base/time/time.h"
#include "base/util/values/values_util.h"
#include "base/values.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "components/user_manager/user_manager.h"
#include "google_apis/gaia/gaia_auth_util.h"
namespace user_manager {
namespace known_user {
namespace {
// A vector pref of preferences of known users. All new preferences should be
// placed in this list.
const char kKnownUsers[] = "KnownUsers";
// Known user preferences keys (stored in Local State). All keys should be
// listed in kReservedKeys below.
// Key of canonical e-mail value.
const char kCanonicalEmail[] = "email";
// Key of obfuscated GAIA id value.
const char kGAIAIdKey[] = "gaia_id";
// Key of obfuscated object guid value for Active Directory accounts.
const char kObjGuidKey[] = "obj_guid";
// Key of account type.
const char kAccountTypeKey[] = "account_type";
// Key of whether this user ID refers to a SAML user.
const char kUsingSAMLKey[] = "using_saml";
// Key of whether this user authenticated via SAML using the principals API.
const char kIsUsingSAMLPrincipalsAPI[] = "using_saml_principals_api";
// Key of Device Id.
const char kDeviceId[] = "device_id";
// Key of GAPS cookie.
const char kGAPSCookie[] = "gaps_cookie";
// Key of the reason for re-auth.
const char kReauthReasonKey[] = "reauth_reason";
// Key for the GaiaId migration status.
const char kGaiaIdMigration[] = "gaia_id_migration";
// Key of the boolean flag telling if a minimal user home migration has been
// attempted.
const char kMinimalMigrationAttempted[] = "minimal_migration_attempted";
// Key of the boolean flag telling if user session requires policy.
const char kProfileRequiresPolicy[] = "profile_requires_policy";
// Key of the boolean flag telling if user is ephemeral and should be removed
// from the local state on logout.
const char kIsEphemeral[] = "is_ephemeral";
// Key of the list value that stores challenge-response authentication keys.
const char kChallengeResponseKeys[] = "challenge_response_keys";
const char kLastOnlineSignin[] = "last_online_singin";
const char kOfflineSigninLimit[] = "offline_signin_limit";
// Key of the boolean flag telling if user is enterprise managed.
const char kIsEnterpriseManaged[] = "is_enterprise_managed";
// Key of the last input method user used which is suitable for login/lock
// screen.
const char kLastInputMethod[] = "last_input_method";
// List containing all the known user preferences keys.
const char* kReservedKeys[] = {kCanonicalEmail,
kGAIAIdKey,
kObjGuidKey,
kAccountTypeKey,
kUsingSAMLKey,
kIsUsingSAMLPrincipalsAPI,
kDeviceId,
kGAPSCookie,
kReauthReasonKey,
kGaiaIdMigration,
kMinimalMigrationAttempted,
kProfileRequiresPolicy,
kIsEphemeral,
kChallengeResponseKeys,
kLastOnlineSignin,
kOfflineSigninLimit,
kIsEnterpriseManaged,
kLastInputMethod};
PrefService* GetLocalState() {
if (!UserManager::IsInitialized())
return nullptr;
return UserManager::Get()->GetLocalState();
}
// Checks if values in |dict| correspond with |account_id| identity.
bool UserMatches(const AccountId& account_id,
const base::DictionaryValue& dict) {
std::string value;
if (account_id.GetAccountType() != AccountType::UNKNOWN &&
dict.GetString(kAccountTypeKey, &value) &&
account_id.GetAccountType() != AccountId::StringToAccountType(value)) {
return false;
}
// TODO(alemate): update code once user id is really a struct.
switch (account_id.GetAccountType()) {
case AccountType::GOOGLE: {
bool has_gaia_id = dict.GetString(kGAIAIdKey, &value);
if (has_gaia_id && account_id.GetGaiaId() == value)
return true;
break;
}
case AccountType::ACTIVE_DIRECTORY: {
bool has_obj_guid = dict.GetString(kObjGuidKey, &value);
if (has_obj_guid && account_id.GetObjGuid() == value)
return true;
break;
}
case AccountType::UNKNOWN: {
}
}
bool has_email = dict.GetString(kCanonicalEmail, &value);
if (has_email && account_id.GetUserEmail() == value)
return true;
return false;
}
// Fills relevant |dict| values based on |account_id|.
void UpdateIdentity(const AccountId& account_id, base::DictionaryValue& dict) {
if (!account_id.GetUserEmail().empty())
dict.SetString(kCanonicalEmail, account_id.GetUserEmail());
switch (account_id.GetAccountType()) {
case AccountType::GOOGLE:
if (!account_id.GetGaiaId().empty())
dict.SetString(kGAIAIdKey, account_id.GetGaiaId());
break;
case AccountType::ACTIVE_DIRECTORY:
if (!account_id.GetObjGuid().empty())
dict.SetString(kObjGuidKey, account_id.GetObjGuid());
break;
case AccountType::UNKNOWN:
return;
}
dict.SetString(kAccountTypeKey,
AccountId::AccountTypeToString(account_id.GetAccountType()));
}
void ClearPref(const AccountId& account_id, const std::string& path) {
const base::DictionaryValue* user_pref_dict = nullptr;
if (!FindPrefs(account_id, &user_pref_dict))
return;
base::Value updated_user_pref = user_pref_dict->Clone();
base::DictionaryValue* updated_user_pref_dict;
updated_user_pref.GetAsDictionary(&updated_user_pref_dict);
updated_user_pref_dict->RemovePath(path);
UpdatePrefs(account_id, *updated_user_pref_dict, true);
}
} // namespace
bool FindPrefs(const AccountId& account_id,
const base::DictionaryValue** out_value) {
PrefService* local_state = GetLocalState();
// Local State may not be initialized in tests.
if (!local_state)
return false;
// UserManager is usually NULL in unit tests.
if (account_id.GetAccountType() != AccountType::ACTIVE_DIRECTORY &&
UserManager::IsInitialized() &&
UserManager::Get()->IsUserNonCryptohomeDataEphemeral(account_id)) {
return false;
}
if (!account_id.is_valid())
return false;
const base::ListValue* known_users = local_state->GetList(kKnownUsers);
for (size_t i = 0; i < known_users->GetSize(); ++i) {
const base::DictionaryValue* element = nullptr;
if (known_users->GetDictionary(i, &element)) {
if (UserMatches(account_id, *element)) {
known_users->GetDictionary(i, out_value);
return true;
}
}
}
return false;
}
void UpdatePrefs(const AccountId& account_id,
const base::DictionaryValue& values,
bool clear) {
PrefService* local_state = GetLocalState();
// Local State may not be initialized in tests.
if (!local_state)
return;
// UserManager is usually NULL in unit tests.
if (account_id.GetAccountType() != AccountType::ACTIVE_DIRECTORY &&
UserManager::IsInitialized() &&
UserManager::Get()->IsUserNonCryptohomeDataEphemeral(account_id)) {
return;
}
if (!account_id.is_valid())
return;
ListPrefUpdate update(local_state, kKnownUsers);
for (size_t i = 0; i < update->GetSize(); ++i) {
base::DictionaryValue* element = nullptr;
if (update->GetDictionary(i, &element)) {
if (UserMatches(account_id, *element)) {
if (clear)
element->Clear();
element->MergeDictionary(&values);
UpdateIdentity(account_id, *element);
return;
}
}
}
std::unique_ptr<base::DictionaryValue> new_value(new base::DictionaryValue());
new_value->MergeDictionary(&values);
UpdateIdentity(account_id, *new_value);
update->Append(std::move(new_value));
}
bool GetStringPref(const AccountId& account_id,
const std::string& path,
std::string* out_value) {
const base::DictionaryValue* user_pref_dict = nullptr;
if (!FindPrefs(account_id, &user_pref_dict))
return false;
return user_pref_dict->GetString(path, out_value);
}
void SetStringPref(const AccountId& account_id,
const std::string& path,
const std::string& in_value) {
base::DictionaryValue dict;
dict.SetString(path, in_value);
UpdatePrefs(account_id, dict, false);
}
bool GetBooleanPref(const AccountId& account_id,
const std::string& path,
bool* out_value) {
const base::DictionaryValue* user_pref_dict = nullptr;
if (!FindPrefs(account_id, &user_pref_dict))
return false;
return user_pref_dict->GetBoolean(path, out_value);
}
void SetBooleanPref(const AccountId& account_id,
const std::string& path,
const bool in_value) {
base::DictionaryValue dict;
dict.SetBoolean(path, in_value);
UpdatePrefs(account_id, dict, false);
}
bool GetIntegerPref(const AccountId& account_id,
const std::string& path,
int* out_value) {
const base::DictionaryValue* user_pref_dict = nullptr;
if (!FindPrefs(account_id, &user_pref_dict))
return false;
return user_pref_dict->GetInteger(path, out_value);
}
void SetIntegerPref(const AccountId& account_id,
const std::string& path,
const int in_value) {
base::DictionaryValue dict;
dict.SetInteger(path, in_value);
UpdatePrefs(account_id, dict, false);
}
bool GetPref(const AccountId& account_id,
const std::string& path,
const base::Value** out_value) {
const base::DictionaryValue* user_pref_dict = nullptr;
if (!FindPrefs(account_id, &user_pref_dict))
return false;
*out_value = user_pref_dict->FindPath(path);
return *out_value != nullptr;
}
void SetPref(const AccountId& account_id,
const std::string& path,
base::Value in_value) {
base::DictionaryValue dict;
dict.SetPath(path, std::move(in_value));
UpdatePrefs(account_id, dict, false);
}
void RemovePref(const AccountId& account_id, const std::string& path) {
// Prevent removing keys that are used internally.
for (const std::string& key : kReservedKeys)
CHECK_NE(path, key);
ClearPref(account_id, path);
}
AccountId GetAccountId(const std::string& user_email,
const std::string& id,
const AccountType& account_type) {
DCHECK((id.empty() && account_type == AccountType::UNKNOWN) ||
(!id.empty() && account_type != AccountType::UNKNOWN));
// In tests empty accounts are possible.
if (user_email.empty() && id.empty() &&
account_type == AccountType::UNKNOWN) {
return EmptyAccountId();
}
AccountId result(EmptyAccountId());
// UserManager is usually NULL in unit tests.
if (account_type == AccountType::UNKNOWN && UserManager::IsInitialized() &&
UserManager::Get()->GetPlatformKnownUserId(user_email, id, &result)) {
return result;
}
std::string stored_gaia_id;
std::string stored_obj_guid;
const std::string sanitized_email =
user_email.empty()
? std::string()
: gaia::CanonicalizeEmail(gaia::SanitizeEmail(user_email));
if (!sanitized_email.empty()) {
if (GetStringPref(AccountId::FromUserEmail(sanitized_email), kGAIAIdKey,
&stored_gaia_id)) {
if (!id.empty()) {
DCHECK(account_type == AccountType::GOOGLE);
if (id != stored_gaia_id)
LOG(ERROR) << "User gaia id has changed. Sync will not work.";
}
// gaia_id is associated with cryptohome.
return AccountId::FromUserEmailGaiaId(sanitized_email, stored_gaia_id);
}
if (GetStringPref(AccountId::FromUserEmail(sanitized_email), kObjGuidKey,
&stored_obj_guid)) {
if (!id.empty()) {
DCHECK(account_type == AccountType::ACTIVE_DIRECTORY);
if (id != stored_obj_guid)
LOG(ERROR) << "User object guid has changed. Sync will not work.";
}
// obj_guid is associated with cryptohome.
return AccountId::AdFromUserEmailObjGuid(sanitized_email,
stored_obj_guid);
}
}
std::string stored_email;
switch (account_type) {
case AccountType::GOOGLE:
if (GetStringPref(AccountId::FromGaiaId(id), kCanonicalEmail,
&stored_email)) {
return AccountId::FromUserEmailGaiaId(stored_email, id);
}
return AccountId::FromUserEmailGaiaId(sanitized_email, id);
case AccountType::ACTIVE_DIRECTORY:
if (GetStringPref(AccountId::AdFromObjGuid(id), kCanonicalEmail,
&stored_email)) {
return AccountId::AdFromUserEmailObjGuid(stored_email, id);
}
return AccountId::AdFromUserEmailObjGuid(sanitized_email, id);
case AccountType::UNKNOWN:
return AccountId::FromUserEmail(sanitized_email);
}
NOTREACHED();
return EmptyAccountId();
}
std::vector<AccountId> GetKnownAccountIds() {
std::vector<AccountId> result;
PrefService* local_state = GetLocalState();
// Local State may not be initialized in tests.
if (!local_state)
return result;
const base::ListValue* known_users = local_state->GetList(kKnownUsers);
for (size_t i = 0; i < known_users->GetSize(); ++i) {
const base::DictionaryValue* element = nullptr;
if (known_users->GetDictionary(i, &element)) {
std::string email;
std::string gaia_id;
std::string obj_guid;
const bool has_email = element->GetString(kCanonicalEmail, &email);
const bool has_gaia_id = element->GetString(kGAIAIdKey, &gaia_id);
const bool has_obj_guid = element->GetString(kObjGuidKey, &obj_guid);
AccountType account_type = AccountType::GOOGLE;
std::string account_type_string;
if (element->GetString(kAccountTypeKey, &account_type_string)) {
account_type = AccountId::StringToAccountType(account_type_string);
}
switch (account_type) {
case AccountType::GOOGLE:
if (has_email || has_gaia_id) {
result.push_back(AccountId::FromUserEmailGaiaId(email, gaia_id));
}
break;
case AccountType::ACTIVE_DIRECTORY:
if (has_email && has_obj_guid) {
result.push_back(
AccountId::AdFromUserEmailObjGuid(email, obj_guid));
}
break;
default:
NOTREACHED() << "Unknown account type";
}
}
}
return result;
}
bool GetGaiaIdMigrationStatus(const AccountId& account_id,
const std::string& subsystem) {
bool migrated = false;
if (GetBooleanPref(account_id,
std::string(kGaiaIdMigration) + "." + subsystem,
&migrated)) {
return migrated;
}
return false;
}
void SetGaiaIdMigrationStatusDone(const AccountId& account_id,
const std::string& subsystem) {
SetBooleanPref(account_id, std::string(kGaiaIdMigration) + "." + subsystem,
true);
}
void SaveKnownUser(const AccountId& account_id) {
const bool is_ephemeral =
UserManager::IsInitialized() &&
UserManager::Get()->IsUserNonCryptohomeDataEphemeral(account_id);
if (is_ephemeral &&
account_id.GetAccountType() != AccountType::ACTIVE_DIRECTORY) {
return;
}
UpdateId(account_id);
GetLocalState()->CommitPendingWrite();
}
void SetIsEphemeralUser(const AccountId& account_id, bool is_ephemeral) {
if (account_id.GetAccountType() != AccountType::ACTIVE_DIRECTORY)
return;
SetBooleanPref(account_id, kIsEphemeral, is_ephemeral);
}
void UpdateGaiaID(const AccountId& account_id, const std::string& gaia_id) {
SetStringPref(account_id, kGAIAIdKey, gaia_id);
SetStringPref(account_id, kAccountTypeKey,
AccountId::AccountTypeToString(AccountType::GOOGLE));
}
void UpdateId(const AccountId& account_id) {
switch (account_id.GetAccountType()) {
case AccountType::GOOGLE:
SetStringPref(account_id, kGAIAIdKey, account_id.GetGaiaId());
break;
case AccountType::ACTIVE_DIRECTORY:
SetStringPref(account_id, kObjGuidKey, account_id.GetObjGuid());
break;
case AccountType::UNKNOWN:
return;
}
SetStringPref(account_id, kAccountTypeKey,
AccountId::AccountTypeToString(account_id.GetAccountType()));
}
bool FindGaiaID(const AccountId& account_id, std::string* out_value) {
return GetStringPref(account_id, kGAIAIdKey, out_value);
}
void SetDeviceId(const AccountId& account_id, const std::string& device_id) {
const std::string known_device_id = GetDeviceId(account_id);
if (!known_device_id.empty() && device_id != known_device_id) {
NOTREACHED() << "Trying to change device ID for known user.";
}
SetStringPref(account_id, kDeviceId, device_id);
}
std::string GetDeviceId(const AccountId& account_id) {
std::string device_id;
if (GetStringPref(account_id, kDeviceId, &device_id)) {
return device_id;
}
return std::string();
}
void SetGAPSCookie(const AccountId& account_id,
const std::string& gaps_cookie) {
SetStringPref(account_id, kGAPSCookie, gaps_cookie);
}
std::string GetGAPSCookie(const AccountId& account_id) {
std::string gaps_cookie;
if (GetStringPref(account_id, kGAPSCookie, &gaps_cookie)) {
return gaps_cookie;
}
return std::string();
}
void UpdateUsingSAML(const AccountId& account_id, const bool using_saml) {
SetBooleanPref(account_id, kUsingSAMLKey, using_saml);
}
bool IsUsingSAML(const AccountId& account_id) {
bool using_saml;
if (GetBooleanPref(account_id, kUsingSAMLKey, &using_saml))
return using_saml;
return false;
}
void USER_MANAGER_EXPORT
UpdateIsUsingSAMLPrincipalsAPI(const AccountId& account_id,
bool is_using_saml_principals_api) {
SetBooleanPref(account_id, kIsUsingSAMLPrincipalsAPI,
is_using_saml_principals_api);
}
bool USER_MANAGER_EXPORT
GetIsUsingSAMLPrincipalsAPI(const AccountId& account_id) {
bool is_using_saml_principals_api;
if (GetBooleanPref(account_id, kIsUsingSAMLPrincipalsAPI,
&is_using_saml_principals_api)) {
return is_using_saml_principals_api;
}
return false;
}
void SetProfileRequiresPolicy(const AccountId& account_id,
ProfileRequiresPolicy required) {
DCHECK_NE(required, ProfileRequiresPolicy::kUnknown);
SetBooleanPref(account_id, kProfileRequiresPolicy,
required == ProfileRequiresPolicy::kPolicyRequired);
}
ProfileRequiresPolicy GetProfileRequiresPolicy(const AccountId& account_id) {
bool requires_policy;
if (GetBooleanPref(account_id, kProfileRequiresPolicy, &requires_policy)) {
return requires_policy ? ProfileRequiresPolicy::kPolicyRequired
: ProfileRequiresPolicy::kNoPolicyRequired;
}
return ProfileRequiresPolicy::kUnknown;
}
void ClearProfileRequiresPolicy(const AccountId& account_id) {
ClearPref(account_id, kProfileRequiresPolicy);
}
void UpdateReauthReason(const AccountId& account_id, const int reauth_reason) {
SetIntegerPref(account_id, kReauthReasonKey, reauth_reason);
}
bool FindReauthReason(const AccountId& account_id, int* out_value) {
return GetIntegerPref(account_id, kReauthReasonKey, out_value);
}
bool WasUserHomeMinimalMigrationAttempted(const AccountId& account_id) {
bool minimal_migration_attempted;
const bool pref_set = GetBooleanPref(account_id, kMinimalMigrationAttempted,
&minimal_migration_attempted);
if (pref_set)
return minimal_migration_attempted;
// If we haven't recorded that a minimal migration has been attempted, assume
// no.
return false;
}
void SetUserHomeMinimalMigrationAttempted(const AccountId& account_id,
bool minimal_migration_attempted) {
SetBooleanPref(account_id, kMinimalMigrationAttempted,
minimal_migration_attempted);
}
void SetChallengeResponseKeys(const AccountId& account_id, base::Value value) {
DCHECK(value.is_list());
SetPref(account_id, kChallengeResponseKeys, std::move(value));
}
base::Value GetChallengeResponseKeys(const AccountId& account_id) {
const base::Value* value = nullptr;
if (!GetPref(account_id, kChallengeResponseKeys, &value) || !value->is_list())
return base::Value();
return value->Clone();
}
void SetLastOnlineSignin(const AccountId& account_id, base::Time time) {
SetPref(account_id, kLastOnlineSignin, util::TimeToValue(time));
}
base::Time GetLastOnlineSignin(const AccountId& account_id) {
const base::Value* value = nullptr;
if (!GetPref(account_id, kLastOnlineSignin, &value))
return base::Time();
base::Optional<base::Time> time = util::ValueToTime(value);
if (!time)
return base::Time();
return *time;
}
void SetOfflineSigninLimit(const AccountId& account_id,
base::TimeDelta time_delta) {
SetPref(account_id, kOfflineSigninLimit, util::TimeDeltaToValue(time_delta));
}
base::TimeDelta GetOfflineSigninLimit(const AccountId& account_id) {
const base::Value* value = nullptr;
if (!GetPref(account_id, kOfflineSigninLimit, &value))
return base::TimeDelta();
base::Optional<base::TimeDelta> time_delta = util::ValueToTimeDelta(value);
if (!time_delta)
return base::TimeDelta();
return *time_delta;
}
void SetIsEnterpriseManaged(const AccountId& account_id,
bool is_enterprise_managed) {
SetBooleanPref(account_id, kIsEnterpriseManaged, is_enterprise_managed);
}
bool GetIsEnterpriseManaged(const AccountId& account_id) {
bool is_enterprise_managed;
if (GetBooleanPref(account_id, kIsEnterpriseManaged, &is_enterprise_managed))
return is_enterprise_managed;
return false;
}
void SetUserLastInputMethod(const AccountId& account_id,
const std::string& input_method) {
SetStringPref(account_id, kLastInputMethod, input_method);
}
bool GetUserLastInputMethod(const AccountId& account_id,
std::string* input_method) {
return GetStringPref(account_id, kLastInputMethod, input_method);
}
void RemovePrefs(const AccountId& account_id) {
PrefService* local_state = GetLocalState();
// Local State may not be initialized in tests.
if (!local_state)
return;
if (!account_id.is_valid())
return;
ListPrefUpdate update(local_state, kKnownUsers);
for (size_t i = 0; i < update->GetSize(); ++i) {
base::DictionaryValue* element = nullptr;
if (update->GetDictionary(i, &element)) {
if (UserMatches(account_id, *element)) {
update->Remove(i, nullptr);
break;
}
}
}
}
void CleanEphemeralUsers() {
PrefService* local_state = GetLocalState();
// Local State may not be initialized in tests.
if (!local_state)
return;
ListPrefUpdate update(local_state, kKnownUsers);
update->EraseListValueIf([](const auto& value) {
if (!value.is_dict())
return false;
base::Optional<bool> is_ephemeral = value.FindBoolKey(kIsEphemeral);
return is_ephemeral && *is_ephemeral;
});
}
void RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterListPref(kKnownUsers);
}
} // namespace known_user
} // namespace user_manager
|