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
|
// Copyright 2013 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/autofill/content/browser/wallet/wallet_service_url.h"
#include <string>
#include "base/command_line.h"
#include "base/format_macros.h"
#include "base/metrics/field_trial.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "components/autofill/core/common/autofill_switches.h"
#include "google_apis/gaia/gaia_urls.h"
#include "net/base/url_util.h"
#include "url/gurl.h"
namespace autofill {
namespace {
const char kProdWalletServiceUrl[] = "https://wallet.google.com/";
// TODO(ahutter): Remove this once production is ready.
const char kSandboxWalletServiceUrl[] =
"https://wallet-web.sandbox.google.com/";
// TODO(ahutter): Remove this once production is ready.
const char kSandboxWalletSecureServiceUrl[] =
"https://wallet-web.sandbox.google.com/";
bool IsWalletProductionEnabled() {
const CommandLine* command_line = CommandLine::ForCurrentProcess();
std::string sandbox_enabled(
command_line->GetSwitchValueASCII(switches::kWalletServiceUseSandbox));
if (!sandbox_enabled.empty())
return sandbox_enabled != "1";
return true;
}
GURL GetWalletHostUrl() {
const CommandLine& command_line = *CommandLine::ForCurrentProcess();
std::string wallet_service_hostname =
command_line.GetSwitchValueASCII(switches::kWalletServiceUrl);
if (!wallet_service_hostname.empty())
return GURL(wallet_service_hostname);
if (IsWalletProductionEnabled())
return GURL(kProdWalletServiceUrl);
return GURL(kSandboxWalletServiceUrl);
}
GURL GetBaseWalletUrl(size_t user_index) {
std::string path = base::StringPrintf("online/v2/u/%" PRIuS "/", user_index);
return GetWalletHostUrl().Resolve(path);
}
GURL GetBaseAutocheckoutUrl(size_t user_index) {
return GetBaseWalletUrl(user_index).Resolve("wallet/autocheckout/v1/");
}
GURL GetBaseSecureUrl() {
const CommandLine& command_line = *CommandLine::ForCurrentProcess();
std::string wallet_secure_url =
command_line.GetSwitchValueASCII(switches::kWalletSecureServiceUrl);
if (!wallet_secure_url.empty())
return GURL(wallet_secure_url);
if (IsWalletProductionEnabled())
return GURL(kProdWalletServiceUrl);
return GURL(kSandboxWalletSecureServiceUrl);
}
GURL GetBaseEncryptedFrontendUrl(size_t user_index) {
const CommandLine& command_line = *CommandLine::ForCurrentProcess();
// TODO(ahutter): Stop checking these switches once we switch over to prod.
GURL base_url = IsWalletProductionEnabled() ||
command_line.HasSwitch(switches::kWalletServiceUrl) ?
GetWalletHostUrl() : GetBaseSecureUrl();
std::string path =
base::StringPrintf("online-secure/v2/u/%" PRIuS "/autocheckout/v1/",
user_index);
return base_url.Resolve(path);
}
} // namespace
namespace wallet {
GURL GetGetWalletItemsUrl(size_t user_index) {
return GetBaseAutocheckoutUrl(user_index).Resolve("getWalletItemsJwtless");
}
GURL GetGetFullWalletUrl(size_t user_index) {
return GetBaseEncryptedFrontendUrl(user_index)
.Resolve("getFullWalletJwtless?s7e=otp");
}
GURL GetManageInstrumentsUrl(size_t user_index) {
std::string path =
base::StringPrintf("manage/w/%" PRIuS "/paymentMethods", user_index);
return GetBaseSecureUrl().Resolve(path);
}
GURL GetManageAddressesUrl(size_t user_index) {
std::string path =
base::StringPrintf("manage/w/%" PRIuS "/settings/addresses", user_index);
return GetBaseSecureUrl().Resolve(path);
}
GURL GetAcceptLegalDocumentsUrl(size_t user_index) {
return GetBaseAutocheckoutUrl(user_index).Resolve("acceptLegalDocument");
}
GURL GetAuthenticateInstrumentUrl(size_t user_index) {
return GetBaseEncryptedFrontendUrl(user_index)
.Resolve("authenticateInstrument?s7e=cvn");
}
GURL GetSendStatusUrl(size_t user_index) {
return GetBaseAutocheckoutUrl(user_index).Resolve("reportStatus");
}
GURL GetSaveToWalletNoEscrowUrl(size_t user_index) {
return GetBaseAutocheckoutUrl(user_index).Resolve("saveToWallet");
}
GURL GetSaveToWalletUrl(size_t user_index) {
return GetBaseEncryptedFrontendUrl(user_index)
.Resolve("saveToWallet?s7e=card_number%3Bcvn");
}
GURL GetPassiveAuthUrl(size_t user_index) {
return GetBaseWalletUrl(user_index)
.Resolve("passiveauth?isChromePayments=true");
}
GURL GetSignInUrl() {
GURL url(GaiaUrls::GetInstance()->add_account_url());
url = net::AppendQueryParameter(url, "nui", "1");
// Prevents promos from showing (see http://crbug.com/235227).
url = net::AppendQueryParameter(url, "sarp", "1");
url = net::AppendQueryParameter(url,
"continue",
GetSignInContinueUrl().spec());
return url;
}
// The continue url portion of the sign-in URL. This URL is used as a milestone
// to determine that the sign-in process is finished. It has to be a Google
// domain, use https://, and do almost nothing, but otherwise it's not too
// important what the URL actually is: it's not important that this URL has the
// ability to generate a gdToken.
GURL GetSignInContinueUrl() {
return GetPassiveAuthUrl(0);
}
bool IsSignInContinueUrl(const GURL& url, size_t* user_index) {
GURL final_url = wallet::GetSignInContinueUrl();
if (!url.SchemeIsSecure() ||
url.host() != final_url.host() ||
url.path() != final_url.path()) {
return false;
}
*user_index = 0;
std::string query_str = url.query();
url_parse::Component query(0, query_str.length());
url_parse::Component key, value;
const char kUserIndexKey[] = "authuser";
while (url_parse::ExtractQueryKeyValue(query_str.c_str(), &query, &key,
&value)) {
if (key.is_nonempty() &&
query_str.substr(key.begin, key.len) == kUserIndexKey) {
base::StringToSizeT(query_str.substr(value.begin, value.len), user_index);
break;
}
}
return true;
}
bool IsSignInRelatedUrl(const GURL& url) {
return url.GetOrigin() == GetSignInUrl().GetOrigin();
}
bool IsUsingProd() {
return GetWalletHostUrl() == GURL(kProdWalletServiceUrl);
}
} // namespace wallet
} // namespace autofill
|