Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/internal/commons/repositories/core/LocationService.java')
-rw-r--r--org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/internal/commons/repositories/core/LocationService.java98
1 files changed, 98 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/internal/commons/repositories/core/LocationService.java b/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/internal/commons/repositories/core/LocationService.java
new file mode 100644
index 00000000..bb4c4d00
--- /dev/null
+++ b/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/internal/commons/repositories/core/LocationService.java
@@ -0,0 +1,98 @@
+/*******************************************************************************
+ * Copyright (c) 2010 Tasktop Technologies 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:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.internal.commons.repositories.core;
+
+import java.net.Proxy;
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.net.ssl.X509TrustManager;
+
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.mylyn.commons.net.IProxyProvider;
+import org.eclipse.mylyn.commons.net.WebUtil;
+import org.eclipse.mylyn.commons.repositories.core.ILocationService;
+import org.eclipse.mylyn.commons.repositories.core.auth.AuthenticationCredentials;
+import org.eclipse.mylyn.commons.repositories.core.auth.AuthenticationType;
+import org.eclipse.mylyn.commons.repositories.core.auth.ICredentialsStore;
+import org.eclipse.mylyn.commons.repositories.core.auth.UsernamePasswordCredentials;
+
+/**
+ * @author Steffen Pingel
+ */
+public class LocationService implements ILocationService {
+
+ private static LocationService instance = new LocationService(null, null, new PlatformProxyProvider());
+
+ public static LocationService getDefault() {
+ return instance;
+ }
+
+ private static class PlatformProxyProvider implements IProxyProvider {
+
+ public Proxy getProxyForHost(String host, String proxyType) {
+ return WebUtil.getProxy(host, proxyType);
+ }
+
+ }
+
+ private final Map<AuthenticationType, UsernamePasswordCredentials> credentialsByType;
+
+ private final IProxyProvider proxyProvider;
+
+ public LocationService(String username, String password, IProxyProvider proxyProvider) {
+ this.credentialsByType = new HashMap<AuthenticationType, UsernamePasswordCredentials>();
+ this.proxyProvider = proxyProvider;
+
+ if (username != null && password != null) {
+ setCredentials(AuthenticationType.REPOSITORY, username, password);
+ }
+ }
+
+// public LocationService(String url, String username, String password) {
+// this(url, username, password, new PlatformProxyProvider());
+// }
+//
+// public LocationService(String url) {
+// this(url, null, null, new PlatformProxyProvider());
+// }
+
+ public UsernamePasswordCredentials getCredentials(AuthenticationType authType) {
+ return credentialsByType.get(authType);
+ }
+
+ public Proxy getProxyForHost(String host, String proxyType) {
+ if (proxyProvider != null) {
+ return proxyProvider.getProxyForHost(host, proxyType);
+ }
+ return null;
+ }
+
+ public void setCredentials(AuthenticationType authType, String username, String password) {
+ credentialsByType.put(authType, new UsernamePasswordCredentials(username, password));
+ }
+
+ public X509TrustManager getTrustManager() {
+ // ignore
+ return null;
+ }
+
+ public <T extends AuthenticationCredentials> T requestCredentials(AuthenticationType type,
+ Class<T> credentialsKind, String message, IProgressMonitor monitor) {
+ throw new UnsupportedOperationException();
+ }
+
+ public ICredentialsStore getCredentialsStore(String id) {
+ return new SecureCredentialsStore(id);
+ }
+
+}

Back to the top