| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_HOST_SETUP_OAUTH_CLIENT | 5 #ifndef REMOTING_HOST_SETUP_OAUTH_CLIENT_H_ |
| 6 #define REMOTING_HOST_SETUP_OAUTH_CLIENT | 6 #define REMOTING_HOST_SETUP_OAUTH_CLIENT_H_ |
| 7 | 7 |
| 8 #include <queue> | |
| 9 #include <string> | 8 #include <string> |
| 10 | 9 |
| 11 #include "base/callback.h" | 10 #include "base/callback.h" |
| 12 #include "base/memory/ref_counted.h" | |
| 13 #include "google_apis/gaia/gaia_oauth_client.h" | |
| 14 #include "net/url_request/url_request_context_getter.h" | |
| 15 | 11 |
| 16 namespace net { | 12 namespace gaia { |
| 17 class URLRequestContext; | 13 struct OAuthClientInfo; |
| 18 } | 14 } |
| 19 | 15 |
| 20 namespace remoting { | 16 namespace remoting { |
| 21 | 17 |
| 22 // A wrapper around GaiaOAuthClient that provides a more convenient interface, | 18 class OAuthClient { |
| 23 // with queueing of requests and a callback rather than a delegate. | |
| 24 class OAuthClient : public gaia::GaiaOAuthClient::Delegate { | |
| 25 public: | 19 public: |
| 26 // Called when GetCredentialsFromAuthCode is completed, with the |user_email| | 20 // Called when GetCredentialsFromAuthCode is completed, with the |user_email| |
| 27 // and |refresh_token| that correspond to the given |auth_code|, or with empty | 21 // and |refresh_token| that correspond to the given |auth_code|, or with empty |
| 28 // strings on error. | 22 // strings on error. |
| 29 typedef base::Callback<void( | 23 typedef base::Callback<void( |
| 30 const std::string& user_email, | 24 const std::string& user_email, |
| 31 const std::string& refresh_token)> CompletionCallback; | 25 const std::string& refresh_token)> CompletionCallback; |
| 32 | 26 |
| 33 OAuthClient( | 27 virtual ~OAuthClient() {} |
| 34 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter); | |
| 35 | |
| 36 ~OAuthClient() override; | |
| 37 | 28 |
| 38 // Redeems |auth_code| using |oauth_client_info| to obtain | 29 // Redeems |auth_code| using |oauth_client_info| to obtain |
| 39 // |refresh_token| and |access_token|, then, if |need_user_email| is | 30 // |refresh_token| and |access_token|, then, if |need_user_email| is |
| 40 // true, uses the userinfo endpoint to obtain |user_email|. Calls | 31 // true, uses the userinfo endpoint to obtain |user_email|. Calls |
| 41 // CompletionCallback with |user_email| and |refresh_token| when | 32 // CompletionCallback with |user_email| and |refresh_token| when |
| 42 // done, or with empty strings on error. If a request is received | 33 // done, or with empty strings on error. If a request is received |
| 43 // while another one is being processed, it is enqueued and | 34 // while another one is being processed, it is enqueued and |
| 44 // processed after the first one is finished. | 35 // processed after the first one is finished. |
| 45 void GetCredentialsFromAuthCode( | 36 virtual void GetCredentialsFromAuthCode( |
| 46 const gaia::OAuthClientInfo& oauth_client_info, | 37 const gaia::OAuthClientInfo& oauth_client_info, |
| 47 const std::string& auth_code, | 38 const std::string& auth_code, |
| 48 bool need_user_email, | 39 bool need_user_email, |
| 49 CompletionCallback on_done); | 40 CompletionCallback on_done) = 0; |
| 50 | |
| 51 // gaia::GaiaOAuthClient::Delegate | |
| 52 void OnGetTokensResponse(const std::string& refresh_token, | |
| 53 const std::string& access_token, | |
| 54 int expires_in_seconds) override; | |
| 55 void OnRefreshTokenResponse(const std::string& access_token, | |
| 56 int expires_in_seconds) override; | |
| 57 void OnGetUserEmailResponse(const std::string& user_email) override; | |
| 58 | |
| 59 void OnOAuthError() override; | |
| 60 void OnNetworkError(int response_code) override; | |
| 61 | |
| 62 private: | |
| 63 struct Request { | |
| 64 Request(const gaia::OAuthClientInfo& oauth_client_info, | |
| 65 const std::string& auth_code, | |
| 66 bool need_user_email, | |
| 67 CompletionCallback on_done); | |
| 68 virtual ~Request(); | |
| 69 gaia::OAuthClientInfo oauth_client_info; | |
| 70 std::string auth_code; | |
| 71 bool need_user_email; | |
| 72 CompletionCallback on_done; | |
| 73 }; | |
| 74 | |
| 75 void SendResponse(const std::string& user_email, | |
| 76 const std::string& refresh_token); | |
| 77 | |
| 78 std::queue<Request> pending_requests_; | |
| 79 gaia::GaiaOAuthClient gaia_oauth_client_; | |
| 80 std::string refresh_token_; | |
| 81 bool need_user_email_; | |
| 82 CompletionCallback on_done_; | |
| 83 | |
| 84 DISALLOW_COPY_AND_ASSIGN(OAuthClient); | |
| 85 }; | 41 }; |
| 86 | 42 |
| 87 } // namespace remoting | 43 } // namespace remoting |
| 88 | 44 |
| 89 #endif // REMOTING_HOST_SETUP_OAUTH_CLIENT | 45 #endif // REMOTING_HOST_SETUP_OAUTH_CLIENT_H_ |
| OLD | NEW |