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

Unified Diff: chrome/browser/chromeos/login/google_authenticator.cc

Issue 2729020: Show Captcha dialog. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: remove debug line Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/google_authenticator.cc
diff --git a/chrome/browser/chromeos/login/google_authenticator.cc b/chrome/browser/chromeos/login/google_authenticator.cc
index f6a4705d3269a62b13d60328e4a74e4520945420..2b9fa7c5042a98af28b6c208b6e306a5b61e3f8d 100644
--- a/chrome/browser/chromeos/login/google_authenticator.cc
+++ b/chrome/browser/chromeos/login/google_authenticator.cc
@@ -59,6 +59,16 @@ const char GoogleAuthenticator::kFormat[] =
"source=%s&"
"service=%s";
// static
+const char GoogleAuthenticator::kFormatCaptcha[] =
+ "Email=%s&"
+ "Passwd=%s&"
+ "PersistentCookie=%s&"
+ "accountType=%s&"
+ "source=%s&"
+ "service=%s&"
+ "logintoken=%s&"
+ "logincaptcha=%s";
+// static
const char GoogleAuthenticator::kSecondFactor[] = "Info=InvalidSecondFactor";
// static
@@ -102,21 +112,36 @@ URLFetcher* GoogleAuthenticator::CreateClientLoginFetcher(
return to_return;
}
-bool GoogleAuthenticator::AuthenticateToLogin(Profile* profile,
- const std::string& username,
- const std::string& password) {
+bool GoogleAuthenticator::AuthenticateToLogin(
+ Profile* profile,
+ const std::string& username,
+ const std::string& password,
+ const std::string& login_token,
+ const std::string& login_captcha) {
unlock_ = false;
getter_ = profile->GetRequestContext();
// TODO(cmasone): be more careful about zeroing memory that stores
// the user's password.
- request_body_ = StringPrintf(kFormat,
- UrlEncodeString(username).c_str(),
- UrlEncodeString(password).c_str(),
- kCookiePersistence,
- kAccountType,
- kSource,
- kService);
+ if (login_token.empty() || login_captcha.empty()) {
+ request_body_ = StringPrintf(kFormat,
+ UrlEncodeString(username).c_str(),
+ UrlEncodeString(password).c_str(),
+ kCookiePersistence,
+ kAccountType,
+ kSource,
+ kService);
+ } else {
+ request_body_ = StringPrintf(kFormatCaptcha,
+ UrlEncodeString(username).c_str(),
+ UrlEncodeString(password).c_str(),
+ kCookiePersistence,
+ kAccountType,
+ kSource,
+ kService,
+ UrlEncodeString(login_token).c_str(),
+ UrlEncodeString(login_captcha).c_str());
+ }
// TODO(cmasone): Figure out how to parallelize fetch, username/password
// processing without impacting testability.
username_.assign(Canonicalize(username));
« no previous file with comments | « chrome/browser/chromeos/login/google_authenticator.h ('k') | chrome/browser/chromeos/login/google_authenticator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698