Search in sources :

Example 11 with Style

use of com.day.cq.wcm.api.designer.Style in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class EmbedImplTest method testEmbeddable.

@Test
void testEmbeddable() {
    style = mock(Style.class);
    Mockito.when(style.get(Embed.PN_DESIGN_URL_DISABLED, false)).thenReturn(true);
    Mockito.when(style.get(Embed.PN_DESIGN_HTML_DISABLED, false)).thenReturn(true);
    Mockito.when(style.get(Embed.PN_DESIGN_EMBEDDABLES_DISABLED, false)).thenReturn(false);
    Embed embed = getEmbedUnderTest(PATH_EMBED_2);
    assertEquals(Embed.Type.EMBEDDABLE, embed.getType());
    assertNull(embed.getUrl());
    assertNull(embed.getHtml());
    assertEquals("core/wcm/components/embed/v1/embed/embeddable/youtube", embed.getEmbeddableResourceType());
    Utils.testJSONExport(embed, Utils.getTestExporterJSONPath(BASE, EMBED_2));
}
Also used : Embed(com.adobe.cq.wcm.core.components.models.Embed) Style(com.day.cq.wcm.api.designer.Style) Test(org.junit.jupiter.api.Test)

Example 12 with Style

use of com.day.cq.wcm.api.designer.Style in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class EmbedImplTest method testUrl.

@Test
void testUrl() {
    style = mock(Style.class);
    Mockito.when(style.get(Embed.PN_DESIGN_URL_DISABLED, false)).thenReturn(false);
    Mockito.when(style.get(Embed.PN_DESIGN_HTML_DISABLED, false)).thenReturn(true);
    Mockito.when(style.get(Embed.PN_DESIGN_EMBEDDABLES_DISABLED, false)).thenReturn(true);
    Embed embed = getEmbedUnderTest(PATH_EMBED_1);
    assertEquals(Embed.Type.URL, embed.getType());
    assertNull(embed.getHtml());
    assertNull(embed.getEmbeddableResourceType());
    assertEquals("https://www.youtube.com/embed/vpdcMZnYCko", embed.getUrl());
    Utils.testJSONExport(embed, Utils.getTestExporterJSONPath(BASE, EMBED_1));
}
Also used : Embed(com.adobe.cq.wcm.core.components.models.Embed) Style(com.day.cq.wcm.api.designer.Style) Test(org.junit.jupiter.api.Test)

Example 13 with Style

use of com.day.cq.wcm.api.designer.Style in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class UtilsTest method testGetPropertyOrStyleReturnsStyle.

@Test
public void testGetPropertyOrStyleReturnsStyle() {
    Resource resource = mock(Resource.class);
    ResourceResolver resourceResolver = mock(ResourceResolver.class);
    Designer designer = mock(Designer.class);
    Style style = mock(Style.class);
    when(resource.getValueMap()).thenReturn(ValueMap.EMPTY);
    when(resource.getResourceResolver()).thenReturn(resourceResolver);
    when(resourceResolver.adaptTo(Designer.class)).thenReturn(designer);
    when(designer.getStyle(resource)).thenReturn(style);
    when(style.get("foo", String.class)).thenReturn("bar");
    assertEquals("bar", Utils.getPropertyOrStyle(resource, "foo", String.class));
}
Also used : Designer(com.day.cq.wcm.api.designer.Designer) Resource(org.apache.sling.api.resource.Resource) ResourceResolver(org.apache.sling.api.resource.ResourceResolver) Style(com.day.cq.wcm.api.designer.Style) Test(org.junit.jupiter.api.Test)

Example 14 with Style

use of com.day.cq.wcm.api.designer.Style in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class UtilsTest method testGetPropertyOrStyleReturnsNothingWhenStyleMissing.

@Test
public void testGetPropertyOrStyleReturnsNothingWhenStyleMissing() {
    Resource resource = mock(Resource.class);
    ResourceResolver resourceResolver = mock(ResourceResolver.class);
    Designer designer = mock(Designer.class);
    Style style = mock(Style.class);
    when(resource.getValueMap()).thenReturn(ValueMap.EMPTY);
    when(resource.getResourceResolver()).thenReturn(resourceResolver);
    // Designer missing
    assertNull(Utils.getPropertyOrStyle(resource, "foo", String.class));
    // Style missing
    when(resourceResolver.adaptTo(Designer.class)).thenReturn(designer);
    assertNull(Utils.getPropertyOrStyle(resource, "foo", String.class));
    // Value missing
    when(designer.getStyle(resource)).thenReturn(style);
    assertNull(Utils.getPropertyOrStyle(resource, "foo", String.class));
}
Also used : Designer(com.day.cq.wcm.api.designer.Designer) Resource(org.apache.sling.api.resource.Resource) ResourceResolver(org.apache.sling.api.resource.ResourceResolver) Style(com.day.cq.wcm.api.designer.Style) Test(org.junit.jupiter.api.Test)

Example 15 with Style

use of com.day.cq.wcm.api.designer.Style in project aem-core-wcm-components by Adobe-Marketing-Cloud.

the class AdaptiveImageServlet method doGet.

@Override
protected void doGet(@NotNull SlingHttpServletRequest request, @NotNull SlingHttpServletResponse response) throws IOException {
    Timer.Context requestDuration = metrics.startDurationRecording();
    try {
        metrics.markServletInvocation();
        RequestPathInfo requestPathInfo = request.getRequestPathInfo();
        List<String> selectorList = selectorToList(requestPathInfo.getSelectorString());
        String suffix = requestPathInfo.getSuffix();
        String imageName = StringUtils.isNotEmpty(suffix) ? FilenameUtils.getName(suffix) : "";
        if (StringUtils.isNotEmpty(suffix)) {
            String suffixExtension = FilenameUtils.getExtension(suffix);
            if (StringUtils.isNotEmpty(suffixExtension)) {
                if (!suffixExtension.equals(requestPathInfo.getExtension())) {
                    LOGGER.error("The suffix part defines a different extension than the request: {}.", suffix);
                    metrics.markImageErrors();
                    response.sendError(HttpServletResponse.SC_NOT_FOUND);
                    return;
                }
            } else {
                LOGGER.error("Invalid suffix: {}.", suffix);
                metrics.markImageErrors();
                response.sendError(HttpServletResponse.SC_NOT_FOUND);
                return;
            }
        }
        Resource component = request.getResource();
        ResourceResolver resourceResolver = request.getResourceResolver();
        if (!component.isResourceType(IMAGE_RESOURCE_TYPE)) {
            // image coming from template; need to switch resource
            Resource componentCandidate = null;
            PageManager pageManager = resourceResolver.adaptTo(PageManager.class);
            if (pageManager != null) {
                Page page = pageManager.getContainingPage(component);
                if (page != null) {
                    Template template = page.getTemplate();
                    if (template != null) {
                        if (StringUtils.isNotEmpty(suffix)) {
                            long lastModifiedSuffix = getRequestLastModifiedSuffix(suffix);
                            String relativeTemplatePath = lastModifiedSuffix == 0 ? // no timestamp info, but extension is valid; get resource name
                            suffix.substring(0, suffix.lastIndexOf('.')) : // timestamp info, get parent path from suffix
                            suffix.substring(0, suffix.lastIndexOf("/" + String.valueOf(lastModifiedSuffix)));
                            String imagePath = ResourceUtil.normalize(template.getPath() + relativeTemplatePath);
                            if (StringUtils.isNotEmpty(imagePath) && !template.getPath().equals(imagePath)) {
                                componentCandidate = resourceResolver.getResource(imagePath);
                            }
                        }
                    }
                }
            }
            if (componentCandidate == null) {
                LOGGER.error("Unable to retrieve an image from this page's template.");
                metrics.markImageErrors();
                response.sendError(HttpServletResponse.SC_NOT_FOUND);
                return;
            }
            component = componentCandidate;
        }
        LinkHandler linkHandler = request.adaptTo(LinkHandler.class);
        Style currentStyle = WCMUtils.getStyle(request);
        Page currentPage = Optional.ofNullable(resourceResolver.adaptTo(PageManager.class)).map(pageManager -> pageManager.getContainingPage(request.getResource())).orElse(null);
        Resource wrappedImageResourceWithInheritance = getWrappedImageResourceWithInheritance(component, linkHandler, currentStyle, currentPage);
        ImageComponent imageComponent = new ImageComponent(wrappedImageResourceWithInheritance);
        if (imageComponent.source == Source.NOCONTENT || imageComponent.source == Source.NONEXISTING) {
            LOGGER.error("Either the image from {} does not have a valid file reference" + " or the containing page does not have a valid featured image", component.getPath());
            metrics.markImageErrors();
            response.sendError(HttpServletResponse.SC_NOT_FOUND);
            return;
        }
        ValueMap componentProperties = component.getValueMap();
        long lastModifiedEpoch = 0;
        Calendar lastModifiedDate = componentProperties.get(JcrConstants.JCR_LASTMODIFIED, Calendar.class);
        if (lastModifiedDate == null) {
            lastModifiedDate = componentProperties.get(NameConstants.PN_PAGE_LAST_MOD, Calendar.class);
        }
        if (lastModifiedDate != null) {
            lastModifiedEpoch = lastModifiedDate.getTimeInMillis();
        }
        Asset asset = null;
        if (imageComponent.source == Source.ASSET) {
            asset = imageComponent.imageResource.adaptTo(Asset.class);
            if (asset == null) {
                LOGGER.error("Unable to adapt resource {} used by image {} to an asset.", imageComponent.imageResource.getPath(), component.getPath());
                metrics.markImageErrors();
                response.sendError(HttpServletResponse.SC_NOT_FOUND);
                return;
            }
            long assetLastModifiedEpoch = asset.getLastModified();
            if (assetLastModifiedEpoch > lastModifiedEpoch) {
                lastModifiedEpoch = assetLastModifiedEpoch;
            }
        }
        long requestLastModifiedSuffix = getRequestLastModifiedSuffix(suffix);
        if (requestLastModifiedSuffix >= 0 && requestLastModifiedSuffix != lastModifiedEpoch) {
            String redirectLocation = getRedirectLocation(request, lastModifiedEpoch);
            if (StringUtils.isNotEmpty(redirectLocation)) {
                response.setStatus(HttpServletResponse.SC_MOVED_TEMPORARILY);
                response.setHeader("Location", redirectLocation);
                return;
            } else {
                LOGGER.error("Unable to determine correct redirect location.");
                metrics.markImageErrors();
                response.setStatus(HttpServletResponse.SC_NOT_FOUND);
                return;
            }
        }
        if (!handleIfModifiedSinceHeader(request, response, lastModifiedEpoch)) {
            Map<String, Integer> transformationMap = getTransformationMap(selectorList, component);
            Integer jpegQualityInPercentage = transformationMap.get(SELECTOR_QUALITY_KEY);
            double quality = jpegQualityInPercentage / 100.0d;
            int resizeWidth = transformationMap.get(SELECTOR_WIDTH_KEY);
            String imageType = getImageType(requestPathInfo.getExtension());
            if (imageComponent.source == Source.FILE) {
                transformAndStreamFile(response, componentProperties, resizeWidth, quality, imageComponent.imageResource, imageType, imageName);
            } else if (imageComponent.source == Source.ASSET) {
                transformAndStreamAsset(response, componentProperties, resizeWidth, quality, asset, imageType, imageName);
            }
            metrics.markImageStreamed();
        }
    } catch (IllegalArgumentException e) {
        LOGGER.error("Invalid image request", e.getMessage());
        metrics.markImageErrors();
        response.sendError(HttpServletResponse.SC_NOT_FOUND);
    } finally {
        requestDuration.stop();
    }
}
Also used : ValueMap(org.apache.sling.api.resource.ValueMap) ResourceResolver(org.apache.sling.api.resource.ResourceResolver) SortedSet(java.util.SortedSet) ResourceUtil(org.apache.sling.api.resource.ResourceUtil) ContentPolicyManager(com.day.cq.wcm.api.policies.ContentPolicyManager) LoggerFactory(org.slf4j.LoggerFactory) DownloadResource(com.day.cq.commons.DownloadResource) StringUtils(org.apache.commons.lang3.StringUtils) Page(com.day.cq.wcm.api.Page) Layer(com.day.image.Layer) SlingHttpServletRequest(org.apache.sling.api.SlingHttpServletRequest) WCMUtils(com.day.cq.wcm.commons.WCMUtils) Matcher(java.util.regex.Matcher) Image(com.adobe.cq.wcm.core.components.models.Image) CharEncoding(org.apache.commons.lang3.CharEncoding) Map(java.util.Map) MimeTypeService(org.apache.sling.commons.mime.MimeTypeService) Splitter(com.google.common.base.Splitter) JcrConstants(org.apache.jackrabbit.JcrConstants) BufferedImage(java.awt.image.BufferedImage) HttpConstants(org.apache.sling.api.servlets.HttpConstants) SlingHttpServletResponse(org.apache.sling.api.SlingHttpServletResponse) DamConstants(com.day.cq.dam.api.DamConstants) CoreResourceWrapper(com.adobe.cq.wcm.core.components.internal.resource.CoreResourceWrapper) PageManager(com.day.cq.wcm.api.PageManager) IOUtils(org.apache.commons.io.IOUtils) Nullable(org.jetbrains.annotations.Nullable) List(java.util.List) RequestPathInfo(org.apache.sling.api.request.RequestPathInfo) Optional(java.util.Optional) SlingSafeMethodsServlet(org.apache.sling.api.servlets.SlingSafeMethodsServlet) Pattern(java.util.regex.Pattern) NotNull(org.jetbrains.annotations.NotNull) FilenameUtils(org.apache.commons.io.FilenameUtils) SuppressFBWarnings(edu.umd.cs.findbugs.annotations.SuppressFBWarnings) Utils.getWrappedImageResourceWithInheritance(com.adobe.cq.wcm.core.components.internal.Utils.getWrappedImageResourceWithInheritance) Joiner(com.google.common.base.Joiner) ComponentManager(com.day.cq.wcm.api.components.ComponentManager) LinkHandler(com.adobe.cq.wcm.core.components.internal.link.LinkHandler) HashMap(java.util.HashMap) TreeSet(java.util.TreeSet) ArrayList(java.util.ArrayList) Style(com.day.cq.wcm.api.designer.Style) Calendar(java.util.Calendar) Lists(com.google.common.collect.Lists) WCMRenditionPicker(com.day.cq.wcm.foundation.WCMRenditionPicker) Timer(org.apache.sling.commons.metrics.Timer) Asset(com.day.cq.dam.api.Asset) Logger(org.slf4j.Logger) Rendition(com.day.cq.dam.api.Rendition) HttpServletResponse(javax.servlet.http.HttpServletResponse) Resource(org.apache.sling.api.resource.Resource) IOException(java.io.IOException) AbstractImageDelegatingModel(com.adobe.cq.wcm.core.components.internal.models.v1.AbstractImageDelegatingModel) java.awt(java.awt) URLEncoder(java.net.URLEncoder) Template(com.day.cq.wcm.api.Template) NameConstants(com.day.cq.wcm.api.NameConstants) Text(org.apache.jackrabbit.util.Text) AssetStore(com.day.cq.dam.api.handler.store.AssetStore) AssetHandler(com.day.cq.dam.api.handler.AssetHandler) ContentPolicy(com.day.cq.wcm.api.policies.ContentPolicy) ImageResource(com.day.cq.commons.ImageResource) Comparator(java.util.Comparator) InputStream(java.io.InputStream) ValueMap(org.apache.sling.api.resource.ValueMap) Calendar(java.util.Calendar) DownloadResource(com.day.cq.commons.DownloadResource) Resource(org.apache.sling.api.resource.Resource) ImageResource(com.day.cq.commons.ImageResource) Page(com.day.cq.wcm.api.Page) Template(com.day.cq.wcm.api.Template) RequestPathInfo(org.apache.sling.api.request.RequestPathInfo) PageManager(com.day.cq.wcm.api.PageManager) Timer(org.apache.sling.commons.metrics.Timer) ResourceResolver(org.apache.sling.api.resource.ResourceResolver) Style(com.day.cq.wcm.api.designer.Style) Asset(com.day.cq.dam.api.Asset) LinkHandler(com.adobe.cq.wcm.core.components.internal.link.LinkHandler)

Aggregations

Style (com.day.cq.wcm.api.designer.Style)15 Resource (org.apache.sling.api.resource.Resource)10 Test (org.junit.jupiter.api.Test)8 Designer (com.day.cq.wcm.api.designer.Designer)4 ResourceResolver (org.apache.sling.api.resource.ResourceResolver)4 ValueMap (org.apache.sling.api.resource.ValueMap)4 MockStyle (com.adobe.cq.wcm.core.components.context.MockStyle)3 Embed (com.adobe.cq.wcm.core.components.models.Embed)3 Page (com.day.cq.wcm.api.Page)3 Template (com.day.cq.wcm.api.Template)3 ContentPolicy (com.day.cq.wcm.api.policies.ContentPolicy)3 LinkHandler (com.adobe.cq.wcm.core.components.internal.link.LinkHandler)2 CoreResourceWrapper (com.adobe.cq.wcm.core.components.internal.resource.CoreResourceWrapper)2 Download (com.adobe.cq.wcm.core.components.models.Download)2 Image (com.adobe.cq.wcm.core.components.models.Image)2 MockStyle (com.adobe.cq.wcm.core.components.testing.MockStyle)2 DownloadResource (com.day.cq.commons.DownloadResource)2 ImageResource (com.day.cq.commons.ImageResource)2 PageManager (com.day.cq.wcm.api.PageManager)2 ContentPolicyMapping (com.day.cq.wcm.api.policies.ContentPolicyMapping)2