Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / signin / signin_promo.cc
blobe2ac8ab5162ad04cbfd2c50bb5e588945bf21309
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
3 // found in the LICENSE file.
5 #include "chrome/browser/signin/signin_promo.h"
7 #include "base/prefs/pref_service.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/string_util.h"
10 #include "base/strings/stringprintf.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "chrome/browser/browser_process.h"
13 #include "chrome/browser/first_run/first_run.h"
14 #include "chrome/browser/google/google_util.h"
15 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/profiles/profile_info_cache.h"
17 #include "chrome/browser/profiles/profile_manager.h"
18 #include "chrome/browser/signin/signin_manager.h"
19 #include "chrome/browser/signin/signin_manager_factory.h"
20 #include "chrome/browser/sync/profile_sync_service.h"
21 #include "chrome/browser/sync/profile_sync_service_factory.h"
22 #include "chrome/browser/ui/webui/options/core_options_handler.h"
23 #include "chrome/browser/ui/webui/theme_source.h"
24 #include "chrome/common/net/url_util.h"
25 #include "chrome/common/pref_names.h"
26 #include "chrome/common/profile_management_switches.h"
27 #include "chrome/common/url_constants.h"
28 #include "components/user_prefs/pref_registry_syncable.h"
29 #include "content/public/browser/url_data_source.h"
30 #include "content/public/browser/web_contents.h"
31 #include "content/public/browser/web_ui.h"
32 #include "content/public/browser/web_ui_data_source.h"
33 #include "google_apis/gaia/gaia_urls.h"
34 #include "grit/browser_resources.h"
35 #include "grit/generated_resources.h"
36 #include "grit/theme_resources.h"
37 #include "net/base/escape.h"
38 #include "net/base/network_change_notifier.h"
39 #include "net/base/url_util.h"
40 #include "ui/base/l10n/l10n_util.h"
42 using content::WebContents;
44 namespace {
46 const char kSignInPromoQueryKeyAutoClose[] = "auto_close";
47 const char kSignInPromoQueryKeyContinue[] = "continue";
48 const char kSignInPromoQueryKeySource[] = "source";
49 const char kSignInPromoQueryKeyConstrained[] = "constrained";
51 // Gaia cannot support about:blank as a continue URL, so using a hosted blank
52 // page instead.
53 const char kSignInLandingUrlPrefix[] =
54 "https://www.google.com/intl/%s/chrome/blank.html";
56 // The maximum number of times we want to show the sign in promo at startup.
57 const int kSignInPromoShowAtStartupMaximum = 10;
59 // Forces the web based signin flow when set.
60 bool g_force_web_based_signin_flow = false;
62 // Checks we want to show the sign in promo for the given brand.
63 bool AllowPromoAtStartupForCurrentBrand() {
64 std::string brand;
65 google_util::GetBrand(&brand);
67 if (brand.empty())
68 return true;
70 if (google_util::IsInternetCafeBrandCode(brand))
71 return false;
73 // Enable for both organic and distribution.
74 return true;
77 // Returns true if a user has seen the sign in promo at startup previously.
78 bool HasShownPromoAtStartup(Profile* profile) {
79 return profile->GetPrefs()->HasPrefPath(prefs::kSignInPromoStartupCount);
82 // Returns true if the user has previously skipped the sign in promo.
83 bool HasUserSkippedPromo(Profile* profile) {
84 return profile->GetPrefs()->GetBoolean(prefs::kSignInPromoUserSkipped);
87 } // namespace
89 namespace signin {
91 bool ShouldShowPromo(Profile* profile) {
92 #if defined(OS_CHROMEOS)
93 // There's no need to show the sign in promo on cros since cros users are
94 // already logged in.
95 return false;
96 #else
98 // Don't bother if we don't have any kind of network connection.
99 if (net::NetworkChangeNotifier::IsOffline())
100 return false;
102 // Don't show for managed profiles.
103 if (profile->IsManaged())
104 return false;
106 // Display the signin promo if the user is not signed in.
107 SigninManager* signin = SigninManagerFactory::GetForProfile(
108 profile->GetOriginalProfile());
109 return !signin->AuthInProgress() && signin->IsSigninAllowed() &&
110 signin->GetAuthenticatedUsername().empty();
111 #endif
114 bool ShouldShowPromoAtStartup(Profile* profile, bool is_new_profile) {
115 DCHECK(profile);
117 // Don't show if the profile is an incognito.
118 if (profile->IsOffTheRecord())
119 return false;
121 if (!ShouldShowPromo(profile))
122 return false;
124 if (!is_new_profile) {
125 if (!HasShownPromoAtStartup(profile))
126 return false;
129 if (HasUserSkippedPromo(profile))
130 return false;
132 // For Chinese users skip the sign in promo.
133 if (g_browser_process->GetApplicationLocale() == "zh-CN")
134 return false;
136 PrefService* prefs = profile->GetPrefs();
137 int show_count = prefs->GetInteger(prefs::kSignInPromoStartupCount);
138 if (show_count >= kSignInPromoShowAtStartupMaximum)
139 return false;
141 // This pref can be set in the master preferences file to allow or disallow
142 // showing the sign in promo at startup.
143 if (prefs->HasPrefPath(prefs::kSignInPromoShowOnFirstRunAllowed))
144 return prefs->GetBoolean(prefs::kSignInPromoShowOnFirstRunAllowed);
146 // For now don't show the promo for some brands.
147 if (!AllowPromoAtStartupForCurrentBrand())
148 return false;
150 // Default to show the promo for Google Chrome builds.
151 #if defined(GOOGLE_CHROME_BUILD)
152 return true;
153 #else
154 return false;
155 #endif
158 void DidShowPromoAtStartup(Profile* profile) {
159 int show_count = profile->GetPrefs()->GetInteger(
160 prefs::kSignInPromoStartupCount);
161 show_count++;
162 profile->GetPrefs()->SetInteger(prefs::kSignInPromoStartupCount, show_count);
165 void SetUserSkippedPromo(Profile* profile) {
166 profile->GetPrefs()->SetBoolean(prefs::kSignInPromoUserSkipped, true);
169 GURL GetLandingURL(const char* option, int value) {
170 const std::string& locale = g_browser_process->GetApplicationLocale();
171 std::string url = base::StringPrintf(kSignInLandingUrlPrefix, locale.c_str());
172 base::StringAppendF(&url, "?%s=%d", option, value);
173 return GURL(url);
176 GURL GetPromoURL(Source source, bool auto_close) {
177 return GetPromoURL(source, auto_close, false /* is_constrained */);
180 GURL GetPromoURL(Source source, bool auto_close, bool is_constrained) {
181 DCHECK_NE(SOURCE_UNKNOWN, source);
183 if (!switches::IsEnableWebBasedSignin()) {
184 std::string url(chrome::kChromeUIChromeSigninURL);
185 base::StringAppendF(&url, "?%s=%d", kSignInPromoQueryKeySource, source);
186 if (auto_close)
187 base::StringAppendF(&url, "&%s=1", kSignInPromoQueryKeyAutoClose);
188 if (is_constrained)
189 base::StringAppendF(&url, "&%s=1", kSignInPromoQueryKeyConstrained);
190 return GURL(url);
193 // Build a Gaia-based URL that can be used to sign the user into chrome.
194 // There are required request parameters:
196 // - tell Gaia which service the user is signing into. In this case,
197 // a chrome sign in uses the service "chromiumsync"
198 // - provide a continue URL. This is the URL that Gaia will redirect to
199 // once the sign is complete.
201 // The continue URL includes a source parameter that can be extracted using
202 // the function GetSourceForSignInPromoURL() below. This is used to know
203 // which of the chrome sign in access points was used to sign the user in.
204 // It is also parsed for the |auto_close| flag, which indicates that the tab
205 // must be closed after sync setup is successful.
206 // See OneClickSigninHelper for details.
207 std::string query_string = "?service=chromiumsync&sarp=1";
209 std::string continue_url = GetLandingURL(kSignInPromoQueryKeySource,
210 static_cast<int>(source)).spec();
211 if (auto_close)
212 base::StringAppendF(&continue_url, "&%s=1", kSignInPromoQueryKeyAutoClose);
214 base::StringAppendF(&query_string, "&%s=%s", kSignInPromoQueryKeyContinue,
215 net::EscapeQueryParamValue(
216 continue_url, false).c_str());
218 return GaiaUrls::GetInstance()->service_login_url().Resolve(query_string);
221 GURL GetNextPageURLForPromoURL(const GURL& url) {
222 std::string value;
223 if (net::GetValueForKeyInQuery(url, kSignInPromoQueryKeyContinue, &value))
224 return GURL(value);
226 return GURL();
229 Source GetSourceForPromoURL(const GURL& url) {
230 std::string value;
231 if (net::GetValueForKeyInQuery(url, kSignInPromoQueryKeySource, &value)) {
232 int source = 0;
233 if (base::StringToInt(value, &source) && source >= SOURCE_START_PAGE &&
234 source < SOURCE_UNKNOWN) {
235 return static_cast<Source>(source);
238 return SOURCE_UNKNOWN;
241 bool IsAutoCloseEnabledInURL(const GURL& url) {
242 std::string value;
243 if (net::GetValueForKeyInQuery(url, kSignInPromoQueryKeyAutoClose, &value)) {
244 int enabled = 0;
245 if (base::StringToInt(value, &enabled) && enabled == 1)
246 return true;
248 return false;
251 bool IsContinueUrlForWebBasedSigninFlow(const GURL& url) {
252 GURL::Replacements replacements;
253 replacements.ClearQuery();
254 const std::string& locale = g_browser_process->GetApplicationLocale();
255 return url.ReplaceComponents(replacements) ==
256 GURL(base::StringPrintf(kSignInLandingUrlPrefix, locale.c_str()));
259 void ForceWebBasedSigninFlowForTesting(bool force) {
260 g_force_web_based_signin_flow = force;
263 void RegisterProfilePrefs(
264 user_prefs::PrefRegistrySyncable* registry) {
265 registry->RegisterIntegerPref(
266 prefs::kSignInPromoStartupCount,
268 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
269 registry->RegisterBooleanPref(
270 prefs::kSignInPromoUserSkipped,
271 false,
272 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
273 registry->RegisterBooleanPref(
274 prefs::kSignInPromoShowOnFirstRunAllowed,
275 true,
276 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
277 registry->RegisterBooleanPref(
278 prefs::kSignInPromoShowNTPBubble,
279 false,
280 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
283 } // namespace signin