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
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PAYMENTS_CORE_URL_UTIL_H_
#define COMPONENTS_PAYMENTS_CORE_URL_UTIL_H_
class GURL;
namespace payments {
// Use case specific URL validity checker for web payment APIs.
//
// The command line must be initialized to use this class in tests, because it
// checks for --unsafely-treat-insecure-origin-as-secure=<origin> flag. For
// example:
// base::CommandLine::Init(0, nullptr);
class UrlUtil {
public:
UrlUtil() = delete;
UrlUtil(const UrlUtil&) = delete;
UrlUtil& operator=(const UrlUtil&) = delete;
// Validation according to https://w3c.github.io/payment-method-id/#validation
// with exceptions for local development.
//
// Returns true if one of the following is true.
// - HTTPS scheme.
// - Localhost.
// - Whitelisted via --unsafely-treat-insecure-origin-as-secure=<origin>.
//
// Note that username and password are not valid here. Path (/hello), query
// (?world), and ref (#foo) are valid. For example:
// "https://chromium.org/pay".
static bool IsValidUrlBasedPaymentMethodIdentifier(const GURL& url);
// Checks whether the given |url| is a valid origin for "supported_origins"
// field in the payment method manifest.
//
// Returns true if one of the following is true.
// - HTTPS scheme.
// - Localhost.
// - Whitelisted via --unsafely-treat-insecure-origin-as-secure=<origin>.
//
// Note that username, password, path (/hello), query (?world), and ref (#foo)
// are not valid here. Only scheme, hostname, and port number are allowed. For
// example: "https://chromium.org".
static bool IsValidSupportedOrigin(const GURL& url);
// Checks whether the given |url| is a valid URL for a payment method manifest
// or web app manifest that is fetched in the course of a web payment API
// flow.
//
// Returns true if one of the following is true.
// - Cryptographic scheme.
// - Localhost.
// - Whitelisted via --unsafely-treat-insecure-origin-as-secure=<origin>.
//
// For example: "https://chromium.org/pay/web-app-manifest.json".
static bool IsValidManifestUrl(const GURL& url);
// Checks whether the page at the given |url| should be allowed to use the web
// payment APIs.
//
// Returns true if one of the following is true.
// - Cryptographic scheme.
// - File scheme.
// - Localhost.
// - Whitelisted via --unsafely-treat-insecure-origin-as-secure=<origin>.
//
// For example: "http://localhost:8080".
static bool IsOriginAllowedToUseWebPaymentApis(const GURL& url);
// Checks whether the page with the given |url| should be allowed to be
// displayed in a payment handler window.
//
// Returns true if one of the following is true.
// - about::blank. (Can happen momentarily when opening the window.)
// - Cryptographic scheme.
// - File scheme.
// - Localhost.
// - Whitelisted via --unsafely-treat-insecure-origin-as-secure=<origin>.
//
// For example: "https://chromium.org/pay/confirm-payment.html"
static bool IsValidUrlInPaymentHandlerWindow(const GURL& url);
// Checks whether the page at the given |url| would typically be used for
// local development, e.g., localhost. The |url| parameter should be a valid
// GURL.
//
// Returns true if one of the following is true.
// - File scheme.
// - Localhost.
// - Whitelisted via --unsafely-treat-insecure-origin-as-secure=<origin>.
//
// For example: "http://localhost:8080".
static bool IsLocalDevelopmentUrl(const GURL& url);
};
} // namespace payments
#endif // COMPONENTS_PAYMENTS_CORE_URL_UTIL_H_
|