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

Side by Side 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: Fixes for nits. 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 unified diff | Download patch
« no previous file with comments | « blimp/client/core/session/BUILD.gn ('k') | blimp/client/core/session/identity_source.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « blimp/client/core/session/BUILD.gn ('k') | blimp/client/core/session/identity_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698