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

Unified Diff: chrome/browser/extensions/api/push_messaging/obfuscated_gaia_id_fetcher.cc

Issue 10836182: Obfuscated Gaia ID fetcher (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: CR fixes per Mihai Created 8 years, 4 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: chrome/browser/extensions/api/push_messaging/obfuscated_gaia_id_fetcher.cc
diff --git a/chrome/browser/extensions/api/push_messaging/obfuscated_gaia_id_fetcher.cc b/chrome/browser/extensions/api/push_messaging/obfuscated_gaia_id_fetcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0d8ffd0dbbbde9cdb7d0fce680ec735b3197874e
--- /dev/null
+++ b/chrome/browser/extensions/api/push_messaging/obfuscated_gaia_id_fetcher.cc
@@ -0,0 +1,131 @@
+// Copyright (c) 2012 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 "chrome/browser/extensions/api/push_messaging/obfuscated_gaia_id_fetcher.h"
+
+#include <vector>
+
+#include "base/json/json_reader.h"
+#include "base/values.h"
+#include "chrome/common/net/gaia/google_service_auth_error.h"
+#include "net/url_request/url_fetcher.h"
+#include "net/url_request/url_request_status.h"
+
+using net::URLFetcher;
+using net::URLRequestContextGetter;
+using net::URLRequestStatus;
+
+namespace {
+
+// URL of the service to get obfuscated Gaia ID (here misnamed channel ID).
+static const char kCWSChannelServiceURL[] =
+ "https://www.googleapis.com/chromewebstore/v1.1/channels/id";
+
+static GoogleServiceAuthError CreateAuthError(URLRequestStatus status) {
+ if (status.status() == URLRequestStatus::CANCELED) {
+ return GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED);
+ } else {
+ // TODO(munjal): Improve error handling. Currently we return connection
+ // error for even application level errors. We need to either expand the
+ // GoogleServiceAuthError enum or create a new one to report better
+ // errors.
+ DLOG(WARNING) << "Server returned error: errno " << status.error();
+ return GoogleServiceAuthError::FromConnectionError(status.error());
+ }
+}
+
+// Returns a vector of scopes needed to call the API to get obfuscated Gaia ID.
+std::vector<std::string> GetScopes() {
+ std::vector<std::string> scopes;
+ scopes.push_back(
+ "https://www.googleapis.com/auth/chromewebstore.notification");
+ return scopes;
+}
+
+} // namespace
+
+namespace extensions {
+
+ObfuscatedGaiaIdFetcher::ObfuscatedGaiaIdFetcher(
+ URLRequestContextGetter* context,
+ Delegate* delegate,
+ const std::string& refresh_token)
+ : OAuth2ApiCallFlow(context, refresh_token, std::string(), GetScopes()),
+ delegate_(delegate) {
+ DCHECK(delegate);
+}
+
+ObfuscatedGaiaIdFetcher::~ObfuscatedGaiaIdFetcher() { }
+
+void ObfuscatedGaiaIdFetcher::ReportSuccess(const std::string& obfuscated_id) {
+ if (delegate_)
+ delegate_->OnObfuscatedGaiaIdFetchSuccess(obfuscated_id);
+}
+
+void ObfuscatedGaiaIdFetcher::ReportFailure(
+ const GoogleServiceAuthError& error) {
+ if (delegate_)
+ delegate_->OnObfuscatedGaiaIdFetchFailure(error);
+}
+
+GURL ObfuscatedGaiaIdFetcher::CreateApiCallUrl() {
+ return GURL(kCWSChannelServiceURL);
+}
+
+std::string ObfuscatedGaiaIdFetcher::CreateApiCallBody() {
+ // Nothing to do here, we don't need a body for this request, the URL
+ // encodes all the proper arguments.
+ return std::string();
+}
+
+void ObfuscatedGaiaIdFetcher::ProcessApiCallSuccess(
+ const net::URLFetcher* source) {
+ // TODO(munjal): Change error code paths in this method to report an
+ // internal error.
+ std::string response_body;
+ CHECK(source->GetResponseAsString(&response_body));
+
+ std::string obfuscated_id;
+ if (ParseResponse(response_body, &obfuscated_id))
+ ReportSuccess(obfuscated_id);
+ else
+ // we picked 101 arbitrarily to help us correlate the error with this code.
+ ReportFailure(GoogleServiceAuthError::FromConnectionError(101));
+}
+
+void ObfuscatedGaiaIdFetcher::ProcessApiCallFailure(
+ const net::URLFetcher* source) {
+ ReportFailure(CreateAuthError(source->GetStatus()));
+}
+
+void ObfuscatedGaiaIdFetcher::ProcessNewAccessToken(
+ const std::string& obfuscated_id) {
+ // We generate a new access token every time instead of storing the access
+ // token since access tokens expire every hour and we expect to get
+ // obfuscated Gaia ID very infrequently.
+}
+
+void ObfuscatedGaiaIdFetcher::ProcessMintAccessTokenFailure(
+ const GoogleServiceAuthError& error) {
+ // We failed to generate the token needed to call the API to get
+ // the obfuscated Gaia ID, so report failure to the caller.
+ ReportFailure(error);
+}
+
+// static
+bool ObfuscatedGaiaIdFetcher::ParseResponse(
+ const std::string& data, std::string* result) {
+ scoped_ptr<base::Value> value(base::JSONReader::Read(data));
+
+ if (!value.get())
+ return false;
+
+ DictionaryValue* dict = NULL;
+ if (!value->GetAsDictionary(&dict))
+ return false;
+
+ return dict->GetString("id", result);
+}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698