~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-validationrule/src/main/java/org/hisp/dhis/validationrule/action/ValidateValidationRuleAction.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.validationrule.action;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.util.Set;
 
31
 
 
32
import org.hisp.dhis.dataelement.DataElement;
 
33
import org.hisp.dhis.expression.ExpressionService;
 
34
import org.hisp.dhis.i18n.I18n;
 
35
import org.hisp.dhis.validation.ValidationRule;
 
36
import org.hisp.dhis.validation.ValidationRuleService;
 
37
 
 
38
import com.opensymphony.xwork.ActionSupport;
 
39
 
 
40
/** 
 
41
 * @author Margrethe Store
 
42
 * @version $Id: ValidateValidationRuleAction.java 3868 2007-11-08 15:11:12Z larshelg $
 
43
 */
 
44
public class ValidateValidationRuleAction
 
45
    extends ActionSupport
 
46
{
 
47
    private static final String NONE = "none";
 
48
    
 
49
    // -------------------------------------------------------------------------
 
50
    // Dependencies
 
51
    // -------------------------------------------------------------------------
 
52
 
 
53
    private ValidationRuleService validationRuleService;
 
54
 
 
55
    public void setValidationRuleService( ValidationRuleService validationRuleService )
 
56
    {
 
57
        this.validationRuleService = validationRuleService;
 
58
    }
 
59
    
 
60
    private ExpressionService expressionService;
 
61
 
 
62
    public void setExpressionService( ExpressionService expressionService )
 
63
    {
 
64
        this.expressionService = expressionService;
 
65
    }
 
66
    
 
67
    private I18n i18n;
 
68
 
 
69
    public void setI18n( I18n i18n )
 
70
    {
 
71
        this.i18n = i18n;
 
72
    }
 
73
 
 
74
    // -------------------------------------------------------------------------
 
75
    // Input
 
76
    // -------------------------------------------------------------------------
 
77
    
 
78
    private Integer id;
 
79
 
 
80
    public void setId( Integer id )
 
81
    {
 
82
        this.id = id;
 
83
    }
 
84
 
 
85
    private String name;
 
86
 
 
87
    public void setName( String validationName )
 
88
    {
 
89
        this.name = validationName;
 
90
    }
 
91
 
 
92
    private String operator;
 
93
 
 
94
    public void setOperator( String operator )
 
95
    {
 
96
        this.operator = operator;
 
97
    }
 
98
 
 
99
    private String leftSideExpression;
 
100
 
 
101
    public void setLeftSideExpression( String leftFormula )
 
102
    {
 
103
        this.leftSideExpression = leftFormula;
 
104
    }
 
105
 
 
106
    private String rightSideExpression;
 
107
 
 
108
    public void setRightSideExpression( String rightFormula )
 
109
    {
 
110
        this.rightSideExpression = rightFormula;
 
111
    }
 
112
 
 
113
    // -------------------------------------------------------------------------
 
114
    // Output
 
115
    // -------------------------------------------------------------------------
 
116
 
 
117
    private String message;
 
118
 
 
119
    public String getMessage()
 
120
    {
 
121
        return message;
 
122
    }
 
123
 
 
124
    // -------------------------------------------------------------------------
 
125
    // Action implementation
 
126
    // -------------------------------------------------------------------------
 
127
 
 
128
    public String execute()
 
129
    {
 
130
        if ( name == null )
 
131
        {
 
132
            message = i18n.getString( "specify_name" );
 
133
            
 
134
            return INPUT;
 
135
        }
 
136
        else
 
137
        {
 
138
            name = name.trim();
 
139
 
 
140
            if ( name.length() == 0 )
 
141
            {
 
142
                message = i18n.getString( "specify_name" );
 
143
                
 
144
                return INPUT;
 
145
            }
 
146
 
 
147
            ValidationRule match = validationRuleService.getValidationRuleByName( name );
 
148
 
 
149
            if ( match != null && ( id == null || match.getId() != id ) )
 
150
            {
 
151
                message = i18n.getString( "name_in_use" );
 
152
 
 
153
                return INPUT;
 
154
            }
 
155
        }
 
156
 
 
157
        if ( operator == null || operator.equals( NONE ) )
 
158
        {
 
159
            message = i18n.getString( "specify_operator" );
 
160
            
 
161
            return INPUT;
 
162
        }
 
163
 
 
164
        if ( leftSideExpression == null || leftSideExpression.trim().length() == 0 )
 
165
        {
 
166
            message = i18n.getString( "specify_left_side" );
 
167
            
 
168
            return INPUT;
 
169
        }
 
170
 
 
171
        Set<DataElement> leftSideDataElements = expressionService.getDataElementsInExpression( leftSideExpression );
 
172
        
 
173
        for ( DataElement element : leftSideDataElements )
 
174
        {
 
175
            if ( !element.getType().equals( DataElement.TYPE_INT ) )
 
176
            {
 
177
                message = i18n.getString( "dataelements_left_must_be_type_integers" );
 
178
                
 
179
                return INPUT;
 
180
            }
 
181
        }
 
182
 
 
183
        if ( rightSideExpression == null || rightSideExpression.trim().length() == 0 )
 
184
        {
 
185
            message = i18n.getString( "specify_right_side" );
 
186
            
 
187
            return INPUT;
 
188
        }
 
189
        
 
190
        Set<DataElement> rightSideDataElements = expressionService.getDataElementsInExpression( rightSideExpression  );
 
191
 
 
192
        for ( DataElement element : rightSideDataElements )
 
193
        {
 
194
            if ( !element.getType().equals( DataElement.TYPE_INT ) )
 
195
            {
 
196
                message = i18n.getString( "dataelements_right_must_be_type_integers" );
 
197
                
 
198
                return INPUT;
 
199
            }
 
200
        }
 
201
        
 
202
        message = i18n.getString( "everything_is_ok" );
 
203
 
 
204
        return SUCCESS;
 
205
    }
 
206
}