|
|
@@ -125,7 +125,7 @@ public class ThingProvider { |
|
|
|
return localDbAdapterService.loadThingListNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void fetchDetails() {
|
|
|
|
public void fetchDetails() throws RuntimeException {
|
|
|
|
// prepare list of ids to retrieve
|
|
|
|
Set<Integer> ids = new HashSet<>();
|
|
|
|
for (Thing thing : things) {
|
|
|
@@ -133,15 +133,36 @@ public class ThingProvider { |
|
|
|
ids.add(thing.getId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
System.out.println(Thing.makeResultHeader());
|
|
|
|
ArrayList<Thing> thingsWithDetails = bggApi.getThingDetails(ids);
|
|
|
|
for (Thing thing : thingsWithDetails) {
|
|
|
|
System.out.println(thing.toResultTxtLine());
|
|
|
|
// nothing to fetch
|
|
|
|
if(!ids.isEmpty()) {
|
|
|
|
ArrayList<Thing> thingsWithDetails = bggApi.getThingDetails(ids);
|
|
|
|
|
|
|
|
if(thingsWithDetails.size() != things.size()) {
|
|
|
|
throw new RuntimeException("Some details could not be retrieved from BGG.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now join the details from thing query with the things that already
|
|
|
|
// contain user data, then output complete things.
|
|
|
|
for (Thing thingUser : things) {
|
|
|
|
for (Thing thingWD : thingsWithDetails) {
|
|
|
|
if(thingWD.getId() == thingUser.getId()) {
|
|
|
|
thingUser.setDetails(thingWD.getDetails());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// Now join the details with the things that already contain user data, and output THOSE.
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toResultString() {
|
|
|
|
StringBuilder stringBuilder = new StringBuilder();
|
|
|
|
stringBuilder.append(Thing.makeResultHeader());
|
|
|
|
for (Thing thing : things) {
|
|
|
|
stringBuilder.append(thing.toResultTxtLine());
|
|
|
|
}
|
|
|
|
return stringBuilder.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|