]> source.dussan.org Git - archiva.git/blob
5efff802b146236dbb8ef93cc5641e88dc87df26
[archiva.git] /
1 package org.apache.archiva.web.validator;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import com.opensymphony.xwork2.validator.ValidationException;
23 import com.opensymphony.xwork2.validator.ValidatorContext;
24 import com.opensymphony.xwork2.validator.validators.ValidatorSupport;
25
26 /**
27  * Validator for synced repository form. The values to be validated depends on the
28  * selected sync method to be used.
29  *
30  */
31 public class SyncedRepositoryValidator
32     extends ValidatorSupport
33 {
34
35     public void validate( Object obj )
36         throws ValidationException
37     {
38
39         String method = (String) getFieldValue( "method", obj );
40         ValidatorContext ctxt = getValidatorContext();
41
42         if ( method.equals( "rsync" ) )
43         {
44             String rsyncHost = (String) getFieldValue( "rsyncHost", obj );
45             if ( rsyncHost == null || rsyncHost.equals( "" ) )
46             {
47                 ctxt.addActionError( "Rsync host is required." );
48             }
49
50             String rsyncDirectory = (String) getFieldValue( "rsyncDirectory", obj );
51             if ( rsyncDirectory == null || rsyncDirectory.equals( "" ) )
52             {
53                 ctxt.addActionError( "Rsync directory is required." );
54             }
55
56             String rsyncMethod = (String) getFieldValue( "rsyncMethod", obj );
57             if ( rsyncMethod == null || rsyncMethod.equals( "" ) )
58             {
59                 ctxt.addActionError( "Rsync method is required." );
60             }
61             else
62             {
63                 if ( !rsyncMethod.equals( "anonymous" ) && !rsyncMethod.equals( "ssh" ) )
64                 {
65                     ctxt.addActionError( "Invalid rsync method" );
66                 }
67             }
68
69             String username = (String) getFieldValue( "username", obj );
70             if ( username == null || username.equals( "" ) )
71             {
72                 ctxt.addActionError( "Username is required." );
73             }
74
75         }
76         else if ( method.equals( "svn" ) )
77         {
78             String svnUrl = (String) getFieldValue( "svnUrl", obj );
79             if ( svnUrl == null || svnUrl.equals( "" ) )
80             {
81                 ctxt.addActionError( "SVN url is required." );
82             }
83
84             String username = (String) getFieldValue( "username", obj );
85             if ( username == null || username.equals( "" ) )
86             {
87                 ctxt.addActionError( "Username is required." );
88             }
89         }
90         else if ( method.equals( "cvs" ) )
91         {
92             String cvsRoot = (String) getFieldValue( "cvsRoot", obj );
93             if ( cvsRoot == null || cvsRoot.equals( "" ) )
94             {
95                 ctxt.addActionError( "CVS root is required." );
96             }
97         }
98         else if ( method.equals( "file" ) )
99         {
100             String directory = (String) getFieldValue( "directory", obj );
101             if ( directory == null || directory.equals( "" ) )
102             {
103                 ctxt.addActionError( "Directory is required." );
104             }
105         }
106
107         if ( ctxt.hasActionErrors() )
108         {
109             return;
110         }
111     }
112
113 }