Skip to main content
summaryrefslogtreecommitdiffstats
blob: a5c3860306666bae0400b07a8a7bb1afb3decefe (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
 * Copyright (c) 2004, 2008 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.util.HashSet;
import java.util.Set;

import org.eclipse.mylyn.tasks.core.AbstractTaskListMigrator;
import org.eclipse.mylyn.tasks.core.IRepositoryQuery;
import org.eclipse.mylyn.tasks.core.ITask;
import org.w3c.dom.Element;

/**
 * @author Rob Elves
 */
public class BugzillaTaskListMigrator extends AbstractTaskListMigrator {

	private static final String TAG_BUGZILLA_REPORT = "BugzillaReport"; //$NON-NLS-1$

	private static final String KEY_SEVERITY = "bugzilla.severity"; //$NON-NLS-1$

	private static final String KEY_PRODUCT = "bugzilla.product"; //$NON-NLS-1$

	@Override
	public String getConnectorKind() {
		return BugzillaCorePlugin.CONNECTOR_KIND;
	}

	@Override
	public Set<String> getQueryElementNames() {
		Set<String> names = new HashSet<String>();
		names.add(IBugzillaConstants.TAG_BUGZILLA_QUERY);
		names.add(IBugzillaConstants.TAG_BUGZILLA_CUSTOM_QUERY);
		return names;
	}

	@Override
	public String getTaskElementName() {
		return TAG_BUGZILLA_REPORT;
	}

	@Override
	public void migrateQuery(IRepositoryQuery query, Element element) {
		if (element.getNodeName().equals(IBugzillaConstants.TAG_BUGZILLA_CUSTOM_QUERY)) {
			query.setAttribute(IBugzillaConstants.ATTRIBUTE_BUGZILLA_QUERY_CUSTOM, Boolean.TRUE.toString());
		}
	}

	@Override
	public void migrateTask(ITask task, Element element) {
		if (element.hasAttribute(KEY_SEVERITY)) {
			task.setAttribute(BugzillaAttribute.BUG_SEVERITY.getKey(),
					element.getAttribute(BugzillaAttribute.BUG_SEVERITY.getKey()));
		}
		if (element.hasAttribute(KEY_PRODUCT)) {
			task.setAttribute(BugzillaAttribute.PRODUCT.getKey(),
					element.getAttribute(BugzillaAttribute.PRODUCT.getKey()));
		}
		if (element.hasAttribute(KEY_LAST_MOD_DATE)) {
			task.setAttribute(BugzillaAttribute.DELTA_TS.getKey(), element.getAttribute(KEY_LAST_MOD_DATE));
		}
	}

}

Back to the top