Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Side by Side Diff: components/signin/core/account_id/account_id.h

Issue 2519823006: Chromad: Add authentication flow (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_ 5 #ifndef COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_
6 #define COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_ 6 #define COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <string> 10 #include <string>
11 #include "base/containers/hash_tables.h" 11 #include "base/containers/hash_tables.h"
12 12
13 // Type that contains enough information to identify user. 13 // Type that contains enough information to identify user.
14 // 14 //
15 // TODO(alemate): we are in the process of moving away from std::string as a 15 // TODO(alemate): we are in the process of moving away from std::string as a
16 // type for storing user identifier to AccountId. At this time GaiaId is mostly 16 // type for storing user identifier to AccountId. At this time GaiaId is mostly
17 // empty, so this type is used as a replacement for e-mail string. 17 // empty, so this type is used as a replacement for e-mail string.
18 // But in near future AccountId will become full feature user identifier. 18 // But in near future AccountId will become full feature user identifier.
19 class AccountId { 19 class AccountId {
20 public: 20 public:
21 // Known account types.
22 static const std::string kGoogle;
23 static const std::string kAd;
24
21 struct EmptyAccountId; 25 struct EmptyAccountId;
22 26
23 AccountId(const AccountId& other); 27 AccountId(const AccountId& other);
24 28
25 bool operator==(const AccountId& other) const; 29 bool operator==(const AccountId& other) const;
26 bool operator!=(const AccountId& other) const; 30 bool operator!=(const AccountId& other) const;
27 bool operator<(const AccountId& right) const; 31 bool operator<(const AccountId& right) const;
28 32
29 // empty() is deprecated. Use !is_valid() instead. 33 // empty() is deprecated. Use !is_valid() instead.
30 bool empty() const; 34 bool empty() const;
31 bool is_valid() const; 35 bool is_valid() const;
32 void clear(); 36 void clear();
33 37
34 const std::string& GetAccountType() const; 38 const std::string& GetAccountType() const;
35 const std::string& GetGaiaId() const; 39 const std::string& GetGaiaId() const;
36 // Users of AccountId should make no assumptions on the format of email. 40 // Users of AccountId should make no assumptions on the format of email.
37 // I.e. it cannot be used as account identifier, because it is (in general) 41 // I.e. it cannot be used as account identifier, because it is (in general)
38 // non-comparable. 42 // non-comparable.
39 const std::string& GetUserEmail() const; 43 const std::string& GetUserEmail() const;
40 44
41 // This returns prefixed some string that can be used as a storage key. 45 // This returns prefixed some string that can be used as a storage key.
42 // You should make no assumptions on the format of this string. 46 // You should make no assumptions on the format of this string.
43 const std::string GetAccountIdKey() const; 47 const std::string GetAccountIdKey() const;
44 48
45 void SetGaiaId(const std::string& gaia_id); 49 void SetGaiaId(const std::string& gaia_id);
46 void SetUserEmail(const std::string& email); 50 void SetUserEmail(const std::string& email);
51 void SetAccountType(const std::string& account_type);
47 52
48 // This method is to be used during transition period only. 53 // This method is to be used during transition period only.
49 static AccountId FromUserEmail(const std::string& user_email); 54 static AccountId FromUserEmail(const std::string& user_email);
50 // This method is to be used during transition period only. 55 // This method is to be used during transition period only.
51 static AccountId FromGaiaId(const std::string& gaia_id); 56 static AccountId FromGaiaId(const std::string& gaia_id);
52 // This method is the preferred way to construct AccountId if you have 57 // This method is the preferred way to construct AccountId if you have
53 // full account information. 58 // full account information.
54 static AccountId FromUserEmailGaiaId(const std::string& user_email, 59 static AccountId FromUserEmailGaiaId(const std::string& user_email,
55 const std::string& gaia_id); 60 const std::string& gaia_id);
56 61
57 // These are (for now) unstable and cannot be used to store serialized data to 62 // These are (for now) unstable and cannot be used to store serialized data to
58 // persistent storage. Only in-memory storage is safe. 63 // persistent storage. Only in-memory storage is safe.
59 // Serialize() returns JSON dictionary, 64 // Serialize() returns JSON dictionary,
60 // Deserialize() restores AccountId after serialization. 65 // Deserialize() restores AccountId after serialization.
61 std::string Serialize() const; 66 std::string Serialize() const;
62 static bool Deserialize(const std::string& serialized, 67 static bool Deserialize(const std::string& serialized,
63 AccountId* out_account_id); 68 AccountId* out_account_id);
64 69
65 private: 70 private:
66 AccountId(); 71 AccountId();
67 AccountId(const std::string& gaia_id, const std::string& user_email); 72 AccountId(const std::string& gaia_id, const std::string& user_email);
68 73
69 std::string gaia_id_; 74 std::string gaia_id_;
70 std::string user_email_; 75 std::string user_email_;
76 std::string account_type_ = kGoogle;
71 }; 77 };
72 78
73 // Returns a reference to a singleton. 79 // Returns a reference to a singleton.
74 const AccountId& EmptyAccountId(); 80 const AccountId& EmptyAccountId();
75 81
76 namespace BASE_HASH_NAMESPACE { 82 namespace BASE_HASH_NAMESPACE {
77 83
78 // Implement hashing of AccountId, so it can be used as a key in STL containers. 84 // Implement hashing of AccountId, so it can be used as a key in STL containers.
79 template <> 85 template <>
80 struct hash<AccountId> { 86 struct hash<AccountId> {
81 std::size_t operator()(const AccountId& user_id) const; 87 std::size_t operator()(const AccountId& user_id) const;
82 }; 88 };
83 89
84 } // namespace BASE_HASH_NAMESPACE 90 } // namespace BASE_HASH_NAMESPACE
85 91
86 #endif // COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_ 92 #endif // COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698