File: fast_checkout_capabilities_fetcher_impl.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (213 lines) | stat: -rw-r--r-- 7,983 bytes parent folder | download | duplicates (6)
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
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/fast_checkout/fast_checkout_capabilities_fetcher_impl.h"

#include <memory>

#include "base/metrics/histogram_functions.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/public/mojom/url_response_head.mojom.h"
#include "url/origin.h"

namespace {
constexpr int kMaxDownloadSizeInBytes = 10 * 1024;
constexpr char kFastCheckoutFunnelsUrl[] =
    "https://www.gstatic.com/autofill/fast_checkout/funnels.binarypb";
constexpr base::TimeDelta kCacheTimeout(base::Minutes(10));
constexpr base::TimeDelta kFetchTimeout(base::Seconds(3));
constexpr char kUmaKeyCacheStateIsTriggerFormSupported[] =
    "Autofill.FastCheckout.CapabilitiesFetcher."
    "CacheStateForIsTriggerFormSupported";
constexpr char kUmaKeyParsingResult[] =
    "Autofill.FastCheckout.CapabilitiesFetcher.ParsingResult";
constexpr char kUmaKeyResponseAndNetErrorCode[] =
    "Autofill.FastCheckout.CapabilitiesFetcher.HttpResponseAndNetErrorCode";
constexpr char kUmaKeyResponseTime[] =
    "Autofill.FastCheckout.CapabilitiesFetcher.ResponseTime";
}  // namespace

FastCheckoutCapabilitiesFetcherImpl::FastCheckoutFunnel::FastCheckoutFunnel() =
    default;

FastCheckoutCapabilitiesFetcherImpl::FastCheckoutFunnel::~FastCheckoutFunnel() =
    default;

FastCheckoutCapabilitiesFetcherImpl::FastCheckoutFunnel::FastCheckoutFunnel(
    const FastCheckoutFunnel&) = default;

FastCheckoutCapabilitiesFetcherImpl::FastCheckoutCapabilitiesFetcherImpl(
    scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory)
    : url_loader_factory_(url_loader_factory) {}

FastCheckoutCapabilitiesFetcherImpl::~FastCheckoutCapabilitiesFetcherImpl() =
    default;

void FastCheckoutCapabilitiesFetcherImpl::FetchCapabilities() {
  if (url_loader_) {
    // There is an ongoing request.
    return;
  }
  if (!IsCacheStale()) {
    return;
  }
  cache_.clear();
  auto resource_request = std::make_unique<network::ResourceRequest>();
  resource_request->url = GURL(kFastCheckoutFunnelsUrl);
  resource_request->credentials_mode = network::mojom::CredentialsMode::kOmit;
  net::NetworkTrafficAnnotationTag traffic_annotation =
      net::DefineNetworkTrafficAnnotation("gstatic_fast_checkout_funnels",
                                          R"(
        semantics {
          sender: "Fast Checkout Tab Helper"
          description:
            "A binary proto string containing all funnels supported by Fast "
            "Checkout."
          trigger:
            "When the user visits a checkout page."
          data:
            "The request body is empty. No user data is included."
          destination: GOOGLE_OWNED_SERVICE
        }
        policy {
          cookies_allowed: NO
          setting:
            "The user can enable or disable this feature via 'Save and fill "
            "payment methods' and 'Save and fill addresses' in Chromium's "
            "settings under 'Payment methods' and 'Addresses and more' "
            "respectively. The feature is enabled by default."
          chrome_policy {
            AutofillCreditCardEnabled {
                policy_options {mode: MANDATORY}
                AutofillCreditCardEnabled: true
            }
          }
          chrome_policy {
            AutofillAddressEnabled {
                policy_options {mode: MANDATORY}
                AutofillAddressEnabled: true
            }
          }
        })");
  url_loader_ = network::SimpleURLLoader::Create(std::move(resource_request),
                                                 traffic_annotation);
  url_loader_->SetTimeoutDuration(kFetchTimeout);
  url_loader_->DownloadToString(
      url_loader_factory_.get(),
      base::BindOnce(&FastCheckoutCapabilitiesFetcherImpl::OnFetchComplete,
                     base::Unretained(this), base::TimeTicks::Now()),
      kMaxDownloadSizeInBytes);
}

bool FastCheckoutCapabilitiesFetcherImpl::IsCacheStale() const {
  return last_fetch_timestamp_.is_null() ||
         base::TimeTicks::Now() - last_fetch_timestamp_ >= kCacheTimeout;
}

void FastCheckoutCapabilitiesFetcherImpl::OnFetchComplete(
    base::TimeTicks start_time,
    std::unique_ptr<std::string> response_body) {
  base::UmaHistogramTimes(kUmaKeyResponseTime,
                          base::TimeTicks::Now() - start_time);

  int net_error = url_loader_->NetError();
  bool report_http_response_code =
      (net_error == net::OK ||
       net_error == net::ERR_HTTP_RESPONSE_CODE_FAILURE) &&
      url_loader_->ResponseInfo() && url_loader_->ResponseInfo()->headers;
  base::UmaHistogramSparse(
      kUmaKeyResponseAndNetErrorCode,
      report_http_response_code
          ? url_loader_->ResponseInfo()->headers->response_code()
          : net_error);

  // Reset `url_loader_` so that another request could be made.
  url_loader_.reset();
  last_fetch_timestamp_ = base::TimeTicks::Now();

  if (net_error != net::OK) {
    return;
  }

  if (!response_body) {
    base::UmaHistogramEnumeration(kUmaKeyParsingResult,
                                  ParsingResult::kNullResponse);
    return;
  }

  ::fast_checkout::FastCheckoutFunnels funnels;
  if (!funnels.ParseFromString(*response_body)) {
    base::UmaHistogramEnumeration(kUmaKeyParsingResult,
                                  ParsingResult::kParsingError);
    return;
  }

  base::UmaHistogramEnumeration(kUmaKeyParsingResult, ParsingResult::kSuccess);

  for (const ::fast_checkout::FastCheckoutFunnels_FastCheckoutFunnel&
           funnel_proto : funnels.funnels()) {
    AddFunnelToCache(funnel_proto);
  }
}

void FastCheckoutCapabilitiesFetcherImpl::AddFunnelToCache(
    const ::fast_checkout::FastCheckoutFunnels_FastCheckoutFunnel&
        funnel_proto) {
  // There has to be at least one trigger form signature for a funnel. Otherwise
  // a run could never be triggered successfully.
  if (funnel_proto.trigger().empty()) {
    return;
  }

  FastCheckoutFunnel funnel;
  for (uint64_t form_signature : funnel_proto.trigger()) {
    funnel.trigger.emplace(form_signature);
  }
  for (uint64_t form_signature : funnel_proto.fill()) {
    funnel.fill.emplace(form_signature);
  }

  for (const std::string& domain : funnel_proto.domains()) {
    GURL url = GURL(domain);
    if (url.is_valid() && url.SchemeIsHTTPOrHTTPS()) {
      cache_.emplace(url::Origin::Create(url), funnel);
    }
  }
}

bool FastCheckoutCapabilitiesFetcherImpl::IsTriggerFormSupported(
    const url::Origin& origin,
    autofill::FormSignature form_signature) {
  if (!cache_.contains(origin)) {
    base::UmaHistogramEnumeration(
        kUmaKeyCacheStateIsTriggerFormSupported,
        url_loader_ ? CacheStateForIsTriggerFormSupported::kFetchOngoing
                    : CacheStateForIsTriggerFormSupported::kEntryNotAvailable);
    return false;
  }

  bool is_supported = cache_.at(origin).trigger.contains(form_signature);
  base::UmaHistogramEnumeration(
      kUmaKeyCacheStateIsTriggerFormSupported,
      is_supported
          ? CacheStateForIsTriggerFormSupported::kEntryAvailableAndFormSupported
          : CacheStateForIsTriggerFormSupported::
                kEntryAvailableAndFormNotSupported);
  return is_supported;
}

base::flat_set<autofill::FormSignature>
FastCheckoutCapabilitiesFetcherImpl::GetFormsToFill(const url::Origin& origin) {
  if (!cache_.contains(origin)) {
    return {};
  }
  const FastCheckoutFunnel& funnel = cache_.at(origin);
  // All `FastCheckoutFunnel::trigger` and `FastCheckoutFunnel::fill` forms
  // should be attempted to be filled, in any order. For that reason, merge the
  // two sets into one set (`forms_to_fill`) and return it.
  base::flat_set<autofill::FormSignature> forms_to_fill = funnel.trigger;
  forms_to_fill.insert(funnel.fill.begin(), funnel.fill.end());
  return forms_to_fill;
}