package nl.knaw.huygens.alexandria.endpoint.resource; /* * #%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 java.net.URI; import java.util.Optional; import java.util.UUID; import javax.inject.Inject; import javax.validation.constraints.NotNull; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.StreamingOutput; import nl.knaw.huygens.alexandria.api.EndpointPaths; import nl.knaw.huygens.alexandria.api.model.text.TextRangeAnnotation; import nl.knaw.huygens.alexandria.api.model.text.TextRangeAnnotationInfo; import nl.knaw.huygens.alexandria.api.model.text.TextRangeAnnotationList; import nl.knaw.huygens.alexandria.endpoint.JSONEndpoint; import nl.knaw.huygens.alexandria.endpoint.LocationBuilder; import nl.knaw.huygens.alexandria.endpoint.UUIDParam; import nl.knaw.huygens.alexandria.exception.NotFoundException; import nl.knaw.huygens.alexandria.model.AlexandriaResource; import nl.knaw.huygens.alexandria.service.AlexandriaService; import nl.knaw.huygens.alexandria.textgraph.TextGraphUtil; import nl.knaw.huygens.alexandria.textgraph.TextRangeAnnotationValidatorFactory; public class ResourceTextAnnotationEndpoint extends JSONEndpoint { private LocationBuilder locationBuilder; private AlexandriaService service; private AlexandriaResource resource; private UUID resourceUUID; private TextRangeAnnotationValidatorFactory textRangeAnnotationValidator; @Inject public ResourceTextAnnotationEndpoint(AlexandriaService service, // ResourceValidatorFactory validatorFactory, // LocationBuilder locationBuilder, // @PathParam("uuid") final UUIDParam uuidParam) { this.service = service; this.locationBuilder = locationBuilder; this.resource = validatorFactory.validateExistingResource(uuidParam).notTentative().hasText().get(); this.resourceUUID = resource.getId(); this.textRangeAnnotationValidator = new TextRangeAnnotationValidatorFactory(service, resourceUUID); } @GET public Response getAnnotations() { TextRangeAnnotationList textRangeAnnotations = service.readTextRangeAnnotations(resourceUUID); return ok(textRangeAnnotations); } @PUT @Path("{annotationUUID}") @Consumes(MediaType.APPLICATION_JSON) // TODO: clean this up, some concerns need separation public Response setAnnotation(// @PathParam("annotationUUID") final UUIDParam uuidParam, // @NotNull TextRangeAnnotation newTextRangeAnnotation// ) { UUID annotationUUID = uuidParam.getValue(); newTextRangeAnnotation.setId(annotationUUID); String xml = getXML(); String annotated = TextRangeAnnotationValidatorFactory.getAnnotatedText(newTextRangeAnnotation.getPosition(), xml); boolean annotationIsNew = service.runInTransaction(() -> { textRangeAnnotationValidator.calculateAbsolutePosition(newTextRangeAnnotation, annotated); Optional<TextRangeAnnotation> existingTextRangeAnnotation = service.readTextRangeAnnotation(resourceUUID, annotationUUID); if (existingTextRangeAnnotation.isPresent()) { TextRangeAnnotation oldTextRangeAnnotation = existingTextRangeAnnotation.get(); textRangeAnnotationValidator.validate(newTextRangeAnnotation, oldTextRangeAnnotation); service.deprecateTextRangeAnnotation(annotationUUID, newTextRangeAnnotation); return false; } textRangeAnnotationValidator.validate(newTextRangeAnnotation); service.setTextRangeAnnotation(resourceUUID, newTextRangeAnnotation); return true; }); if (annotationIsNew) { URI location = locationBuilder.locationOf(resource, EndpointPaths.TEXT, EndpointPaths.ANNOTATIONS, annotationUUID.toString()); TextRangeAnnotationInfo info = new TextRangeAnnotationInfo().setAnnotates(annotated); return Response.created(location).entity(info).build(); } return noContent(); } @GET @Path("{annotationUUID}") public Response getAnnotation(@PathParam("annotationUUID") final UUIDParam uuidParam) { UUID annotationUUID = uuidParam.getValue(); TextRangeAnnotation textRangeAnnotation = service.readTextRangeAnnotation(resourceUUID, annotationUUID)// .orElseThrow(() -> new NotFoundException("No annotation found for this resource with id " + annotationUUID)); return ok(textRangeAnnotation); } @GET @Path("{annotationUUID}/rev/{revision}") public Response getAnnotationRevision(@PathParam("annotationUUID") final UUIDParam uuidParam, @PathParam("revision") final Integer revision) { UUID annotationUUID = uuidParam.getValue(); TextRangeAnnotation textRangeAnnotation = service.readTextRangeAnnotation(resourceUUID, annotationUUID, revision)// .orElseThrow(() -> new NotFoundException("No annotation found for this resource with id " + annotationUUID)); return ok(textRangeAnnotation); } private String getXML() { StreamingOutput outputStream = TextGraphUtil.streamXML(service, resourceUUID); return TextGraphUtil.asString(outputStream); } }