OLD | NEW |
| (Empty) |
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. | |
4 | |
5 #include "chrome/browser/ui/android/infobars/auto_login_prompter.h" | |
6 | |
7 #include "base/bind.h" | |
8 #include "base/command_line.h" | |
9 #include "base/logging.h" | |
10 #include "base/prefs/pref_service.h" | |
11 #include "chrome/browser/google/google_url_tracker.h" | |
12 #include "chrome/browser/profiles/profile.h" | |
13 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" | |
14 #include "chrome/browser/signin/signin_manager.h" | |
15 #include "chrome/browser/signin/signin_manager_factory.h" | |
16 #include "chrome/browser/tab_contents/tab_util.h" | |
17 #include "chrome/common/chrome_switches.h" | |
18 #include "chrome/common/pref_names.h" | |
19 #include "components/auto_login_parser/auto_login_parser.h" | |
20 #include "components/signin/core/profile_oauth2_token_service.h" | |
21 #include "content/public/browser/browser_thread.h" | |
22 #include "content/public/browser/web_contents.h" | |
23 #include "net/url_request/url_request.h" | |
24 #include "url/gurl.h" | |
25 | |
26 using content::BrowserThread; | |
27 using content::WebContents; | |
28 | |
29 AutoLoginPrompter::AutoLoginPrompter(WebContents* web_contents, | |
30 const Params& params, | |
31 const GURL& url) | |
32 : WebContentsObserver(web_contents), | |
33 params_(params), | |
34 url_(url), | |
35 infobar_shown_(false) { | |
36 if (!web_contents->IsLoading()) { | |
37 // If the WebContents isn't loading a page, the load notification will never | |
38 // be triggered. Try adding the InfoBar now. | |
39 AddInfoBarToWebContents(); | |
40 } | |
41 } | |
42 | |
43 AutoLoginPrompter::~AutoLoginPrompter() { | |
44 } | |
45 | |
46 // static | |
47 void AutoLoginPrompter::ShowInfoBarIfPossible(net::URLRequest* request, | |
48 int child_id, | |
49 int route_id) { | |
50 // See if the response contains the X-Auto-Login header. If so, this was | |
51 // a request for a login page, and the server is allowing the browser to | |
52 // suggest auto-login, if available. | |
53 Params params; | |
54 // Currently we only accept GAIA credentials in Chrome. | |
55 if (!auto_login_parser::ParserHeaderInResponse( | |
56 request, auto_login_parser::ONLY_GOOGLE_COM, ¶ms.header)) | |
57 return; | |
58 | |
59 BrowserThread::PostTask( | |
60 BrowserThread::UI, FROM_HERE, | |
61 base::Bind(&ShowInfoBarUIThread, | |
62 params, request->url(), child_id, route_id)); | |
63 } | |
64 | |
65 | |
66 // static | |
67 void AutoLoginPrompter::ShowInfoBarUIThread(Params params, | |
68 const GURL& url, | |
69 int child_id, | |
70 int route_id) { | |
71 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
72 WebContents* web_contents = tab_util::GetWebContentsByID(child_id, route_id); | |
73 if (!web_contents) | |
74 return; | |
75 | |
76 Profile* profile = | |
77 Profile::FromBrowserContext(web_contents->GetBrowserContext()); | |
78 | |
79 if (!profile->GetPrefs()->GetBoolean(prefs::kAutologinEnabled)) | |
80 return; | |
81 | |
82 // Make sure that |account|, if specified, matches the logged in user. | |
83 // However, |account| is usually empty. | |
84 if (!params.username.empty() && !params.header.account.empty() && | |
85 params.username != params.header.account) | |
86 return; | |
87 // We can't add the infobar just yet, since we need to wait for the tab to | |
88 // finish loading. If we don't, the info bar appears and then disappears | |
89 // immediately. Create an AutoLoginPrompter instance to listen for the | |
90 // relevant notifications; it will delete itself. | |
91 new AutoLoginPrompter(web_contents, params, url); | |
92 } | |
93 | |
94 void AutoLoginPrompter::DidStopLoading( | |
95 content::RenderViewHost* render_view_host) { | |
96 AddInfoBarToWebContents(); | |
97 delete this; | |
98 } | |
99 | |
100 void AutoLoginPrompter::WebContentsDestroyed(WebContents* web_contents) { | |
101 // The WebContents was destroyed before the navigation completed. | |
102 delete this; | |
103 } | |
104 | |
105 void AutoLoginPrompter::AddInfoBarToWebContents() { | |
106 if (!infobar_shown_) | |
107 infobar_shown_ = AutoLoginInfoBarDelegate::Create(web_contents(), params_); | |
108 } | |
OLD | NEW |