Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Unified Diff: content/browser/payments/payment_app_database.cc

Issue 2560293002: PaymentApp: Introduce PaymentAppDatabase class. (Closed)
Patch Set: PaymentApp: Introduce PaymentAppDatabase class. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/payments/payment_app_database.h ('k') | content/browser/payments/payment_app_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/payments/payment_app_database.cc
diff --git a/content/browser/payments/payment_app_manager.cc b/content/browser/payments/payment_app_database.cc
similarity index 60%
copy from content/browser/payments/payment_app_manager.cc
copy to content/browser/payments/payment_app_database.cc
index bb75263c60052a26af04bdf97ad0ad75402766c1..9f18a2dc242e44427a398d3af2cb6f1bdbb3122e 100644
--- a/content/browser/payments/payment_app_manager.cc
+++ b/content/browser/payments/payment_app_database.cc
@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/payments/payment_app_manager.h"
+#include "content/browser/payments/payment_app_database.h"
#include <utility>
#include "base/bind.h"
#include "base/optional.h"
#include "content/browser/payments/payment_app.pb.h"
-#include "content/browser/payments/payment_app_context.h"
+#include "content/browser/payments/payment_app_context_impl.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/browser/service_worker/service_worker_registration.h"
#include "content/public/browser/browser_thread.h"
@@ -19,61 +19,94 @@ namespace {
const char kPaymentAppManifestDataKey[] = "PaymentAppManifestData";
-} // namespace
+payments::mojom::PaymentAppManifestPtr DeserializePaymentAppManifest(
+ const std::string& input) {
+ PaymentAppManifestProto manifest_proto;
+ bool success = manifest_proto.ParseFromString(input);
+ if (!success)
+ return nullptr;
-PaymentAppManager::~PaymentAppManager() {
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ payments::mojom::PaymentAppManifestPtr manifest =
+ payments::mojom::PaymentAppManifest::New();
+
+ manifest->label = manifest_proto.label();
+ if (manifest_proto.has_icon())
+ manifest->icon = manifest_proto.icon();
+ for (const auto& option_proto : manifest_proto.options()) {
+ payments::mojom::PaymentAppOptionPtr option =
+ payments::mojom::PaymentAppOption::New();
+ option->label = option_proto.label();
+ if (option_proto.has_icon())
+ option->icon = option_proto.icon();
+ option->id = option_proto.id();
+ for (const auto& method : option_proto.enabled_methods())
+ option->enabled_methods.push_back(method);
+ manifest->options.push_back(std::move(option));
+ }
+
+ return manifest;
}
-PaymentAppManager::PaymentAppManager(
- PaymentAppContext* payment_app_context,
- mojo::InterfaceRequest<payments::mojom::PaymentAppManager> request)
- : payment_app_context_(payment_app_context),
- binding_(this, std::move(request)),
- weak_ptr_factory_(this) {
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
- DCHECK(payment_app_context);
+bool SerializePaymentAppManifest(
+ payments::mojom::PaymentAppManifestPtr manifest,
+ std::string* output) {
+ DCHECK(manifest);
+
+ PaymentAppManifestProto manifest_proto;
+ manifest_proto.set_label(manifest->label);
+ if (manifest->icon)
+ manifest_proto.set_icon(manifest->icon.value());
+
+ for (const auto& option : manifest->options) {
+ PaymentAppOptionProto* option_proto = manifest_proto.add_options();
+ option_proto->set_label(option->label);
+ if (option->icon)
+ option_proto->set_icon(option->icon.value());
+ option_proto->set_id(option->id);
+ for (const auto& method : option->enabled_methods) {
+ option_proto->add_enabled_methods(method);
+ }
+ }
- binding_.set_connection_error_handler(
- base::Bind(&PaymentAppManager::OnConnectionError,
- base::Unretained(this)));
+ return manifest_proto.SerializeToString(output);
}
-void PaymentAppManager::OnConnectionError() {
- payment_app_context_->ServiceHadConnectionError(this);
+} // namespace
+
+PaymentAppDatabase::PaymentAppDatabase(
+ scoped_refptr<ServiceWorkerContextWrapper> service_worker_context)
+ : service_worker_context_(service_worker_context), weak_ptr_factory_(this) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
}
-void PaymentAppManager::SetManifest(
- const std::string& scope,
- payments::mojom::PaymentAppManifestPtr manifest,
- const SetManifestCallback& callback) {
+PaymentAppDatabase::~PaymentAppDatabase() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
+}
- // TODO(zino): Should implement requesting a permission for users to allow
- // the payment app to be registered. Please see http://crbug.com/665949.
+void PaymentAppDatabase::WriteManifest(
+ const GURL& scope,
+ payments::mojom::PaymentAppManifestPtr manifest,
+ const WriteManifestCallback& callback) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
- payment_app_context_->service_worker_context()
- ->FindReadyRegistrationForPattern(
- GURL(scope),
- base::Bind(&PaymentAppManager::DidFindRegistrationToSetManifest,
- weak_ptr_factory_.GetWeakPtr(),
- base::Passed(std::move(manifest)), callback));
+ service_worker_context_->FindReadyRegistrationForPattern(
+ scope, base::Bind(&PaymentAppDatabase::DidFindRegistrationToWriteManifest,
+ weak_ptr_factory_.GetWeakPtr(),
+ base::Passed(std::move(manifest)), callback));
}
-void PaymentAppManager::GetManifest(const std::string& scope,
- const GetManifestCallback& callback) {
+void PaymentAppDatabase::ReadManifest(const GURL& scope,
+ const ReadManifestCallback& callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- payment_app_context_->service_worker_context()
- ->FindReadyRegistrationForPattern(
- GURL(scope),
- base::Bind(&PaymentAppManager::DidFindRegistrationToGetManifest,
- weak_ptr_factory_.GetWeakPtr(), callback));
+ service_worker_context_->FindReadyRegistrationForPattern(
+ scope, base::Bind(&PaymentAppDatabase::DidFindRegistrationToReadManifest,
+ weak_ptr_factory_.GetWeakPtr(), callback));
}
-void PaymentAppManager::DidFindRegistrationToSetManifest(
+void PaymentAppDatabase::DidFindRegistrationToWriteManifest(
payments::mojom::PaymentAppManifestPtr manifest,
- const SetManifestCallback& callback,
+ const WriteManifestCallback& callback,
ServiceWorkerStatusCode status,
scoped_refptr<ServiceWorkerRegistration> registration) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
@@ -82,35 +115,18 @@ void PaymentAppManager::DidFindRegistrationToSetManifest(
return;
}
- PaymentAppManifestProto manifest_proto;
- manifest_proto.set_label(manifest->label);
- if (manifest->icon)
- manifest_proto.set_icon(manifest->icon.value());
-
- for (const auto& option : manifest->options) {
- PaymentAppOptionProto* option_proto = manifest_proto.add_options();
- option_proto->set_label(option->label);
- if (option->icon)
- option_proto->set_icon(option->icon.value());
- option_proto->set_id(option->id);
- for (const auto& method : option->enabled_methods) {
- option_proto->add_enabled_methods(method);
- }
- }
-
std::string serialized;
- bool success = manifest_proto.SerializeToString(&serialized);
- DCHECK(success);
+ DCHECK(SerializePaymentAppManifest(std::move(manifest), &serialized));
- payment_app_context_->service_worker_context()->StoreRegistrationUserData(
+ service_worker_context_->StoreRegistrationUserData(
registration->id(), registration->pattern().GetOrigin(),
{{kPaymentAppManifestDataKey, serialized}},
- base::Bind(&PaymentAppManager::DidSetManifest,
+ base::Bind(&PaymentAppDatabase::DidWriteManifest,
weak_ptr_factory_.GetWeakPtr(), callback));
}
-void PaymentAppManager::DidSetManifest(const SetManifestCallback& callback,
- ServiceWorkerStatusCode status) {
+void PaymentAppDatabase::DidWriteManifest(const WriteManifestCallback& callback,
+ ServiceWorkerStatusCode status) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
return callback.Run(status == SERVICE_WORKER_OK
? payments::mojom::PaymentAppManifestError::NONE
@@ -118,8 +134,8 @@ void PaymentAppManager::DidSetManifest(const SetManifestCallback& callback,
MANIFEST_STORAGE_OPERATION_FAILED);
}
-void PaymentAppManager::DidFindRegistrationToGetManifest(
- const GetManifestCallback& callback,
+void PaymentAppDatabase::DidFindRegistrationToReadManifest(
+ const ReadManifestCallback& callback,
ServiceWorkerStatusCode status,
scoped_refptr<ServiceWorkerRegistration> registration) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
@@ -129,15 +145,15 @@ void PaymentAppManager::DidFindRegistrationToGetManifest(
return;
}
- payment_app_context_->service_worker_context()->GetRegistrationUserData(
+ service_worker_context_->GetRegistrationUserData(
registration->id(), {kPaymentAppManifestDataKey},
- base::Bind(&PaymentAppManager::DidGetManifest,
+ base::Bind(&PaymentAppDatabase::DidReadManifest,
weak_ptr_factory_.GetWeakPtr(), callback));
}
-void PaymentAppManager::DidGetManifest(const GetManifestCallback& callback,
- const std::vector<std::string>& data,
- ServiceWorkerStatusCode status) {
+void PaymentAppDatabase::DidReadManifest(const ReadManifestCallback& callback,
+ const std::vector<std::string>& data,
+ ServiceWorkerStatusCode status) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (status != SERVICE_WORKER_OK || data.size() != 1) {
callback.Run(payments::mojom::PaymentAppManifest::New(),
@@ -146,32 +162,15 @@ void PaymentAppManager::DidGetManifest(const GetManifestCallback& callback,
return;
}
- PaymentAppManifestProto manifest_proto;
- bool success = manifest_proto.ParseFromString(data[0]);
- if (!success) {
+ payments::mojom::PaymentAppManifestPtr manifest =
+ DeserializePaymentAppManifest(data[0]);
+ if (!manifest) {
callback.Run(payments::mojom::PaymentAppManifest::New(),
payments::mojom::PaymentAppManifestError::
MANIFEST_STORAGE_OPERATION_FAILED);
return;
}
- payments::mojom::PaymentAppManifestPtr manifest =
- payments::mojom::PaymentAppManifest::New();
- manifest->label = manifest_proto.label();
- if (manifest_proto.has_icon())
- manifest->icon = manifest_proto.icon();
- for (const auto& option_proto : manifest_proto.options()) {
- payments::mojom::PaymentAppOptionPtr option =
- payments::mojom::PaymentAppOption::New();
- option->label = option_proto.label();
- if (option_proto.has_icon())
- option->icon = option_proto.icon();
- option->id = option_proto.id();
- for (const auto& method : option_proto.enabled_methods())
- option->enabled_methods.push_back(method);
- manifest->options.push_back(std::move(option));
- }
-
callback.Run(std::move(manifest),
payments::mojom::PaymentAppManifestError::NONE);
}
« no previous file with comments | « content/browser/payments/payment_app_database.h ('k') | content/browser/payments/payment_app_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698