Clover icon

Magnolia Imaging Module 3.4.2-SUPPORT-10161

  1. Project Clover database Tue Jul 16 2019 23:33:19 EEST
  2. Package info.magnolia.imaging

File DefaultImageGenerator.java

 

Coverage histogram

../../../img/srcFileCovDistChart9.png
42% of files have more coverage

Code metrics

2
15
3
1
91
38
5
0.33
5
3
1.67

Classes

Class Line # Actions
DefaultImageGenerator 56 15 0% 5 3
0.8585%
 

Contributing tests

This file is covered by 2 tests. .

Source view

1    /**
2    * This file Copyright (c) 2015-2018 Magnolia International
3    * Ltd. (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10    * This file is distributed in the hope that it will be
11    * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12    * implied warranty of MERCHANTABILITY or FITNESS FOR A
13    * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14    * Redistribution, except as permitted by whichever of the GPL
15    * or MNA you select, is prohibited.
16    *
17    * 1. For the GPL license (GPL), you can redistribute and/or
18    * modify this file under the terms of the GNU General
19    * Public License, Version 3, as published by the Free Software
20    * Foundation. You should have received a copy of the GNU
21    * General Public License, Version 3 along with this program;
22    * if not, write to the Free Software Foundation, Inc., 51
23    * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24    *
25    * 2. For the Magnolia Network Agreement (MNA), this file
26    * and the accompanying materials are made available under the
27    * terms of the MNA which accompanies this distribution, and
28    * is available at http://www.magnolia-cms.com/mna.html
29    *
30    * Any modifications to this file must keep this entire header
31    * intact.
32    *
33    */
34    package info.magnolia.imaging;
35   
36    import info.magnolia.imaging.operations.ImageOperationChain;
37    import info.magnolia.imaging.operations.load.FromBinaryNode;
38    import info.magnolia.imaging.parameters.BinaryJcrNodePathParameterProviderFactory;
39    import info.magnolia.jcr.util.PropertyUtil;
40   
41    import javax.jcr.Node;
42   
43    import org.apache.commons.lang3.StringUtils;
44   
45    /**
46    * The default {@link info.magnolia.imaging.ImageGenerator} with some provided defaults.
47    *
48    * <p>The {@link info.magnolia.imaging.OutputFormat} and {@link info.magnolia.imaging.operations.ImageOperation}s can
49    * easily be overwritten by configuration in JCR.</p>
50    *
51    * <p>This {@link info.magnolia.imaging.ImageGenerator} will expect workspace name and path of a {@link javax.jcr.Node},
52    * e.g. <code>/.imaging/default/contacts/ldavinci/photo.jpeg</code> where <code>default</code> specifies the
53    * name of this {@link info.magnolia.imaging.ImageGenerator}, <code>contacts</code> is the workspace name and
54    * <code>/ldavinci/photo</code> is the path to the binary {@link javax.jcr.Node}.</p>
55    */
 
56    public class DefaultImageGenerator extends ImageOperationChain<ParameterProvider<Node>> {
57   
58    public static final String GENERATOR_NAME = "default";
59   
60    private static final BinaryJcrNodePathParameterProviderFactory parameterProviderFactory = new BinaryJcrNodePathParameterProviderFactory();
61    private static final FromBinaryNode fromBinaryNodeOperation = new FromBinaryNode();
 
62  1 toggle private static final OutputFormat defaultOutputFormat = new OutputFormat() {{
63  1 setFormatName("jpg");
64    }};
65   
 
66  2 toggle public DefaultImageGenerator() {
67  2 setParameterProviderFactory(parameterProviderFactory);
68  2 setOutputFormat(defaultOutputFormat);
69  2 addOperation(fromBinaryNodeOperation);
70    }
71   
 
72  2 toggle @Override
73    public OutputFormat getOutputFormat(final ParameterProvider<Node> params) {
74  2 final Node node = params.getParameter();
75  2 OutputFormat format;
76  2 try {
77  2 format = getOutputFormat().clone();
78    } catch (CloneNotSupportedException e) {
79  0 throw new RuntimeException("Can't clone the output format to produce a dynamic format.", e);
80    }
81  2 String extension = PropertyUtil.getString(node, "extension", "jpg");
82  2 format.setFormatName(extension);
83   
84  2 if ("gif".equals(StringUtils.lowerCase(extension))) {
85  0 format.setCompressionType("lzw");
86    } else {
87  2 format.setCompressionType(null);
88    }
89  2 return format;
90    }
91    }