Search in sources :

Example 81 with Service

use of com.marcnuri.yakc.model.io.k8s.api.core.v1.Service in project kramerius by ceskaexpedice.

the class IiifAPI method manifest.

@GET
@Path("{pid}/manifest")
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8" })
public Response manifest(@PathParam("pid") String pid) {
    checkPid(pid);
    try {
        DocumentDto document = getIiifDocument(pid);
        PropertyValue titleLabel = new PropertyValueSimpleImpl(document.getTitle());
        Manifest manifest = new ManifestImpl(UriBuilder.fromUri(iiifUri).path(getClass(), "manifest").build(pid), titleLabel);
        List<String> fieldList = new ArrayList<String>();
        List<Canvas> canvases = new ArrayList<Canvas>();
        List<String> children = ItemResourceUtils.solrChildrenPids(pid, fieldList, solrAccess, solrMemoization);
        Map<String, Pair<Integer, Integer>> resolutions = getResolutions(children);
        for (String p : children) {
            String repPid = p.replace("/", "");
            if (repPid.equals(pid)) {
                continue;
            }
            DocumentDto page = getIiifDocument(repPid);
            if (!"page".equals(page.getModel()))
                continue;
            String id = ApplicationURL.applicationURL(this.requestProvider.get()) + "/canvas/" + repPid;
            Pair<Integer, Integer> resolution = resolutions.get(p);
            if (resolution != null) {
                Canvas canvas = new CanvasImpl(id, new PropertyValueSimpleImpl(page.getTitle()), resolution.getLeft(), resolution.getRight());
                ImageResource resource = new ImageResourceImpl();
                String resourceId = ApplicationURL.applicationURL(this.requestProvider.get()).toString() + "/iiif/" + repPid + "/full/full/0/default.jpg";
                resource.setType("dctypes:Image");
                resource.setId(resourceId);
                resource.setHeight(resolution.getLeft());
                resource.setWidth(resolution.getRight());
                resource.setFormat("image/jpeg");
                Service service = new ServiceImpl();
                service.setContext("http://iiif.io/api/image/2/context.json");
                service.setId(ApplicationURL.applicationURL(this.requestProvider.get()).toString() + "/iiif/" + repPid);
                service.setProfile("http://iiif.io/api/image/2/level1.json");
                resource.setService(service);
                Image image = new ImageImpl();
                image.setOn(new URI(id));
                image.setResource(resource);
                canvas.setImages(Collections.singletonList(image));
                canvases.add(canvas);
            }
        }
        // no pages - 500 ?
        if (canvases.isEmpty()) {
            throw new GenericApplicationException("cannot create manifest for pid '" + pid + "'");
        }
        Sequence sequence = new SequenceImpl();
        sequence.setCanvases(canvases);
        manifest.setSequences(Collections.singletonList(sequence));
        return Response.ok().entity(toJSON(manifest)).build();
    } catch (IOException e) {
        throw new GenericApplicationException(e.getMessage());
    } catch (URISyntaxException e) {
        throw new GenericApplicationException(e.getMessage());
    } catch (InterruptedException e) {
        throw new GenericApplicationException(e.getMessage());
    }
}
Also used : ArrayList(java.util.ArrayList) ManifestImpl(de.digitalcollections.iiif.presentation.model.impl.v2.ManifestImpl) SequenceImpl(de.digitalcollections.iiif.presentation.model.impl.v2.SequenceImpl) URISyntaxException(java.net.URISyntaxException) Image(de.digitalcollections.iiif.presentation.model.api.v2.Image) GenericApplicationException(cz.incad.kramerius.rest.api.exceptions.GenericApplicationException) URI(java.net.URI) ImageResourceImpl(de.digitalcollections.iiif.presentation.model.impl.v2.ImageResourceImpl) ImageResource(de.digitalcollections.iiif.presentation.model.api.v2.ImageResource) Pair(org.apache.commons.lang3.tuple.Pair) ServiceImpl(de.digitalcollections.iiif.presentation.model.impl.v2.ServiceImpl) Canvas(de.digitalcollections.iiif.presentation.model.api.v2.Canvas) PropertyValue(de.digitalcollections.iiif.presentation.model.api.v2.PropertyValue) Service(de.digitalcollections.iiif.presentation.model.api.v2.Service) Sequence(de.digitalcollections.iiif.presentation.model.api.v2.Sequence) IOException(java.io.IOException) Manifest(de.digitalcollections.iiif.presentation.model.api.v2.Manifest) ImageImpl(de.digitalcollections.iiif.presentation.model.impl.v2.ImageImpl) CanvasImpl(de.digitalcollections.iiif.presentation.model.impl.v2.CanvasImpl) PropertyValueSimpleImpl(de.digitalcollections.iiif.presentation.model.impl.v2.PropertyValueSimpleImpl) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 82 with Service

use of com.marcnuri.yakc.model.io.k8s.api.core.v1.Service in project dekorate by dekorateio.

the class KnativeExampleTest method shouldContainServiceWithPortNamedHttp1.

@Test
public void shouldContainServiceWithPortNamedHttp1() {
    KubernetesList list = Serialization.unmarshalAsList(KnativeExampleTest.class.getClassLoader().getResourceAsStream("META-INF/dekorate/knative.yml"));
    assertNotNull(list);
    assertEquals(1, list.getItems().size());
    Service s = findFirst(list, Service.class).orElseThrow(() -> new IllegalStateException("No knative service found!"));
    assertNotNull(s);
    Container c = s.getSpec().getTemplate().getSpec().getContainers().get(0);
    assertEquals("http1", c.getPorts().get(0).getName());
}
Also used : Container(io.fabric8.kubernetes.api.model.Container) Service(io.fabric8.knative.serving.v1.Service) KubernetesList(io.fabric8.kubernetes.api.model.KubernetesList) Test(org.junit.jupiter.api.Test)

Example 83 with Service

use of com.marcnuri.yakc.model.io.k8s.api.core.v1.Service in project dekorate by dekorateio.

the class Issue409Test method shouldHaveCustomImageInKnativeYaml.

@Test
public void shouldHaveCustomImageInKnativeYaml() {
    Service s = Serialization.unmarshal(Service.class.getClassLoader().getResourceAsStream("META-INF/dekorate/knative.yml"));
    assertNotNull(s);
    Container c = s.getSpec().getTemplate().getSpec().getContainers().get(0);
    assertNotNull(c);
    String image = c.getImage();
    assertEquals("my-group/my-name:my-version", image);
}
Also used : Container(io.fabric8.kubernetes.api.model.Container) Service(io.fabric8.knative.serving.v1.Service) Test(org.junit.jupiter.api.Test)

Example 84 with Service

use of com.marcnuri.yakc.model.io.k8s.api.core.v1.Service in project dekorate by dekorateio.

the class Issue572Test method shouldHaveMatchingPath.

@Test
public void shouldHaveMatchingPath() {
    KubernetesList list = Serialization.unmarshalAsList(getClass().getClassLoader().getResourceAsStream("META-INF/dekorate/knative.yml"));
    assertNotNull(list);
    Service s = findFirst(list, Service.class).orElseThrow(() -> new IllegalStateException());
    assertNotNull(s);
    assertEquals("cluster-local", s.getMetadata().getLabels().get("serving.knative.dev/visibility"));
}
Also used : Service(io.fabric8.knative.serving.v1.Service) KubernetesList(io.fabric8.kubernetes.api.model.KubernetesList) Test(org.junit.jupiter.api.Test)

Example 85 with Service

use of com.marcnuri.yakc.model.io.k8s.api.core.v1.Service in project dekorate by dekorateio.

the class Issue442MultiPlatformTest method shouldHaveCustomGroupAndVersionInKnativeYml.

@Test
public void shouldHaveCustomGroupAndVersionInKnativeYml() {
    KubernetesList list = Serialization.unmarshalAsList(Issue442MultiPlatformTest.class.getClassLoader().getResourceAsStream("META-INF/dekorate/knative.yml"));
    assertNotNull(list);
    Service s = findFirst(list, Service.class).orElseThrow(() -> new IllegalStateException());
    assertNotNull(s);
    Map<String, String> labels = s.getMetadata().getLabels();
    assertNotNull(labels);
    assertEquals("kn-group", labels.get(Labels.PART_OF));
    assertEquals("1.0-knative", labels.get(Labels.VERSION));
}
Also used : Service(io.fabric8.knative.serving.v1.Service) Test(org.junit.jupiter.api.Test)

Aggregations

Test (org.junit.jupiter.api.Test)34 Service (io.fabric8.knative.serving.v1.Service)28 Connector (org.eclipse.jst.server.tomcat.core.internal.xml.server40.Connector)22 Service (org.eclipse.jst.server.tomcat.core.internal.xml.server40.Service)22 CoreException (org.eclipse.core.runtime.CoreException)18 MockGrpcService (com.google.api.gax.grpc.testing.MockGrpcService)16 Service (com.google.monitoring.v3.Service)16 IOException (java.io.IOException)16 Test (org.junit.Test)16 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)14 AbstractMessage (com.google.protobuf.AbstractMessage)11 HasMetadata (io.fabric8.kubernetes.api.model.HasMetadata)11 ProdBuildResults (io.quarkus.test.ProdBuildResults)11 ProdModeTestResults (io.quarkus.test.ProdModeTestResults)11 QuarkusProdModeTest (io.quarkus.test.QuarkusProdModeTest)11 Path (java.nio.file.Path)11 ArrayList (java.util.ArrayList)11 RegisterExtension (org.junit.jupiter.api.extension.RegisterExtension)11 List (java.util.List)10 DisplayName (org.junit.jupiter.api.DisplayName)10