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

Side by Side Diff: chrome/browser/profiles/profile_downloader.h

Issue 257773002: Use new people.get api instead of oauth2/v1/userinfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix PD tests Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_PROFILES_PROFILE_DOWNLOADER_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_DOWNLOADER_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_DOWNLOADER_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_DOWNLOADER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
14 #include "chrome/browser/image_decoder.h" 14 #include "chrome/browser/image_decoder.h"
15 #include "google_apis/gaia/gaia_oauth_client.h"
15 #include "google_apis/gaia/oauth2_token_service.h" 16 #include "google_apis/gaia/oauth2_token_service.h"
16 #include "net/url_request/url_fetcher_delegate.h" 17 #include "net/url_request/url_fetcher_delegate.h"
17 #include "third_party/skia/include/core/SkBitmap.h" 18 #include "third_party/skia/include/core/SkBitmap.h"
18 #include "url/gurl.h" 19 #include "url/gurl.h"
19 20
20 class ProfileDownloaderDelegate; 21 class ProfileDownloaderDelegate;
21 class OAuth2AccessTokenFetcher; 22 class OAuth2AccessTokenFetcher;
22 23
23 namespace net { 24 namespace net {
24 class URLFetcher; 25 class URLFetcher;
25 } // namespace net 26 } // namespace net
26 27
27 // Downloads user profile information. The profile picture is decoded in a 28 // Downloads user profile information. The profile picture is decoded in a
28 // sandboxed process. 29 // sandboxed process.
29 class ProfileDownloader : public net::URLFetcherDelegate, 30 class ProfileDownloader : public gaia::GaiaOAuthClient::Delegate,
31 public net::URLFetcherDelegate,
30 public ImageDecoder::Delegate, 32 public ImageDecoder::Delegate,
31 public OAuth2TokenService::Observer, 33 public OAuth2TokenService::Observer,
32 public OAuth2TokenService::Consumer { 34 public OAuth2TokenService::Consumer {
33 public: 35 public:
34 enum PictureStatus { 36 enum PictureStatus {
35 PICTURE_SUCCESS, 37 PICTURE_SUCCESS,
36 PICTURE_FAILED, 38 PICTURE_FAILED,
37 PICTURE_DEFAULT, 39 PICTURE_DEFAULT,
38 PICTURE_CACHED, 40 PICTURE_CACHED,
39 }; 41 };
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Gets the URL for the profile picture. This can be cached so that the same 75 // Gets the URL for the profile picture. This can be cached so that the same
74 // picture is not downloaded multiple times. This value should only be used 76 // picture is not downloaded multiple times. This value should only be used
75 // when the picture status is PICTURE_SUCCESS. 77 // when the picture status is PICTURE_SUCCESS.
76 virtual std::string GetProfilePictureURL() const; 78 virtual std::string GetProfilePictureURL() const;
77 79
78 private: 80 private:
79 friend class ProfileDownloaderTest; 81 friend class ProfileDownloaderTest;
80 FRIEND_TEST_ALL_PREFIXES(ProfileDownloaderTest, ParseData); 82 FRIEND_TEST_ALL_PREFIXES(ProfileDownloaderTest, ParseData);
81 FRIEND_TEST_ALL_PREFIXES(ProfileDownloaderTest, DefaultURL); 83 FRIEND_TEST_ALL_PREFIXES(ProfileDownloaderTest, DefaultURL);
82 84
85 // gaia::GaiaOAuthClient::Delegate implementation.
86 virtual void OnGetUserInfoResponse(
87 scoped_ptr<base::DictionaryValue> user_info) OVERRIDE;
88 virtual void OnOAuthError() OVERRIDE;
89 virtual void OnNetworkError(int response_code) OVERRIDE;
90
83 // Overriden from net::URLFetcherDelegate: 91 // Overriden from net::URLFetcherDelegate:
84 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; 92 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
85 93
86 // Overriden from ImageDecoder::Delegate: 94 // Overriden from ImageDecoder::Delegate:
87 virtual void OnImageDecoded(const ImageDecoder* decoder, 95 virtual void OnImageDecoded(const ImageDecoder* decoder,
88 const SkBitmap& decoded_image) OVERRIDE; 96 const SkBitmap& decoded_image) OVERRIDE;
89 virtual void OnDecodeImageFailed(const ImageDecoder* decoder) OVERRIDE; 97 virtual void OnDecodeImageFailed(const ImageDecoder* decoder) OVERRIDE;
90 98
91 // Overriden from OAuth2TokenService::Observer: 99 // Overriden from OAuth2TokenService::Observer:
92 virtual void OnRefreshTokenAvailable(const std::string& account_id) OVERRIDE; 100 virtual void OnRefreshTokenAvailable(const std::string& account_id) OVERRIDE;
93 101
94 // Overriden from OAuth2TokenService::Consumer: 102 // Overriden from OAuth2TokenService::Consumer:
95 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request, 103 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
96 const std::string& access_token, 104 const std::string& access_token,
97 const base::Time& expiration_time) OVERRIDE; 105 const base::Time& expiration_time) OVERRIDE;
98 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request, 106 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
99 const GoogleServiceAuthError& error) OVERRIDE; 107 const GoogleServiceAuthError& error) OVERRIDE;
100 108
101 // Parses the entry response and gets the name, profile image URL and locale. 109 // Parses the entry response and gets the name, profile image URL and locale.
102 // |data| should be the JSON formatted data return by the response. 110 // |data| should be the JSON formatted data return by the response.
103 // Returns false to indicate a parsing error. 111 // Returns false to indicate a parsing error.
104 static bool ParseProfileJSON(const std::string& data, 112 static bool ParseProfileJSON(base::DictionaryValue* root_dictionary,
105 base::string16* full_name, 113 base::string16* full_name,
106 base::string16* given_name, 114 base::string16* given_name,
107 std::string* url, 115 std::string* url,
108 int image_size, 116 int image_size,
109 std::string* profile_locale); 117 std::string* profile_locale);
110 // Returns true if the image url is url of the default profile picture. 118 // Returns true if the image url is url of the default profile picture.
111 static bool IsDefaultProfileImageURL(const std::string& url); 119 static bool IsDefaultProfileImageURL(const std::string& url);
112 120
113 // Issues the first request to get user profile image. 121 // Issues the first request to get user profile image.
114 void StartFetchingImage(); 122 void StartFetchingImage();
115 123
116 // Gets the authorization header. 124 // Gets the authorization header.
117 const char* GetAuthorizationHeader() const; 125 const char* GetAuthorizationHeader() const;
118 126
119 // Starts fetching OAuth2 access token. This is needed before the GAIA info 127 // Starts fetching OAuth2 access token. This is needed before the GAIA info
120 // can be downloaded. 128 // can be downloaded.
121 void StartFetchingOAuth2AccessToken(); 129 void StartFetchingOAuth2AccessToken();
122 130
123 ProfileDownloaderDelegate* delegate_; 131 ProfileDownloaderDelegate* delegate_;
124 std::string account_id_; 132 std::string account_id_;
125 std::string auth_token_; 133 std::string auth_token_;
126 scoped_ptr<net::URLFetcher> user_entry_fetcher_; 134 scoped_ptr<gaia::GaiaOAuthClient> gaia_client_;
127 scoped_ptr<net::URLFetcher> profile_image_fetcher_; 135 scoped_ptr<net::URLFetcher> profile_image_fetcher_;
128 scoped_ptr<OAuth2TokenService::Request> oauth2_access_token_request_; 136 scoped_ptr<OAuth2TokenService::Request> oauth2_access_token_request_;
129 base::string16 profile_full_name_; 137 base::string16 profile_full_name_;
130 base::string16 profile_given_name_; 138 base::string16 profile_given_name_;
131 std::string profile_locale_; 139 std::string profile_locale_;
132 SkBitmap profile_picture_; 140 SkBitmap profile_picture_;
133 PictureStatus picture_status_; 141 PictureStatus picture_status_;
134 std::string picture_url_; 142 std::string picture_url_;
135 143
136 DISALLOW_COPY_AND_ASSIGN(ProfileDownloader); 144 DISALLOW_COPY_AND_ASSIGN(ProfileDownloader);
137 }; 145 };
138 146
139 #endif // CHROME_BROWSER_PROFILES_PROFILE_DOWNLOADER_H_ 147 #endif // CHROME_BROWSER_PROFILES_PROFILE_DOWNLOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698