blob: 3e8be0daf407c74c34a687267525f8b336f24973 [file] [log] [blame]
// Copyright 2016 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/payments/payment_request_factory.h"
#include <memory>
#include <utility>
#include "base/no_destructor.h"
#include "chrome/browser/payments/chrome_payment_request_delegate.h"
#include "components/payments/content/payment_request.h"
#include "content/public/browser/render_frame_host.h"
#include "mojo/public/cpp/bindings/message.h"
#include "third_party/blink/public/mojom/permissions_policy/permissions_policy_feature.mojom-shared.h"
namespace payments {
namespace {
using PaymentRequestFactoryCallback = base::RepeatingCallback<void(
mojo::PendingReceiver<mojom::PaymentRequest> receiver,
content::RenderFrameHost* render_frame_host)>;
PaymentRequestFactoryCallback& GetTestingFactoryCallback() {
static base::NoDestructor<PaymentRequestFactoryCallback> callback;
return *callback;
}
} // namespace
void CreatePaymentRequest(
content::RenderFrameHost* render_frame_host,
mojo::PendingReceiver<mojom::PaymentRequest> receiver) {
if (!render_frame_host->IsActive()) {
// This happens when the page has navigated away, which would cause the
// blink PaymentRequest to be released shortly, or when the iframe is being
// removed from the page, which is not a use case that we support.
// Abandoning the `receiver` will close the mojo connection, so blink
// PaymentRequest will receive a connection error and will clean up itself.
return;
}
if (!render_frame_host->IsFeatureEnabled(
blink::mojom::PermissionsPolicyFeature::kPayment)) {
mojo::ReportBadMessage("Permissions policy blocks Payment");
return;
}
if (GetTestingFactoryCallback()) {
return GetTestingFactoryCallback().Run(std::move(receiver),
render_frame_host);
}
// PaymentRequest is a DocumentService, whose lifetime is managed by the
// RenderFrameHost passed in here.
auto delegate =
std::make_unique<ChromePaymentRequestDelegate>(render_frame_host);
new PaymentRequest(std::move(delegate), std::move(receiver));
}
void SetPaymentRequestFactoryForTesting(
PaymentRequestFactoryCallback factory_callback) {
GetTestingFactoryCallback() = std::move(factory_callback);
}
} // namespace payments