Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In case rtc isnt available, export still works #11

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/main/java/to/rtc/rtc2jira/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ public class Main {
public static void main(String[] args) throws Exception {
Settings settings = Settings.getInstance();
try (StorageEngine storageEngine = new StorageEngine()) {
RTCExtractor extractor = new RTCExtractor(settings, storageEngine);
extractor.extract();
if (RTCExtractor.isLoginPossible(settings)) {
new RTCExtractor(settings, storageEngine).extract();;
}

for (Exporter exporter : getExporters()) {
exporter.initialize(settings, storageEngine);
if (exporter.isConfigured()) {
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/to/rtc/rtc2jira/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ public static Settings getInstance() {
return instance;
}

public boolean hasRtcProperties() {
return props.containsKey(RTC_USER) && props.containsKey(RTC_PASSWORD)
&& props.containsKey(RTC_URL) && props.containsKey(RTC_WORKITEM_ID_RANGE);
}

public String getRtcUrl() {
return props.getProperty(RTC_URL);
}
Expand Down
45 changes: 33 additions & 12 deletions src/main/java/to/rtc/rtc2jira/extract/RTCExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,27 @@ public RTCExtractor(Settings settings, StorageEngine storageEngine) {
this.storageEngine = storageEngine;
}

public static boolean isLoginPossible(Settings settings) {
boolean isLoginPossible = false;
if (settings.hasRtcProperties()) {
TeamPlatform.startup();
try {
login(settings).logout();
isLoginPossible = true;
} catch (TeamRepositoryException e) {
System.out.println("Unable to login into RTC Repository");
e.printStackTrace();
} finally {
TeamPlatform.shutdown();
}
}
return isLoginPossible;
}

public void extract() {
final String userId = settings.getRtcUser();
final String password = settings.getRtcPassword();
String repoUri = settings.getRtcUrl();
TeamPlatform.startup();
try {
final ITeamRepository repo =
TeamPlatform.getTeamRepositoryService().getTeamRepository(repoUri);
repo.registerLoginHandler(new ILoginHandler2() {
@Override
public ILoginInfo2 challenge(ITeamRepository repo) {
return new UsernameAndPasswordLoginInfo(userId, password);
}
});
repo.login(null);
ITeamRepository repo = login(settings);
processWorkItems(repo, settings.getRtcWorkItemRange());
repo.logout();
} catch (TeamRepositoryException | IOException e) {
Expand All @@ -61,6 +67,21 @@ public ILoginInfo2 challenge(ITeamRepository repo) {
}
}

private static ITeamRepository login(Settings settings) throws TeamRepositoryException {
final String userId = settings.getRtcUser();
final String password = settings.getRtcPassword();
String repoUri = settings.getRtcUrl();
final ITeamRepository repo = TeamPlatform.getTeamRepositoryService().getTeamRepository(repoUri);
repo.registerLoginHandler(new ILoginHandler2() {
@Override
public ILoginInfo2 challenge(ITeamRepository repo) {
return new UsernameAndPasswordLoginInfo(userId, password);
}
});
repo.login(null);
return repo;
}

private void processWorkItems(ITeamRepository repo, Iterable<Integer> workItemRange)
throws TeamRepositoryException, IOException {
IWorkItemClient workItemClient = (IWorkItemClient) repo.getClientLibrary(IWorkItemClient.class);
Expand Down