package nl.knaw.huygens.alexandria.endpoint.iiif; /* * #%L * alexandria-main * ======= * Copyright (C) 2015 - 2017 Huygens ING (KNAW) * ======= * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ import com.github.jsonldjava.utils.JsonUtils; import com.google.common.base.Joiner; import com.google.common.collect.Maps; import nl.knaw.huygens.alexandria.api.model.iiif.IIIFAnnotationList; import nl.knaw.huygens.alexandria.endpoint.webannotation.WebAnnotation; import nl.knaw.huygens.alexandria.endpoint.webannotation.WebAnnotationService; import java.io.IOException; import java.time.Instant; import java.util.ArrayList; import java.util.List; import java.util.Map; public class AnnotationListImportTask implements Runnable { private IIIFAnnotationList annotationList; private final WebAnnotationService webAnnotationService; private AnnotationListImportStatus status; public AnnotationListImportTask(IIIFAnnotationList annotationList, WebAnnotationService webAnnotationService) { this.annotationList = annotationList; this.webAnnotationService = webAnnotationService; this.status = new AnnotationListImportStatus(); } @Override public void run() { status.setStarted(); try { Map<String, Object> otherProperties = annotationList.getOtherProperties(); String context = annotationList.getContext(); status.setProcessedList(Maps.newHashMap(otherProperties)); List<Map<String, Object>> resources = new ArrayList<>(annotationList.getResources().size()); annotationList.getResources().forEach(prototype -> { prototype.setCreated(Instant.now().toString()); prototype.getVariablePart().put("@context", context); WebAnnotation webAnnotation = webAnnotationService.validateAndStore(prototype); try { Map<String, Object> map = (Map<String, Object>) JsonUtils.fromString(webAnnotation.json()); resources.add(map); } catch (IOException e) { e.printStackTrace(); } }); status.getProcessedList().put("resources", resources); } catch (Exception e){ e.printStackTrace(); status.getErrors().add("Exception thrown: " + e); status.getErrors().add("Exception message: " + e.getMessage()); status.getErrors().add("Stacktrace: " + Joiner.on("\n").join(e.getStackTrace())); } status.setDone(); } public AnnotationListImportStatus getStatus() { return status; } }