1 // Copyright 2014 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.
5 #include "chrome/browser/ui/auto_login_infobar_delegate.h"
8 #include "base/logging.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/metrics/histogram.h"
11 #include "base/prefs/pref_service.h"
12 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/browser/browser_process.h"
14 #include "chrome/browser/google/google_util.h"
15 #include "chrome/browser/infobars/infobar_service.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
18 #include "chrome/browser/signin/signin_manager_factory.h"
19 #include "chrome/browser/ui/sync/sync_promo_ui.h"
20 #include "chrome/common/chrome_switches.h"
21 #include "chrome/common/pref_names.h"
22 #include "chrome/common/url_constants.h"
23 #include "components/infobars/core/infobar.h"
24 #include "components/signin/core/browser/profile_oauth2_token_service.h"
25 #include "content/public/browser/navigation_controller.h"
26 #include "content/public/browser/page_navigator.h"
27 #include "content/public/browser/web_contents.h"
28 #include "content/public/browser/web_contents_observer.h"
29 #include "content/public/common/referrer.h"
30 #include "google_apis/gaia/gaia_constants.h"
31 #include "google_apis/gaia/gaia_urls.h"
32 #include "google_apis/gaia/ubertoken_fetcher.h"
33 #include "grit/chromium_strings.h"
34 #include "grit/generated_resources.h"
35 #include "grit/theme_resources.h"
36 #include "net/base/escape.h"
37 #include "net/url_request/url_request.h"
38 #include "ui/base/l10n/l10n_util.h"
40 #if defined(OS_ANDROID)
41 #include "chrome/browser/ui/android/infobars/auto_login_infobar_delegate_android.h"
45 // AutoLoginRedirector --------------------------------------------------------
49 // This class is created by the AutoLoginInfoBarDelegate when the user wishes to
50 // auto-login. It holds context information needed while re-issuing service
51 // tokens using the OAuth2TokenService, gets the browser cookies with the
52 // TokenAuth API, and finally redirects the user to the correct page.
53 class AutoLoginRedirector
: public UbertokenConsumer
,
54 public content::WebContentsObserver
{
56 AutoLoginRedirector(content::WebContents
* web_contents
,
57 const std::string
& args
);
58 virtual ~AutoLoginRedirector();
61 // Overriden from UbertokenConsumer:
62 virtual void OnUbertokenSuccess(const std::string
& token
) OVERRIDE
;
63 virtual void OnUbertokenFailure(const GoogleServiceAuthError
& error
) OVERRIDE
;
65 // Implementation of content::WebContentsObserver
66 virtual void WebContentsDestroyed(
67 content::WebContents
* web_contents
) OVERRIDE
;
69 // Redirect tab to MergeSession URL, logging the user in and navigating
70 // to the desired page.
71 void RedirectToMergeSession(const std::string
& token
);
73 const std::string args_
;
74 scoped_ptr
<UbertokenFetcher
> ubertoken_fetcher_
;
76 DISALLOW_COPY_AND_ASSIGN(AutoLoginRedirector
);
79 AutoLoginRedirector::AutoLoginRedirector(
80 content::WebContents
* web_contents
,
81 const std::string
& args
)
82 : content::WebContentsObserver(web_contents
),
85 Profile::FromBrowserContext(web_contents
->GetBrowserContext());
86 ProfileOAuth2TokenService
* token_service
=
87 ProfileOAuth2TokenServiceFactory::GetForProfile(profile
);
88 SigninManagerBase
* signin_manager
=
89 SigninManagerFactory::GetInstance()->GetForProfile(profile
);
90 ubertoken_fetcher_
.reset(new UbertokenFetcher(token_service
,
92 profile
->GetRequestContext()));
93 ubertoken_fetcher_
->StartFetchingToken(
94 signin_manager
->GetAuthenticatedAccountId());
97 AutoLoginRedirector::~AutoLoginRedirector() {
100 void AutoLoginRedirector::WebContentsDestroyed(
101 content::WebContents
* web_contents
) {
102 // The WebContents that started this has been destroyed. The request must be
103 // cancelled and this object must be deleted.
104 ubertoken_fetcher_
.reset();
105 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
108 void AutoLoginRedirector::OnUbertokenSuccess(const std::string
& token
) {
109 RedirectToMergeSession(token
);
110 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
113 void AutoLoginRedirector::OnUbertokenFailure(
114 const GoogleServiceAuthError
& error
) {
115 LOG(WARNING
) << "AutoLoginRedirector: token request failed";
116 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
119 void AutoLoginRedirector::RedirectToMergeSession(const std::string
& token
) {
120 // TODO(rogerta): what is the correct page transition?
121 web_contents()->GetController().LoadURL(
122 GaiaUrls::GetInstance()->merge_session_url().Resolve(
123 "?source=chrome&uberauth=" + token
+ "&" + args_
),
124 content::Referrer(), content::PAGE_TRANSITION_AUTO_BOOKMARK
,
131 // AutoLoginInfoBarDelegate ---------------------------------------------------
134 bool AutoLoginInfoBarDelegate::Create(content::WebContents
* web_contents
,
135 const Params
& params
) {
136 // If |web_contents| is hosted in a WebDialog, there may be no infobar
138 InfoBarService
* infobar_service
=
139 InfoBarService::FromWebContents(web_contents
);
140 if (!infobar_service
)
144 Profile::FromBrowserContext(web_contents
->GetBrowserContext());
145 #if defined(OS_ANDROID)
146 typedef AutoLoginInfoBarDelegateAndroid Delegate
;
148 typedef AutoLoginInfoBarDelegate Delegate
;
150 return !!infobar_service
->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar(
151 scoped_ptr
<ConfirmInfoBarDelegate
>(new Delegate(params
, profile
))));
154 AutoLoginInfoBarDelegate::AutoLoginInfoBarDelegate(const Params
& params
,
156 : ConfirmInfoBarDelegate(),
159 button_pressed_(false) {
160 RecordHistogramAction(SHOWN
);
162 // The AutoLogin infobar is shown in incognito mode on Android, so a
163 // SigninManager isn't guaranteed to exist for |profile_|.
164 SigninManagerBase
* signin_manager
=
165 SigninManagerFactory::GetInstance()->GetForProfile(profile_
);
167 signin_manager
->AddObserver(this);
170 AutoLoginInfoBarDelegate::~AutoLoginInfoBarDelegate() {
171 // The AutoLogin infobar is shown in incognito mode on Android, so a
172 // SigninManager isn't guaranteed to exist for |profile_|.
173 SigninManagerBase
* signin_manager
=
174 SigninManagerFactory::GetInstance()->GetForProfile(profile_
);
176 signin_manager
->RemoveObserver(this);
178 if (!button_pressed_
)
179 RecordHistogramAction(IGNORED
);
182 void AutoLoginInfoBarDelegate::RecordHistogramAction(Actions action
) {
183 UMA_HISTOGRAM_ENUMERATION("AutoLogin.Regular", action
,
184 HISTOGRAM_BOUNDING_VALUE
);
187 void AutoLoginInfoBarDelegate::InfoBarDismissed() {
188 RecordHistogramAction(DISMISSED
);
189 button_pressed_
= true;
192 int AutoLoginInfoBarDelegate::GetIconID() const {
193 return IDR_INFOBAR_AUTOLOGIN
;
196 infobars::InfoBarDelegate::Type
AutoLoginInfoBarDelegate::GetInfoBarType()
198 return PAGE_ACTION_TYPE
;
201 AutoLoginInfoBarDelegate
*
202 AutoLoginInfoBarDelegate::AsAutoLoginInfoBarDelegate() {
206 base::string16
AutoLoginInfoBarDelegate::GetMessageText() const {
207 return l10n_util::GetStringFUTF16(IDS_AUTOLOGIN_INFOBAR_MESSAGE
,
208 base::UTF8ToUTF16(params_
.username
));
211 base::string16
AutoLoginInfoBarDelegate::GetButtonLabel(
212 InfoBarButton button
) const {
213 return l10n_util::GetStringUTF16((button
== BUTTON_OK
) ?
214 IDS_AUTOLOGIN_INFOBAR_OK_BUTTON
: IDS_AUTOLOGIN_INFOBAR_CANCEL_BUTTON
);
217 bool AutoLoginInfoBarDelegate::Accept() {
218 // AutoLoginRedirector deletes itself.
219 content::WebContents
* web_contents
=
220 InfoBarService::WebContentsFromInfoBar(infobar());
221 new AutoLoginRedirector(web_contents
, params_
.header
.args
);
222 RecordHistogramAction(ACCEPTED
);
223 button_pressed_
= true;
227 bool AutoLoginInfoBarDelegate::Cancel() {
228 content::WebContents
* web_contents
=
229 InfoBarService::WebContentsFromInfoBar(infobar());
230 PrefService
* pref_service
= Profile::FromBrowserContext(
231 web_contents
->GetBrowserContext())->GetPrefs();
232 pref_service
->SetBoolean(prefs::kAutologinEnabled
, false);
233 RecordHistogramAction(REJECTED
);
234 button_pressed_
= true;
238 void AutoLoginInfoBarDelegate::GoogleSignedOut(const std::string
& username
) {
239 infobar()->RemoveSelf();