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

Unified Diff: components/ntp_snippets/breaking_news/content_suggestions_gcm_app_handler.cc

Issue 2922543002: [NTP::Push] Add Content Suggestions GCM App Handler (Closed)
Patch Set: sfiera@ comments. Created 3 years, 7 months 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
Index: components/ntp_snippets/breaking_news/content_suggestions_gcm_app_handler.cc
diff --git a/components/ntp_snippets/breaking_news/content_suggestions_gcm_app_handler.cc b/components/ntp_snippets/breaking_news/content_suggestions_gcm_app_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..276a279b93742369471be931549902a3497d0abb
--- /dev/null
+++ b/components/ntp_snippets/breaking_news/content_suggestions_gcm_app_handler.cc
@@ -0,0 +1,126 @@
+// 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.
+
+#include "components/ntp_snippets/breaking_news/content_suggestions_gcm_app_handler.h"
+
+#include "base/strings/string_util.h"
+#include "components/gcm_driver/gcm_driver.h"
+#include "components/gcm_driver/gcm_profile_service.h"
+#include "components/gcm_driver/instance_id/instance_id.h"
+#include "components/gcm_driver/instance_id/instance_id_driver.h"
+#include "content/public/common/push_messaging_status.h"
Peter Beverloo 2017/06/02 14:02:02 This is specific to the Push API, I wouldn't add a
mamir 2017/06/04 15:10:14 Ah, sorry. I guess you can guess how this code cam
+
+using instance_id::InstanceID;
+
+namespace ntp_snippets {
+
+const char* kContentSuggestionsGCMAppID = "com.google.contentsuggestions.gcm";
+// The sender ID is used in the registration process.
+// See: https://developers.google.com/cloud-messaging/gcm#senderid
+const char* kContentSuggestionsGCMSenderId = "128223710667";
Peter Beverloo 2017/06/02 14:02:02 style nit: define string constants as: const ch
mamir 2017/06/04 15:10:13 Done.
+
+// OAuth2 Scope passed to getToken to obtain GCM registration tokens.
+// Must match Java GoogleCloudMessaging.INSTANCE_ID_SCOPE.
+const char kGCMScope[] = "GCM";
+
+ContentSuggestionsGCMAppHandler::ContentSuggestionsGCMAppHandler(
+ gcm::GCMDriver* gcm_driver,
+ instance_id::InstanceIDDriver* instance_id_driver,
+ std::unique_ptr<BreakingNewsSubscriptionManager> subscription_manager)
+ : gcm_driver_(gcm_driver),
+ instance_id_driver_(instance_id_driver),
+ subscription_manager_(std::move(subscription_manager)),
+ weak_factory_(this) {
+ Subscribe();
sfiera 2017/06/02 13:41:24 The subscription isn't necessary until StartListen
Peter Beverloo 2017/06/02 14:02:02 +1. May I also ask you to consider adding the foll
mamir 2017/06/04 15:10:13 The whole content provider instantiation will be g
+}
+ContentSuggestionsGCMAppHandler::~ContentSuggestionsGCMAppHandler() {
+ if (gcm_driver_->GetAppHandler(kContentSuggestionsGCMAppID) == this) {
+ StopListening();
Peter Beverloo 2017/06/02 14:02:02 Something to consider: it's safe to just always ca
mamir 2017/06/04 15:10:13 That because AddAppHandler DCHECKs? So we are sure
Peter Beverloo 2017/06/08 07:02:39 No - calling RemoveAppHandler() with an unregister
mamir 2017/06/08 10:31:38 Done.
+ }
+}
+
+void ContentSuggestionsGCMAppHandler::StartListening() {
+ DCHECK(!gcm_driver_->GetAppHandler(kContentSuggestionsGCMAppID));
+ if (gcm_driver_->GetAppHandler(kContentSuggestionsGCMAppID) == this) {
sfiera 2017/06/02 13:41:24 Redundant. By the DCHECK(), we already know that t
Peter Beverloo 2017/06/02 14:02:02 AddAppHandler() itself will DCHECK, so you can rem
mamir 2017/06/04 15:10:13 I got confused. So we remove the whole if check a
Peter Beverloo 2017/06/08 07:02:39 Yes.
mamir 2017/06/08 10:31:38 Done.
+ // GCM app handler already added.
+ return;
+ }
+ gcm_driver_->AddAppHandler(kContentSuggestionsGCMAppID, this);
+}
+
+void ContentSuggestionsGCMAppHandler::StopListening() {
+ DCHECK_EQ(gcm_driver_->GetAppHandler(kContentSuggestionsGCMAppID), this);
+ gcm_driver_->RemoveAppHandler(kContentSuggestionsGCMAppID);
+}
+
+void ContentSuggestionsGCMAppHandler::Subscribe() {
+ // TODO (mamir): Check the prefs for the cached subscription_id before calling
+ // the GCM service.
+ DVLOG(1) << "Implement subscription token caching.";
+ instance_id_driver_->GetInstanceID(kContentSuggestionsGCMAppID)
+ ->GetToken(kContentSuggestionsGCMSenderId, kGCMScope,
+ std::map<std::string, std::string>() /* options */,
+ base::Bind(&ContentSuggestionsGCMAppHandler::DidSubscribe,
+ weak_factory_.GetWeakPtr()));
+}
+
+void ContentSuggestionsGCMAppHandler::DidSubscribe(
+ const std::string& subscription_id,
+ InstanceID::Result result) {
+ content::PushRegistrationStatus status =
+ content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR;
+
+ switch (result) {
+ case InstanceID::SUCCESS:
+ // TODO (mamir): cache the subscription_id in prefs.
+ DVLOG(1) << "Implement subscription token caching.";
Peter Beverloo 2017/06/02 14:02:02 nit: we usually don't add D(V)LOG()s for TODOs.
mamir 2017/06/04 15:10:13 Done.
+ subscription_manager_->Subscribe(subscription_id);
+ return;
+ case InstanceID::INVALID_PARAMETER:
+ case InstanceID::DISABLED:
+ case InstanceID::ASYNC_OPERATION_PENDING:
+ case InstanceID::SERVER_ERROR:
+ case InstanceID::UNKNOWN_ERROR:
+ DLOG(WARNING)
+ << "Push messaging subscription failed; InstanceID::Result = "
+ << result;
+ status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR;
+ break;
+ case InstanceID::NETWORK_ERROR:
+ status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR;
+ break;
+ }
+ DLOG(WARNING) << "Status = " << status;
+}
+
+void ContentSuggestionsGCMAppHandler::ShutdownHandler() {}
+
+void ContentSuggestionsGCMAppHandler::OnStoreReset() {}
Peter Beverloo 2017/06/02 14:02:02 You need to clear your token caching in preference
mamir 2017/06/04 15:10:13 Added a TODO for now.
+
+void ContentSuggestionsGCMAppHandler::OnMessage(
+ const std::string& app_id,
+ const gcm::IncomingMessage& message) {
+ // TODO (mamir): Implement Show notification and update the feed.
sfiera 2017/06/02 13:41:24 Nit: I think TODO() should have no space (like a f
mamir 2017/06/04 15:10:13 Done.
+}
+
+void ContentSuggestionsGCMAppHandler::OnMessagesDeleted(
+ const std::string& app_id) {
+ // Messages don't get deleted.
Peter Beverloo 2017/06/02 14:02:02 fwiw, better to be strict and NOTREACHED() in that
mamir 2017/06/04 15:10:13 Done.
+}
+
+void ContentSuggestionsGCMAppHandler::OnSendError(
+ const std::string& app_id,
+ const gcm::GCMClient::SendErrorDetails& details) {
+ // Should never be called because we don't send GCM messages to
+ // the server.
+}
+
+void ContentSuggestionsGCMAppHandler::OnSendAcknowledged(
+ const std::string& app_id,
+ const std::string& message_id) {
+ // Should never be called because we don't send GCM messages to
+ // the server.
+}
+
+} // namespace ntp_snippets

Powered by Google App Engine
This is Rietveld 408576698