]> source.dussan.org Git - archiva.git/blob
488db6c68707374cc066f0c67443f7b711d6ce9d
[archiva.git] /
1 package org.apache.archiva.web.action.admin.repositories;
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.Preparable;
23 import com.opensymphony.xwork2.Validateable;
24 import org.apache.archiva.admin.model.RepositoryAdminException;
25 import org.apache.archiva.admin.model.beans.ManagedRepository;
26 import org.apache.commons.lang.StringUtils;
27 import org.codehaus.redback.components.scheduler.CronExpressionValidator;
28 import org.springframework.context.annotation.Scope;
29 import org.springframework.stereotype.Controller;
30
31 import java.io.File;
32
33 /**
34  * AddManagedRepositoryAction
35  *
36  * @version $Id$
37  */
38 @Controller( "addManagedRepositoryAction" )
39 @Scope( "prototype" )
40 public class AddManagedRepositoryAction
41     extends AbstractManagedRepositoriesAction
42     implements Preparable, Validateable
43 {
44
45     private ManagedRepository repository;
46
47     private boolean stageNeeded;
48
49     private String action = "addRepository";
50
51     public void prepare()
52     {
53         this.repository = new ManagedRepository();
54         this.repository.setReleases( false );
55         this.repository.setScanned( false );
56         this.repository.setBlockRedeployments( false );
57     }
58
59     public String input()
60     {
61         this.repository.setReleases( true );
62         this.repository.setScanned( true );
63         this.repository.setBlockRedeployments( true );
64
65         return INPUT;
66     }
67
68     public String confirmAdd()
69     {
70         return save();
71     }
72
73     public String commit()
74     {
75         repository.setLocation( getRepositoryCommonValidator().removeExpressions( repository.getLocation() ) );
76
77         File location = new File( repository.getLocation() );
78         if ( location.exists() )
79         {
80             return CONFIRM;
81         }
82
83         return save();
84     }
85
86     private String save()
87     {
88         String result = SUCCESS;
89         try
90         {
91             getManagedRepositoryAdmin().addManagedRepository( repository, stageNeeded, getAuditInformation() );
92         }
93         catch ( RepositoryAdminException e )
94         {
95             log.error( e.getMessage(), e );
96             addActionError( "Check your server logs, Repository Administration Exception: " + e.getMessage() );
97             result = INPUT;
98         }
99
100         return result;
101     }
102
103     @Override
104     public void validate()
105     {
106         CronExpressionValidator validator = new CronExpressionValidator();
107
108         if ( !validator.validate( repository.getCronExpression() ) )
109         {
110             addFieldError( "repository.cronExpression", "Invalid cron expression." );
111         }
112
113         // trim all unecessary trailing/leading white-spaces; always put this statement before the closing braces(after all validation).
114         trimAllRequestParameterValues();
115     }
116
117     private void trimAllRequestParameterValues()
118     {
119         if ( StringUtils.isNotEmpty( repository.getId() ) )
120         {
121             repository.setId( repository.getId().trim() );
122         }
123
124         if ( StringUtils.isNotEmpty( repository.getName() ) )
125         {
126             repository.setName( repository.getName().trim() );
127         }
128
129         if ( StringUtils.isNotEmpty( repository.getLocation() ) )
130         {
131             repository.setLocation( repository.getLocation().trim() );
132         }
133
134         if ( StringUtils.isNotEmpty( repository.getIndexDirectory() ) )
135         {
136             repository.setIndexDirectory( repository.getIndexDirectory().trim() );
137         }
138     }
139
140     public ManagedRepository getRepository()
141     {
142         return repository;
143     }
144
145     public void setRepository( ManagedRepository repository )
146     {
147         this.repository = repository;
148     }
149
150
151     public void setStageNeeded( boolean stageNeeded )
152     {
153         this.stageNeeded = stageNeeded;
154     }
155
156     public String getAction()
157     {
158         return action;
159     }
160 }