blob: 91ef2a4255ca094c9503250164c2dbd0e6491d0a [file] [log] [blame]
// Copyright 2017 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.
#ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_MANIFEST_WEB_DATA_SERVICE_H_
#define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_MANIFEST_WEB_DATA_SERVICE_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/memory/ref_counted.h"
#include "components/payments/content/web_app_manifest.h"
#include "components/webdata/common/web_data_service_base.h"
#include "components/webdata/common/web_database.h"
class WDTypedResult;
class WebDatabaseService;
class WebDataServiceConsumer;
namespace base {
class SingleThreadTaskRunner;
}
namespace payments {
struct SecurePaymentConfirmationInstrument;
// Web data service to read/write data in WebAppManifestSectionTable and
// PaymentMethodManifestTable.
class PaymentManifestWebDataService : public WebDataServiceBase {
public:
PaymentManifestWebDataService(
scoped_refptr<WebDatabaseService> wdbs,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
// Adds the web app `manifest`.
void AddPaymentWebAppManifest(std::vector<WebAppManifestSection> manifest);
// Adds the `payment_method`'s manifest.
void AddPaymentMethodManifest(const std::string& payment_method,
std::vector<std::string> app_package_names);
// Gets the `web_app`'s manifest and returns it to the `consumer`, which must
// outlive the DB operation, because DB tasks cannot be cancelled.
WebDataServiceBase::Handle GetPaymentWebAppManifest(
const std::string& web_app,
WebDataServiceConsumer* consumer);
// Gets the `payment_method`'s manifest and returns it the `consumer`, which
// must outlive the DB operation, because DB tasks cannot be cancelled.
WebDataServiceBase::Handle GetPaymentMethodManifest(
const std::string& payment_method,
WebDataServiceConsumer* consumer);
// Adds the secure payment confirmation `instrument` and returns a boolean
// status to the `consumer`, which must outlive the DB operation, because DB
// tasks cannot be cancelled. The `instrument` should not be null.
WebDataServiceBase::Handle AddSecurePaymentConfirmationInstrument(
std::unique_ptr<SecurePaymentConfirmationInstrument> instrument,
WebDataServiceConsumer* consumer);
// Gets the secure payment confirmation instrument information for the given
// `credential_ids` and returns it to the `consumer`, which must outlive the
// DB operation, because DB tasks cannot be cancelled. Please use
// `std::move()` for `credential_ids` parameter to avoid extra copies.
WebDataServiceBase::Handle GetSecurePaymentConfirmationInstruments(
std::vector<std::vector<uint8_t>> credential_ids,
WebDataServiceConsumer* consumer);
private:
~PaymentManifestWebDataService() override;
void RemoveExpiredData(WebDatabase* db);
WebDatabase::State AddPaymentWebAppManifestImpl(
const std::vector<WebAppManifestSection>& manifest,
WebDatabase* db);
WebDatabase::State AddPaymentMethodManifestImpl(
const std::string& payment_method,
const std::vector<std::string>& app_package_names,
WebDatabase* db);
std::unique_ptr<WDTypedResult> AddSecurePaymentConfirmationInstrumentImpl(
std::unique_ptr<SecurePaymentConfirmationInstrument> instrument,
WebDatabase* db);
std::unique_ptr<WDTypedResult> GetPaymentWebAppManifestImpl(
const std::string& web_app,
WebDatabase* db);
std::unique_ptr<WDTypedResult> GetPaymentMethodManifestImpl(
const std::string& payment_method,
WebDatabase* db);
std::unique_ptr<WDTypedResult> GetSecurePaymentConfirmationInstrumentsImpl(
std::vector<std::vector<uint8_t>> credential_ids,
WebDatabase* db);
DISALLOW_COPY_AND_ASSIGN(PaymentManifestWebDataService);
};
} // namespace payments
#endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_MANIFEST_WEB_DATA_SERVICE_H_