
org.visallo.web.routes.vertex.VertexVideoPreviewImage Maven / Gradle / Ivy
package org.visallo.web.routes.vertex;
import com.google.inject.Inject;
import com.v5analytics.webster.ParameterizedHandler;
import com.v5analytics.webster.annotations.Handle;
import com.v5analytics.webster.annotations.Optional;
import com.v5analytics.webster.annotations.Required;
import org.apache.commons.io.IOUtils;
import org.vertexium.Authorizations;
import org.vertexium.Graph;
import org.vertexium.Property;
import org.vertexium.Vertex;
import org.vertexium.property.StreamingPropertyValue;
import org.visallo.core.exception.VisalloResourceNotFoundException;
import org.visallo.core.model.artifactThumbnails.ArtifactThumbnailRepository;
import org.visallo.core.user.User;
import org.visallo.core.util.VisalloLogger;
import org.visallo.core.util.VisalloLoggerFactory;
import org.visallo.web.VisalloResponse;
import java.io.InputStream;
import java.io.OutputStream;
import static org.visallo.core.model.properties.MediaVisalloProperties.VIDEO_PREVIEW_IMAGE;
public class VertexVideoPreviewImage implements ParameterizedHandler {
private static final VisalloLogger LOGGER = VisalloLoggerFactory.getLogger(VertexVideoPreviewImage.class);
private final Graph graph;
private final ArtifactThumbnailRepository artifactThumbnailRepository;
@Inject
public VertexVideoPreviewImage(
final Graph graph,
final ArtifactThumbnailRepository artifactThumbnailRepository
) {
this.graph = graph;
this.artifactThumbnailRepository = artifactThumbnailRepository;
}
@Handle
public void handle(
@Required(name = "graphVertexId") String graphVertexId,
@Optional(name = "width") Integer width,
User user,
Authorizations authorizations,
VisalloResponse response
) throws Exception {
Vertex artifactVertex = graph.getVertex(graphVertexId, authorizations);
if (artifactVertex == null) {
throw new VisalloResourceNotFoundException("Could not find vertex with id: " + graphVertexId);
}
int[] boundaryDims = new int[]{200 * ArtifactThumbnailRepository.FRAMES_PER_PREVIEW, 200};
if (width != null) {
boundaryDims[0] = width * ArtifactThumbnailRepository.FRAMES_PER_PREVIEW;
boundaryDims[1] = width;
response.setContentType("image/jpeg");
response.addHeader("Content-Disposition", "inline; filename=videoPreview" + boundaryDims[0] + ".jpg");
response.setMaxAge(VisalloResponse.EXPIRES_1_HOUR);
byte[] thumbnailData = artifactThumbnailRepository.getThumbnailData(artifactVertex.getId(), "video-preview", boundaryDims[0], boundaryDims[1], user);
if (thumbnailData != null) {
LOGGER.debug("Cache hit for: %s (video-preview) %d x %d", artifactVertex.getId(), boundaryDims[0], boundaryDims[1]);
try (OutputStream out = response.getOutputStream()) {
out.write(thumbnailData);
}
return;
}
}
Property videoPreviewImage = VIDEO_PREVIEW_IMAGE.getProperty(artifactVertex);
StreamingPropertyValue videoPreviewImageValue = VIDEO_PREVIEW_IMAGE.getPropertyValue(artifactVertex);
if (videoPreviewImageValue == null) {
LOGGER.warn("Could not find video preview image for artifact: %s", artifactVertex.getId());
response.respondWithNotFound();
return;
}
try (InputStream in = videoPreviewImageValue.getInputStream()) {
if (width != null) {
LOGGER.info("Cache miss for: %s (video-preview) %d x %d", artifactVertex.getId(), boundaryDims[0], boundaryDims[1]);
response.setContentType("image/jpeg");
response.addHeader("Content-Disposition", "inline; filename=videoPreview" + boundaryDims[0] + ".jpg");
response.setMaxAge(VisalloResponse.EXPIRES_1_HOUR);
byte[] thumbnailData = artifactThumbnailRepository.createThumbnail(artifactVertex, videoPreviewImage.getKey(), "video-preview", in, boundaryDims, user).getData();
try (OutputStream out = response.getOutputStream()) {
out.write(thumbnailData);
}
} else {
response.setContentType("image/png");
try (OutputStream out = response.getOutputStream()) {
IOUtils.copy(in, out);
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy