OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_ |
| 6 #define BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_ |
| 7 |
| 8 #include <memory> |
| 9 #include <string> |
| 10 |
| 11 #include "base/callback.h" |
| 12 #include "base/macros.h" |
| 13 |
| 14 #include "blimp/client/public/blimp_client_context_delegate.h" |
| 15 #include "google_apis/gaia/identity_provider.h" |
| 16 #include "google_apis/gaia/oauth2_token_service.h" |
| 17 |
| 18 namespace blimp { |
| 19 namespace client { |
| 20 |
| 21 // IdentitySource handles OAuth2 token request and forward user sign in state |
| 22 // change to Blimp with ProfileIdentityProvider. |
| 23 class IdentitySource : public OAuth2TokenService::Consumer, |
| 24 public OAuth2TokenService::Observer, |
| 25 public IdentityProvider::Observer { |
| 26 public: |
| 27 typedef base::Callback<void(const std::string&)> TokenCallback; |
| 28 |
| 29 explicit IdentitySource(BlimpClientContextDelegate* delegate, |
| 30 const TokenCallback& callback); |
| 31 ~IdentitySource() override; |
| 32 |
| 33 // Start Blimp authentication by requesting OAuth2 token from Google. |
| 34 // Duplicate connect calls during token fetching will be ignored. |
| 35 void Connect(); |
| 36 |
| 37 // OAuth2TokenService::Consumer implementation. |
| 38 void OnGetTokenSuccess(const OAuth2TokenService::Request* request, |
| 39 const std::string& access_token, |
| 40 const base::Time& expiration_time) override; |
| 41 void OnGetTokenFailure(const OAuth2TokenService::Request* request, |
| 42 const GoogleServiceAuthError& error) override; |
| 43 |
| 44 // OAuth2TokenService::Observer implementation. |
| 45 void OnRefreshTokenAvailable(const std::string& account_id) override; |
| 46 |
| 47 protected: |
| 48 // Provide OAuth2 token service and listen to Google account sign in state, |
| 49 // protected for testing. |
| 50 std::unique_ptr<IdentityProvider> identity_provider_; |
| 51 |
| 52 private: |
| 53 // Fetch OAuth token. |
| 54 void FetchAuthToken(); |
| 55 |
| 56 // OAuth2 token request. The request is created when we start to fetch the |
| 57 // access token in OAuth2TokenService::StartRequest, and destroyed when |
| 58 // OAuth2TokenService::Consumer callback get called. |
| 59 std::unique_ptr<OAuth2TokenService::Request> token_request_; |
| 60 |
| 61 // Callback after OAuth2 token is fetched. |
| 62 TokenCallback token_callback_; |
| 63 |
| 64 // If we are fetching OAuth2 token. Connect call during token fetching will |
| 65 // be ignored. |
| 66 bool is_fetching_token_; |
| 67 |
| 68 // Account id of current active user, used during token request. |
| 69 std::string account_id_; |
| 70 |
| 71 BlimpClientContextDelegate* delegate_; |
| 72 |
| 73 DISALLOW_COPY_AND_ASSIGN(IdentitySource); |
| 74 }; |
| 75 |
| 76 } // namespace client |
| 77 } // namespace blimp |
| 78 |
| 79 #endif // BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_ |
OLD | NEW |