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 ~IdentitySource() override; | |
31 | |
32 // Start Blimp authentication by requesting OAuth2 token from Google. | |
33 void Connect(); | |
nyquist
2016/08/18 17:43:52
Nit: Could you add a comment similar to |is_fetchi
xingliu
2016/08/18 18:29:22
Done.
| |
34 | |
35 // Set token callback. | |
36 void SetTokenCallback(const TokenCallback& callback); | |
nyquist
2016/08/18 17:46:46
Could you move this to become a constructor argume
xingliu
2016/08/18 18:29:22
Done.
| |
37 | |
38 // OAuth2TokenService::Consumer implementation. | |
39 void OnGetTokenSuccess(const OAuth2TokenService::Request* request, | |
40 const std::string& access_token, | |
41 const base::Time& expiration_time) override; | |
42 void OnGetTokenFailure(const OAuth2TokenService::Request* request, | |
43 const GoogleServiceAuthError& error) override; | |
44 | |
45 // OAuth2TokenService::Observer implementation. | |
46 void OnRefreshTokenAvailable(const std::string& account_id) override; | |
47 | |
48 protected: | |
49 // Provide OAuth2 token service and listen to Google account sign in state, | |
50 // protected for testing. | |
51 std::unique_ptr<IdentityProvider> identity_provider_; | |
52 | |
53 private: | |
54 // Fetch OAuth token. | |
55 void FetchAuthToken(); | |
56 | |
57 // OAuth2 token request. The request is created when we start to fetch the | |
58 // access token in OAuth2TokenService::StartRequest, and destroyed when | |
59 // OAuth2TokenService::Consumer callback get called. | |
60 std::unique_ptr<OAuth2TokenService::Request> token_request_; | |
61 | |
62 // Callback after OAuth2 token is fetched. | |
63 TokenCallback token_callback_; | |
64 | |
65 // If we are fetching OAuth2 token. Connect call during token fetching will | |
66 // be ignored. | |
67 bool is_fetching_token_; | |
68 | |
69 // Account id of current active user, used during token request. | |
70 std::string account_id_; | |
71 | |
72 BlimpClientContextDelegate* delegate_; | |
73 | |
74 DISALLOW_COPY_AND_ASSIGN(IdentitySource); | |
75 }; | |
76 | |
77 } // namespace client | |
78 } // namespace blimp | |
79 | |
80 #endif // BLIMP_CLIENT_CORE_SESSION_IDENTITY_SOURCE_H_ | |
OLD | NEW |