Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAuthenticator.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAuthenticator.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAuthenticator.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAuthenticator.java
new file mode 100644
index 000000000..27edb8266
--- /dev/null
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAuthenticator.java
@@ -0,0 +1,58 @@
+/*******************************************************************************
+ * Copyright (c) 2004 - 2006 University Of British Columbia and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * University Of British Columbia - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylar.internal.bugzilla.core;
+
+import java.net.Authenticator;
+import java.net.InetAddress;
+import java.net.PasswordAuthentication;
+
+import org.eclipse.update.internal.ui.security.Authentication;
+import org.eclipse.update.internal.ui.security.UserValidationDialog;
+
+/**
+ * Update Manager Authenticator Sadly there can only be one registered per VM
+ */
+public class BugzillaAuthenticator extends Authenticator {
+ // private Authentication savedPasswordAuthentication;
+
+ /*
+ * @see Authenticator#getPasswordAuthentication()
+ */
+ protected PasswordAuthentication getPasswordAuthentication() {
+ // String protocol = getRequestingProtocol();
+ String host = getRequestingHost(); // can be null;
+ InetAddress address = getRequestingSite(); // can be null;
+ // int port = getRequestingPort();
+ String prompt = getRequestingPrompt(); // realm or message, not
+ // documented that can be null
+ // String scheme = getRequestingScheme(); // not documented that can be
+ // null
+
+ String hostString = host;
+ if (hostString == null && address != null) {
+ address.getHostName();
+ }
+ if (hostString == null) {
+ hostString = ""; //$NON-NLS-1$
+ }
+ String promptString = prompt;
+ if (prompt == null) {
+ promptString = ""; //$NON-NLS-1$
+ }
+
+ Authentication auth = UserValidationDialog.getAuthentication(hostString, promptString);
+ if (auth != null)
+ return new PasswordAuthentication(auth.getUser(), auth.getPassword().toCharArray());
+ else
+ return null;
+ }
+}

Back to the top