OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/autofill/wallet/required_action.h" | |
6 | |
7 #include "base/logging.h" | |
8 #include "base/string_util.h" | |
9 | |
10 namespace autofill { | |
11 namespace wallet { | |
12 | |
13 bool ActionAppliesToFullWallet(RequiredAction action) { | |
14 return action == UPDATE_EXPIRATION_DATE || | |
15 action == VERIFY_CVV || | |
16 action == CHOOSE_ANOTHER_INSTRUMENT_OR_ADDRESS || | |
17 action == REQUIRE_PHONE_NUMBER; | |
18 } | |
19 | |
20 bool ActionAppliesToSaveToWallet(RequiredAction action) { | |
21 return action == INVALID_FORM_FIELD || | |
22 action == REQUIRE_PHONE_NUMBER; | |
23 } | |
24 | |
25 bool ActionAppliesToWalletItems(RequiredAction action) { | |
26 return action == SETUP_WALLET || | |
27 action == ACCEPT_TOS || | |
28 action == GAIA_AUTH || | |
29 action == REQUIRE_PHONE_NUMBER || | |
30 action == UPDATE_EXPIRATION_DATE || | |
31 action == UPGRADE_MIN_ADDRESS || | |
32 action == PASSIVE_GAIA_AUTH; | |
33 } | |
34 | |
35 RequiredAction ParseRequiredActionFromString(const std::string& str) { | |
36 std::string str_lower; | |
37 TrimWhitespaceASCII(StringToLowerASCII(str), TRIM_ALL, &str_lower); | |
38 | |
39 if (str_lower == "setup_wallet") | |
40 return SETUP_WALLET; | |
41 else if (str_lower == "accept_tos") | |
42 return ACCEPT_TOS; | |
43 else if (str_lower == "gaia_auth") | |
44 return GAIA_AUTH; | |
45 else if (str_lower == "update_expiration_date") | |
46 return UPDATE_EXPIRATION_DATE; | |
47 else if (str_lower == "upgrade_min_address") | |
48 return UPGRADE_MIN_ADDRESS; | |
49 else if (str_lower == "invalid_form_field") | |
50 return INVALID_FORM_FIELD; | |
51 else if (str_lower == "verify_cvv") | |
52 return VERIFY_CVV; | |
53 else if (str_lower == "passive_gaia_auth") | |
54 return PASSIVE_GAIA_AUTH; | |
55 else if (str_lower == "require_phone_number") | |
56 return REQUIRE_PHONE_NUMBER; | |
57 else if (str_lower == "choose_another_instrument_or_address") | |
58 return CHOOSE_ANOTHER_INSTRUMENT_OR_ADDRESS; | |
59 | |
60 DLOG(ERROR) << "Failed to parse: \"" << str << "\" as a required action"; | |
61 return UNKNOWN_TYPE; | |
62 } | |
63 | |
64 } // namespace wallet | |
65 } // namespace autofill | |
OLD | NEW |