/*******************************************************************************
* Copyright (c) 2014, Paul Weingardt
* 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:
* Paul Weingardt - initial API and implementation
*******************************************************************************/
package de.weingardt.mylyn.gitlab.core;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.gitlab.api.GitlabAPI;
import org.gitlab.api.models.GitlabMilestone;
import org.gitlab.api.models.GitlabProject;
import org.gitlab.api.models.GitlabProjectMember;
import org.gitlab.api.models.GitlabSession;
public class GitlabConnection {
public final String host;
public final GitlabSession session;
public final GitlabProject project;
public final GitlabAttributeMapper mapper;
private List<GitlabMilestone> milestones;
private List<GitlabProjectMember> members;
public GitlabConnection(String host, GitlabProject project, GitlabSession session,
GitlabAttributeMapper mapper) {
this.host = host;
this.project = project;
this.session = session;
this.mapper = mapper;
}
public GitlabAPI api() {
return GitlabAPI.connect(host, session.getPrivateToken());
}
public void update() throws IOException {
ArrayList<GitlabProjectMember> memberList = new ArrayList<GitlabProjectMember>();
milestones = api().getMilestones(project);
memberList.addAll(api().getProjectMembers(project));
// This might fail sometimes, because the namespace is not an actual namespace.
// If the "namespace" is a user namespace, it will fail
try {
memberList.addAll(api().getNamespaceMembers(project.getNamespace()));
} catch(Exception e) {
} catch(Error e) {
}
members = Collections.unmodifiableList(memberList);
}
public List<GitlabMilestone> getMilestones() {
return Collections.unmodifiableList(milestones);
}
public List<GitlabProjectMember> getProjectMembers() {
return Collections.unmodifiableList(members);
}
}