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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/payments/core/journey_logger.h"
#include <algorithm>
#include <vector>
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
#include "base/notreached.h"
#include "base/strings/string_number_conversions.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "third_party/re2/src/re2/re2.h"
namespace payments {
namespace {
// Returns the JourneyLogger histograms name suffix based on the |section| and
// the |completion_status|.
std::string GetHistogramNameSuffix(
int section,
JourneyLogger::CompletionStatus completion_status) {
std::string name_suffix;
switch (section) {
case JourneyLogger::SECTION_SHIPPING_ADDRESS:
name_suffix = "ShippingAddress.";
break;
case JourneyLogger::SECTION_CONTACT_INFO:
name_suffix = "ContactInfo.";
break;
case JourneyLogger::SECTION_PAYMENT_METHOD:
name_suffix = "PaymentMethod.";
break;
default:
break;
}
switch (completion_status) {
case JourneyLogger::COMPLETION_STATUS_COMPLETED:
name_suffix += "Completed";
break;
case JourneyLogger::COMPLETION_STATUS_USER_ABORTED:
name_suffix += "UserAborted";
break;
case JourneyLogger::COMPLETION_STATUS_OTHER_ABORTED:
name_suffix += "OtherAborted";
break;
case JourneyLogger::COMPLETION_STATUS_USER_OPTED_OUT:
name_suffix += "UserOptedOut";
break;
default:
break;
}
DCHECK(!name_suffix.empty());
return name_suffix;
}
// Returns true when exactly one boolean value in the vector is true.
bool ValidateExclusiveBitVector(const std::vector<bool>& bit_vector) {
bool seen_true_bit = false;
for (auto bit : bit_vector) {
if (!bit)
continue;
if (seen_true_bit)
return false;
seen_true_bit = true;
}
return seen_true_bit;
}
} // namespace
JourneyLogger::JourneyLogger(ukm::SourceId payment_request_source_id)
: events2_(static_cast<int>(Event2::kInitiated)),
payment_request_source_id_(payment_request_source_id) {}
JourneyLogger::~JourneyLogger() = default;
void JourneyLogger::SetNumberOfSuggestionsShown(Section section,
int number,
bool has_complete_suggestion) {
DCHECK_LT(section, SECTION_MAX);
sections_[section].number_suggestions_shown_ = number;
sections_[section].is_requested_ = true;
sections_[section].has_complete_suggestion_ = has_complete_suggestion;
}
void JourneyLogger::SetEvent2Occurred(Event2 event) {
events2_ |= static_cast<int>(event);
}
void JourneyLogger::SetOptOutOffered() {
SetEvent2Occurred(Event2::kOptOutOffered);
}
void JourneyLogger::SetActivationlessShow() {
SetEvent2Occurred(Event2::kActivationlessShow);
}
void JourneyLogger::SetSkippedShow() {
SetEvent2Occurred(Event2::kSkippedShow);
}
void JourneyLogger::SetShown() {
SetEvent2Occurred(Event2::kShown);
}
void JourneyLogger::SetPayClicked() {
SetEvent2Occurred(Event2::kPayClicked);
}
void JourneyLogger::SetSelectedMethod(PaymentMethodCategory category) {
switch (category) {
case PaymentMethodCategory::kBasicCard:
SetEvent2Occurred(Event2::kSelectedCreditCard);
break;
case PaymentMethodCategory::kGoogle:
SetEvent2Occurred(Event2::kSelectedGoogle);
break;
case PaymentMethodCategory::kPlayBilling:
SetEvent2Occurred(Event2::kSelectedPlayBilling);
break;
case PaymentMethodCategory::kSecurePaymentConfirmation:
SetEvent2Occurred(Event2::kSelectedSecurePaymentConfirmation);
break;
case PaymentMethodCategory::kGooglePayAuthentication: // Intentional
// fallthrough.
case PaymentMethodCategory::kOther:
SetEvent2Occurred(Event2::kSelectedOther);
break;
default:
NOTREACHED();
}
}
void JourneyLogger::SetRequestedInformation(bool requested_shipping,
bool requested_email,
bool requested_phone,
bool requested_name) {
// This method should only be called once per Payment Request.
if (requested_shipping) {
SetEvent2Occurred(Event2::kRequestShipping);
}
if (requested_email) {
SetEvent2Occurred(Event2::kRequestPayerData);
}
if (requested_phone) {
SetEvent2Occurred(Event2::kRequestPayerData);
}
if (requested_name) {
SetEvent2Occurred(Event2::kRequestPayerData);
}
}
void JourneyLogger::SetRequestedPaymentMethods(
const std::vector<PaymentMethodCategory>& methods) {
for (auto& method : methods) {
switch (method) {
case PaymentMethodCategory::kBasicCard:
SetEvent2Occurred(Event2::kRequestMethodBasicCard);
break;
case PaymentMethodCategory::kGoogle:
SetEvent2Occurred(Event2::kRequestMethodGoogle);
break;
case PaymentMethodCategory::kGooglePayAuthentication:
SetEvent2Occurred(Event2::kRequestMethodGooglePayAuthentication);
break;
case PaymentMethodCategory::kPlayBilling:
SetEvent2Occurred(Event2::kRequestMethodPlayBilling);
break;
case PaymentMethodCategory::kSecurePaymentConfirmation:
SetEvent2Occurred(Event2::kRequestMethodSecurePaymentConfirmation);
break;
case PaymentMethodCategory::kOther:
SetEvent2Occurred(Event2::kRequestMethodOther);
break;
}
}
}
void JourneyLogger::SetCompleted() {
DCHECK(WasPaymentRequestTriggered());
RecordJourneyStatsHistograms(COMPLETION_STATUS_COMPLETED);
}
void JourneyLogger::SetAborted(AbortReason reason) {
if (reason == ABORT_REASON_ABORTED_BY_USER ||
reason == ABORT_REASON_USER_NAVIGATION)
RecordJourneyStatsHistograms(COMPLETION_STATUS_USER_ABORTED);
else if (reason == ABORT_REASON_USER_OPTED_OUT)
RecordJourneyStatsHistograms(COMPLETION_STATUS_USER_OPTED_OUT);
else
RecordJourneyStatsHistograms(COMPLETION_STATUS_OTHER_ABORTED);
}
void JourneyLogger::SetNotShown() {
DCHECK(!WasPaymentRequestTriggered());
RecordJourneyStatsHistograms(COMPLETION_STATUS_COULD_NOT_SHOW);
}
void JourneyLogger::SetNoMatchingCredentialsShown() {
SetShown();
SetEvent2Occurred(Event2::kNoMatchingCredentials);
}
void JourneyLogger::RecordCheckoutStep(CheckoutFunnelStep step) {
base::UmaHistogramEnumeration("PaymentRequest.CheckoutFunnel", step);
}
void JourneyLogger::RecordJourneyStatsHistograms(
CompletionStatus completion_status) {
RecordEventsMetric(completion_status);
// Depending on the completion status record kPaymentRequestTriggered and/or
// kCompleted checkout steps.
switch (completion_status) {
case COMPLETION_STATUS_COMPLETED:
RecordCheckoutStep(CheckoutFunnelStep::kPaymentRequestTriggered);
RecordCheckoutStep(CheckoutFunnelStep::kCompleted);
break;
case COMPLETION_STATUS_USER_ABORTED:
case COMPLETION_STATUS_OTHER_ABORTED:
case COMPLETION_STATUS_USER_OPTED_OUT:
RecordCheckoutStep(CheckoutFunnelStep::kPaymentRequestTriggered);
break;
case COMPLETION_STATUS_COULD_NOT_SHOW:
break;
default:
NOTREACHED();
}
// These following metrics only make sense if the Payment Request was
// triggered.
if (WasPaymentRequestTriggered()) {
RecordSectionSpecificStats(completion_status);
}
}
void JourneyLogger::RecordSectionSpecificStats(
CompletionStatus completion_status) {
for (int i = 0; i < NUMBER_OF_SECTIONS; ++i) {
std::string name_suffix = GetHistogramNameSuffix(i, completion_status);
// Only log the metrics for a section if it was requested by the merchant.
if (sections_[i].is_requested_) {
base::UmaHistogramCustomCounts(
"PaymentRequest.NumberOfSuggestionsShown." + name_suffix,
std::min(sections_[i].number_suggestions_shown_, MAX_EXPECTED_SAMPLE),
MIN_EXPECTED_SAMPLE, MAX_EXPECTED_SAMPLE, NUMBER_BUCKETS);
}
}
}
void JourneyLogger::RecordEventsMetric(CompletionStatus completion_status) {
// Add the completion status to the events.
switch (completion_status) {
case COMPLETION_STATUS_COMPLETED:
SetEvent2Occurred(Event2::kCompleted);
break;
case COMPLETION_STATUS_USER_ABORTED:
SetEvent2Occurred(Event2::kUserAborted);
break;
case COMPLETION_STATUS_OTHER_ABORTED:
SetEvent2Occurred(Event2::kOtherAborted);
break;
case COMPLETION_STATUS_COULD_NOT_SHOW:
SetEvent2Occurred(Event2::kCouldNotShow);
break;
case COMPLETION_STATUS_USER_OPTED_OUT:
SetEvent2Occurred(Event2::kUserOptedOut);
break;
default:
NOTREACHED();
}
// Add whether the user had and initial form of payment to the events.
if (sections_[SECTION_PAYMENT_METHOD].number_suggestions_shown_ > 0) {
SetEvent2Occurred(Event2::kHadInitialFormOfPayment);
}
// Record the events in UMA.
ValidateEventBits();
base::UmaHistogramSparse("PaymentRequest.Events2", events2_);
if (payment_request_source_id_ == ukm::kInvalidSourceId)
return;
// Record the events in UKM.
ukm::builders::PaymentRequest_CheckoutEvents(payment_request_source_id_)
.SetCompletionStatus(completion_status)
.SetEvents2(events2_)
.Record(ukm::UkmRecorder::Get());
if (payment_app_source_id_ == ukm::kInvalidSourceId)
return;
// Record the events in UKM for payment app.
ukm::builders::PaymentApp_CheckoutEvents(payment_app_source_id_)
.SetCompletionStatus(completion_status)
.SetEvents2(events2_)
.Record(ukm::UkmRecorder::Get());
// Clear payment app source id since it gets deleted after recording.
payment_app_source_id_ = ukm::kInvalidSourceId;
}
bool JourneyLogger::WasOccurred(Event2 event) const {
return events2_ & static_cast<int>(event);
}
void JourneyLogger::ValidateEventBits() const {
std::vector<bool> bit_vector;
// Validate completion status.
bit_vector.push_back(WasOccurred(Event2::kCompleted));
bit_vector.push_back(WasOccurred(Event2::kOtherAborted));
bit_vector.push_back(WasOccurred(Event2::kUserAborted));
bit_vector.push_back(WasOccurred(Event2::kCouldNotShow));
bit_vector.push_back(WasOccurred(Event2::kUserOptedOut));
DCHECK(ValidateExclusiveBitVector(bit_vector));
bit_vector.clear();
// Validate the user selected method.
if (WasOccurred(Event2::kCompleted)) {
bit_vector.push_back(WasOccurred(Event2::kSelectedCreditCard));
bit_vector.push_back(WasOccurred(Event2::kSelectedGoogle));
bit_vector.push_back(
WasOccurred(Event2::kSelectedSecurePaymentConfirmation));
bit_vector.push_back(WasOccurred(Event2::kSelectedPlayBilling));
bit_vector.push_back(WasOccurred(Event2::kSelectedOther));
DCHECK(ValidateExclusiveBitVector(bit_vector));
bit_vector.clear();
}
// Selected method should be requested.
if (WasOccurred(Event2::kSelectedCreditCard)) {
DCHECK(WasOccurred(Event2::kRequestMethodBasicCard));
} else if (WasOccurred(Event2::kSelectedGoogle)) {
DCHECK(WasOccurred(Event2::kRequestMethodGoogle));
} else if (WasOccurred(Event2::kSelectedSecurePaymentConfirmation)) {
DCHECK(WasOccurred(Event2::kRequestMethodSecurePaymentConfirmation));
} else if (WasOccurred(Event2::kSelectedOther)) {
// It is possible that a service worker based app responds to "basic-card"
// request.
DCHECK(WasOccurred(Event2::kRequestMethodOther) ||
WasOccurred(Event2::kRequestMethodBasicCard) ||
WasOccurred(Event2::kRequestMethodGooglePayAuthentication));
}
// Validate UI SHOWN status.
if (WasOccurred(Event2::kCompleted)) {
bit_vector.push_back(WasOccurred(Event2::kShown));
bit_vector.push_back(WasOccurred(Event2::kSkippedShow));
DCHECK(ValidateExclusiveBitVector(bit_vector));
bit_vector.clear();
}
// Validate skipped UI show.
if (WasOccurred(Event2::kSkippedShow)) {
// Built in autofill payment handler for basic card should not skip UI show.
DCHECK(!WasOccurred(Event2::kSelectedCreditCard));
// Internal secure payment confirmation payment handler should not skip UI
// show.
DCHECK(!WasOccurred(Event2::kSelectedSecurePaymentConfirmation));
}
// Validate activationless show.
if (WasOccurred(Event2::kActivationlessShow)) {
// Should not be able to record an activationless show without show itself
// being recorded.
DCHECK(WasOccurred(Event2::kShown) || WasOccurred(Event2::kSkippedShow));
}
}
bool JourneyLogger::WasPaymentRequestTriggered() {
return WasOccurred(Event2::kShown) || WasOccurred(Event2::kSkippedShow);
}
void JourneyLogger::SetPaymentAppUkmSourceId(
ukm::SourceId payment_app_source_id) {
payment_app_source_id_ = payment_app_source_id;
}
base::WeakPtr<JourneyLogger> JourneyLogger::GetWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
} // namespace payments
|