View Javadoc

1   /**
2    * This file Copyright (c) 2003-2010 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.module.delta;
35  
36  import info.magnolia.cms.core.Content;
37  import info.magnolia.cms.core.NodeData;
38  import info.magnolia.module.InstallContext;
39  
40  import javax.jcr.RepositoryException;
41  import java.text.MessageFormat;
42  
43  /**
44   * A tasks that offers helper methods to check on certain properties.
45   *
46   * @author gjoseph
47   * @version $Revision: $ ($Author: $)
48   */
49  public abstract class PropertyValuesTask extends AbstractTask {
50  
51      public PropertyValuesTask(String name, String description) {
52          super(name, description);
53      }
54  
55      /**
56       * Checks that the given String property has the expected value. Changes it if so, logs otherwise.
57       */
58      protected void checkAndModifyPropertyValue(InstallContext ctx, Content node, String propertyName, String expectedCurrentValue, String newValue) throws RepositoryException {
59          final NodeData prop = node.getNodeData(propertyName);
60          final String currentvalue = prop.getString();
61          if (prop.isExist() && currentvalue.equals(expectedCurrentValue)) {
62              prop.setValue(newValue);
63          } else {
64              final String msg = format("Property \"{0}\" was expected to exist at {1} with value \"{2}\" but {3,choice,0#does not exist|1#has the value \"{4}\" instead}.",
65                      propertyName, node.getHandle(), expectedCurrentValue, new Integer(prop.isExist() ? 1 : 0), currentvalue);
66              ctx.warn(msg);
67          }
68      }
69  
70      protected void checkOrCreateProperty(InstallContext ctx, Content node, String propertyName, String expectedValue) throws RepositoryException {
71          if (node.hasNodeData(propertyName)) {
72              final NodeData prop = node.getNodeData(propertyName);
73              final String currentvalue = prop.getString();
74              if (!currentvalue.equals(expectedValue)) {
75                  final String msg = format("Property \"{0}\" was expected to exist at {1} with value \"{2}\" but {3,choice,0#does not exist|1#has the value \"{4}\" instead}.",
76                          propertyName, node.getHandle(), expectedValue, new Integer(prop.isExist() ? 1 : 0), currentvalue);
77                  ctx.warn(msg);
78              }
79          } else {
80              node.createNodeData(propertyName, expectedValue);
81          }
82      }
83  
84      /**
85       * Checks that the given property does not exist and creates it with the given value, logs otherwise.
86       */
87      protected void newProperty(InstallContext ctx, Content node, String propertyName, String value) throws RepositoryException {
88          newProperty(ctx, node, propertyName, value, true);
89      }
90  
91      protected void newProperty(InstallContext ctx, Content node, String propertyName, String value, boolean log) throws RepositoryException {
92          final NodeData prop = node.getNodeData(propertyName);
93          if (!prop.isExist()) {
94              node.createNodeData(propertyName, value);
95          } else if (log) {
96              final String msg = format("Property \"{0}\" was expected not to exist at {1}, but exists with value \"{2}\" and was going to be created with value \"{3}\".",
97                      propertyName, node.getHandle(), prop.getString(), value);
98              ctx.warn(msg);
99          }
100     }
101 
102     // TODO move this to the InstallContext interface ?
103     protected String format(String pattern, Object arg0, Object arg1, Object arg2, Object arg3, Object arg4) {
104         return MessageFormat.format(pattern, new Object[]{arg0, arg1, arg2, arg3, arg4});
105     }
106 
107     protected String format(String pattern, Object arg0, Object arg1, Object arg2, Object arg3) {
108         return format(pattern, arg0, arg1, arg2, arg3, null);
109     }
110 
111     protected String format(String pattern, Object arg0, Object arg1, Object arg2) {
112         return format(pattern, arg0, arg1, arg2, null);
113     }
114 }