summaryrefslogtreecommitdiffstats
path: root/content/shell/shell_login_dialog.cc
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-05 15:01:36 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-05 15:01:36 +0000
commite3503ac87055ea7d404d0576fdb972447f3db48c (patch)
tree75071d151575dafc2f174aa756fb47bb33adc815 /content/shell/shell_login_dialog.cc
parent4fc2940db542dee44f8474d2eab8fdd0e814c110 (diff)
downloadchromium_src-e3503ac87055ea7d404d0576fdb972447f3db48c.zip
chromium_src-e3503ac87055ea7d404d0576fdb972447f3db48c.tar.gz
chromium_src-e3503ac87055ea7d404d0576fdb972447f3db48c.tar.bz2
Mac content shell: HTTP auth.
BUG=120526 TEST=HTTP auth works Review URL: https://chromiumcodereview.appspot.com/9980002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130918 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/shell_login_dialog.cc')
-rw-r--r--content/shell/shell_login_dialog.cc107
1 files changed, 107 insertions, 0 deletions
diff --git a/content/shell/shell_login_dialog.cc b/content/shell/shell_login_dialog.cc
new file mode 100644
index 0000000..def2ba3
--- /dev/null
+++ b/content/shell/shell_login_dialog.cc
@@ -0,0 +1,107 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/shell/shell_login_dialog.h"
+
+#include "base/bind.h"
+#include "base/logging.h"
+#include "base/utf_string_conversions.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/browser/resource_dispatcher_host.h"
+#include "net/base/auth.h"
+#include "net/url_request/url_request.h"
+#include "ui/base/text/text_elider.h"
+
+namespace content {
+
+ShellLoginDialog::ShellLoginDialog(
+ net::AuthChallengeInfo* auth_info,
+ net::URLRequest* request) : auth_info_(auth_info),
+ request_(request) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::Bind(&ShellLoginDialog::PrepDialog, this,
+ ASCIIToUTF16(auth_info->challenger.ToString()),
+ UTF8ToUTF16(auth_info->realm)));
+}
+
+ShellLoginDialog::~ShellLoginDialog() {
+ // Cannot post any tasks here; this object is going away and cannot be
+ // referenced/dereferenced.
+}
+
+void ShellLoginDialog::OnRequestCancelled() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::Bind(&ShellLoginDialog::PlatformRequestCancelled, this));
+}
+
+void ShellLoginDialog::PrepDialog(const string16& host,
+ const string16& realm) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ // The realm is controlled by the remote server, so there is no reason to
+ // believe it is of a reasonable length.
+ string16 elided_realm;
+ ui::ElideString(realm, 120, &elided_realm);
+
+ string16 explanation =
+ ASCIIToUTF16("The server ") + host +
+ ASCIIToUTF16(" requires a username and password.");
+
+ if (!elided_realm.empty()) {
+ explanation += ASCIIToUTF16(" The server says: ");
+ explanation += elided_realm;
+ explanation += ASCIIToUTF16(".");
+ }
+
+ PlatformCreateDialog(explanation);
+}
+
+void ShellLoginDialog::UserAcceptedAuth(const string16& username,
+ const string16& password) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&ShellLoginDialog::SendAuthToRequester, this,
+ true, username, password));
+}
+
+void ShellLoginDialog::UserCancelledAuth() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&ShellLoginDialog::SendAuthToRequester, this,
+ false, string16(), string16()));
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::Bind(&ShellLoginDialog::PlatformCleanUp, this));
+}
+
+void ShellLoginDialog::SendAuthToRequester(bool success,
+ const string16& username,
+ const string16& password) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
+ if (success)
+ request_->SetAuth(net::AuthCredentials(username, password));
+ else
+ request_->CancelAuth();
+ ResourceDispatcherHost::Get()->ClearLoginDelegateForRequest(request_);
+
+ BrowserThread::PostTask(
+ BrowserThread::UI, FROM_HERE,
+ base::Bind(&ShellLoginDialog::PlatformCleanUp, this));
+}
+
+#if !defined(OS_MACOSX)
+// Bogus implementations for linking. They are never called because
+// ResourceDispatcherHostDelegate::CreateLoginDelegate returns NULL.
+// TODO: implement ShellLoginDialog for other platforms, drop this #if
+void ShellLoginDialog::PlatformCreateDialog(const string16& message) {}
+void ShellLoginDialog::PlatformCleanUp() {}
+void ShellLoginDialog::PlatformRequestCancelled() {}
+#endif
+
+} // namespace content