Skip to main content
summaryrefslogtreecommitdiffstats
blob: fb8330d9dbd202354dd4cd9ae4d111778b7fc60f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*******************************************************************************
 * Copyright (c) 2004, 2009 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.bugzilla.core;

import java.net.MalformedURLException;

import org.eclipse.mylyn.commons.net.AbstractWebLocation;
import org.eclipse.mylyn.tasks.core.TaskRepository;
import org.eclipse.mylyn.tasks.core.TaskRepositoryLocationFactory;

/**
 * @author Steffen Pingel
 * @author Robert Elves (adaption for Bugzilla)
 */
public class BugzillaClientFactory {

	protected static TaskRepositoryLocationFactory taskRepositoryLocationFactory = new TaskRepositoryLocationFactory();

	public static BugzillaClient createClient(TaskRepository taskRepository, BugzillaRepositoryConnector connector)
			throws MalformedURLException {
		// to fix bug#349633
		// (BugzillaRepositoryConnector.getTaskData() fails when repository URL has trailing slash and no path)
		String repositoryURL = taskRepository.getRepositoryUrl();
		if (repositoryURL.endsWith("/")) { //$NON-NLS-1$
			StringBuilder sb = new StringBuilder(repositoryURL.trim());
			while (sb.length() > 0 && sb.charAt(sb.length() - 1) == '/') {
				sb.setLength(sb.length() - 1);
			}
			taskRepository.setRepositoryUrl(sb.toString());
		}
		AbstractWebLocation location = taskRepositoryLocationFactory.createWebLocation(taskRepository);

		BugzillaClient client = new BugzillaClient(location, taskRepository, connector);

		return client;

	}
}

Back to the top