| OLD | NEW |
| 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 enum class AccountType { UNKNOWN, GOOGLE, ACTIVE_DIRECTORY }; |
| 14 |
| 13 // Type that contains enough information to identify user. | 15 // Type that contains enough information to identify user. |
| 14 // | 16 // |
| 15 // TODO(alemate): we are in the process of moving away from std::string as a | 17 // 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 | 18 // 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. | 19 // 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. | 20 // But in near future AccountId will become full feature user identifier. |
| 21 // TODO(alemate): Rename functions and fields to reflect different types of |
| 22 // accounts. (see crbug.com/672253) |
| 19 class AccountId { | 23 class AccountId { |
| 20 public: | 24 public: |
| 21 struct EmptyAccountId; | 25 struct EmptyAccountId; |
| 22 | 26 |
| 23 AccountId(const AccountId& other); | 27 AccountId(const AccountId& other); |
| 24 | 28 |
| 29 // If any of the comparable AccountIds has AccountType == UNKNOWN then it |
| 30 // compares emails. |
| 31 // If both are not UNKNOWN and not equal then it returns false. |
| 32 // If AccountType == GOOGLE then it checks if either ids or emails are equal. |
| 33 // If AccountType == ACTIVE_DIRECTORY then it checks if ids and emails are |
| 34 // equal. |
| 25 bool operator==(const AccountId& other) const; | 35 bool operator==(const AccountId& other) const; |
| 26 bool operator!=(const AccountId& other) const; | 36 bool operator!=(const AccountId& other) const; |
| 27 bool operator<(const AccountId& right) const; | 37 bool operator<(const AccountId& right) const; |
| 28 | 38 |
| 29 // empty() is deprecated. Use !is_valid() instead. | 39 // empty() is deprecated. Use !is_valid() instead. |
| 30 bool empty() const; | 40 bool empty() const; |
| 31 bool is_valid() const; | 41 bool is_valid() const; |
| 32 void clear(); | 42 void clear(); |
| 33 | 43 |
| 34 const std::string& GetAccountType() const; | 44 AccountType GetAccountType() const; |
| 35 const std::string& GetGaiaId() const; | 45 const std::string& GetGaiaId() const; |
| 46 const std::string& GetObjGuid() const; |
| 36 // Users of AccountId should make no assumptions on the format of email. | 47 // 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) | 48 // I.e. it cannot be used as account identifier, because it is (in general) |
| 38 // non-comparable. | 49 // non-comparable. |
| 39 const std::string& GetUserEmail() const; | 50 const std::string& GetUserEmail() const; |
| 40 | 51 |
| 52 // Returns true if |GetAccountIdKey| would return valid key. |
| 53 bool HasAccountIdKey() const; |
| 41 // This returns prefixed some string that can be used as a storage key. | 54 // 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. | 55 // You should make no assumptions on the format of this string. |
| 43 const std::string GetAccountIdKey() const; | 56 const std::string GetAccountIdKey() const; |
| 44 | 57 |
| 45 void SetGaiaId(const std::string& gaia_id); | |
| 46 void SetUserEmail(const std::string& email); | 58 void SetUserEmail(const std::string& email); |
| 47 | 59 |
| 48 // This method is to be used during transition period only. | 60 // This method is to be used during transition period only. |
| 61 // AccountId with UNKNOWN AccountType; |
| 49 static AccountId FromUserEmail(const std::string& user_email); | 62 static AccountId FromUserEmail(const std::string& user_email); |
| 63 // AccountId with GOOGLE AccountType; |
| 50 // This method is to be used during transition period only. | 64 // This method is to be used during transition period only. |
| 51 static AccountId FromGaiaId(const std::string& gaia_id); | 65 static AccountId FromGaiaId(const std::string& gaia_id); |
| 52 // This method is the preferred way to construct AccountId if you have | 66 // This method is the preferred way to construct AccountId if you have |
| 53 // full account information. | 67 // full account information. |
| 68 // AccountId with GOOGLE AccountType; |
| 54 static AccountId FromUserEmailGaiaId(const std::string& user_email, | 69 static AccountId FromUserEmailGaiaId(const std::string& user_email, |
| 55 const std::string& gaia_id); | 70 const std::string& gaia_id); |
| 71 // These methods are used to construct Active Directory AccountIds. |
| 72 // AccountId with ACTIVE_DIRECTORY AccountType; |
| 73 static AccountId AdFromUserEmailObjGuid(const std::string& email, |
| 74 const std::string& obj_guid); |
| 75 // AccountId with ACTIVE_DIRECTORY AccountType; |
| 76 static AccountId AdFromObjGuid(const std::string& obj_guid); |
| 77 |
| 78 // Translation functions between AccountType and std::string. Used for |
| 79 // serialization. |
| 80 static AccountType StringToAccountType( |
| 81 const std::string& account_type_string); |
| 82 static std::string AccountTypeToString(const AccountType& account_type); |
| 56 | 83 |
| 57 // These are (for now) unstable and cannot be used to store serialized data to | 84 // These are (for now) unstable and cannot be used to store serialized data to |
| 58 // persistent storage. Only in-memory storage is safe. | 85 // persistent storage. Only in-memory storage is safe. |
| 59 // Serialize() returns JSON dictionary, | 86 // Serialize() returns JSON dictionary, |
| 60 // Deserialize() restores AccountId after serialization. | 87 // Deserialize() restores AccountId after serialization. |
| 61 std::string Serialize() const; | 88 std::string Serialize() const; |
| 62 static bool Deserialize(const std::string& serialized, | 89 static bool Deserialize(const std::string& serialized, |
| 63 AccountId* out_account_id); | 90 AccountId* out_account_id); |
| 64 | 91 |
| 65 private: | 92 private: |
| 66 AccountId(); | 93 AccountId(); |
| 67 AccountId(const std::string& gaia_id, const std::string& user_email); | 94 AccountId(const std::string& id, |
| 95 const std::string& user_email, |
| 96 const AccountType& account_type); |
| 68 | 97 |
| 69 std::string gaia_id_; | 98 std::string id_; |
| 70 std::string user_email_; | 99 std::string user_email_; |
| 100 AccountType account_type_ = AccountType::UNKNOWN; |
| 71 }; | 101 }; |
| 72 | 102 |
| 73 // Returns a reference to a singleton. | 103 // Returns a reference to a singleton. |
| 74 const AccountId& EmptyAccountId(); | 104 const AccountId& EmptyAccountId(); |
| 75 | 105 |
| 76 namespace BASE_HASH_NAMESPACE { | 106 namespace BASE_HASH_NAMESPACE { |
| 77 | 107 |
| 78 // Implement hashing of AccountId, so it can be used as a key in STL containers. | 108 // Implement hashing of AccountId, so it can be used as a key in STL containers. |
| 79 template <> | 109 template <> |
| 80 struct hash<AccountId> { | 110 struct hash<AccountId> { |
| 81 std::size_t operator()(const AccountId& user_id) const; | 111 std::size_t operator()(const AccountId& user_id) const; |
| 82 }; | 112 }; |
| 83 | 113 |
| 84 } // namespace BASE_HASH_NAMESPACE | 114 } // namespace BASE_HASH_NAMESPACE |
| 85 | 115 |
| 86 #endif // COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_ | 116 #endif // COMPONENTS_SIGNIN_CORE_ACCOUNT_ID_ACCOUNT_ID_H_ |
| OLD | NEW |