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

Unified Diff: blimp/client/core/session/identity_source.h

Issue 2204223005: Blimp OAuth2 token retreival on application start up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add some deps only for gn deps check script. Created 4 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: blimp/client/core/session/identity_source.h
diff --git a/blimp/client/core/session/identity_source.h b/blimp/client/core/session/identity_source.h
new file mode 100644
index 0000000000000000000000000000000000000000..8acd7dd7bffb5b251bed65ff593d30bfb57b1871
--- /dev/null
+++ b/blimp/client/core/session/identity_source.h
@@ -0,0 +1,69 @@
+// Copyright 2016 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 BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_
+#define BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_
+
+#include <memory>
+#include <string>
+
+#include "base/macros.h"
+
+#include "blimp/client/public/blimp_client_context_delegate.h"
+#include "google_apis/gaia/identity_provider.h"
+#include "google_apis/gaia/oauth2_token_service.h"
+
+namespace blimp {
+namespace client {
+
+// IdentitySource handles OAuth2 token request and forward user sign in state
+// change to Blimp with ProfileIdentityProvider.
+class IdentitySource : public OAuth2TokenService::Consumer,
+ public OAuth2TokenService::Observer,
+ public IdentityProvider::Observer {
+ public:
+ explicit IdentitySource(std::unique_ptr<IdentityProvider> identity_provider);
+ ~IdentitySource() override;
+
+ // Start Blimp authentication by requesting OAuth2 token from Google.
+ void Connect();
+
+ // Set the BlimpClientContextDelegate object, used to inform states change
+ // to the embedder.
+ void SetDelegate(BlimpClientContextDelegate* delegate);
+
+ // OAuth2TokenService::Consumer implementation.
+ void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
+ const std::string& access_token,
+ const base::Time& expiration_time) override;
+ void OnGetTokenFailure(const OAuth2TokenService::Request* request,
+ const GoogleServiceAuthError& error) override;
+
+ // OAuth2TokenService::Observer implementation.
+ void OnRefreshTokenAvailable(const std::string& account_id) override;
+
+ private:
+ // Fetch OAuth token.
+ void FetchAuthToken();
+
+ // Provide OAuth2 token service and listen to Google account sign in state.
+ std::unique_ptr<IdentityProvider> identity_provider_;
+
+ // OAuth2 token request. The request is created when we start to fetch the
+ // access token in OAuth2TokenService::StartRequest, and destroyed when
+ // OAuth2TokenService::Consumer callback get called.
+ std::unique_ptr<OAuth2TokenService::Request> token_request_;
+
+ // Account id of current active user, used during token request.
+ std::string account_id_;
+
+ BlimpClientContextDelegate* delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(IdentitySource);
+};
+
+} // namespace client
+} // namespace blimp
+
+#endif // BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_

Powered by Google App Engine
This is Rietveld 408576698