]> source.dussan.org Git - archiva.git/blob
d27eea503cced2919dccfc625bd1e096cc5ffa95
[archiva.git] /
1 package org.apache.maven.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.audit.AuditEvent;
25 import org.apache.archiva.metadata.repository.stats.RepositoryStatisticsManager;
26 import org.apache.commons.lang.StringUtils;
27 import org.apache.maven.archiva.configuration.Configuration;
28 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
29 import org.codehaus.plexus.redback.role.RoleManagerException;
30 import org.codehaus.plexus.scheduler.CronExpressionValidator;
31
32 import java.io.File;
33 import java.io.IOException;
34
35 /**
36  * AddManagedRepositoryAction
37  *
38  * @version $Id$
39  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="editManagedRepositoryAction" instantiation-strategy="per-lookup"
40  */
41 public class EditManagedRepositoryAction
42     extends AbstractManagedRepositoriesAction
43     implements Preparable, Validateable
44 {
45     /**
46      * The model for this action.
47      */
48     private ManagedRepositoryConfiguration repository;
49
50     private String repoid;
51
52     private final String action = "editRepository";
53
54     /**
55      * @plexus.requirement
56      */
57     private RepositoryStatisticsManager repositoryStatisticsManager;
58
59     public void prepare()
60     {
61         if ( StringUtils.isNotBlank( repoid ) )
62         {
63             repository = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid );
64         }
65         else if ( repository != null )
66         {
67             repository.setReleases( false );
68             repository.setScanned( false );
69         }
70     }
71
72     public String input()
73     {
74         if ( repository == null )
75         {
76             addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
77             return ERROR;
78         }
79
80         return INPUT;
81     }
82
83     public String confirmUpdate()
84     {
85         // location was changed
86         return save( true );
87     }
88
89     public String commit()
90     {
91         ManagedRepositoryConfiguration existingConfig =
92             archivaConfiguration.getConfiguration().findManagedRepositoryById( repository.getId() );
93
94         boolean resetStats = false;
95
96         // check if the location was changed
97         if ( !StringUtils.equalsIgnoreCase( existingConfig.getLocation().trim(), repository.getLocation().trim() ) )
98         {
99             resetStats = true;
100
101             File dir = new File( repository.getLocation() );
102             if ( dir.exists() )
103             {
104                 return CONFIRM;
105             }
106         }
107
108         return save( resetStats );
109     }
110
111     private String save( boolean resetStats )
112     {
113         // Ensure that the fields are valid.
114         Configuration configuration = archivaConfiguration.getConfiguration();
115
116         // We are in edit mode, remove the old repository configuration.
117         removeRepository( repository.getId(), configuration );
118
119         // Save the repository configuration.
120         String result;
121         try
122         {
123             addRepository( repository, configuration );
124             triggerAuditEvent( repository.getId(), null, AuditEvent.MODIFY_MANAGED_REPO );
125             addRepositoryRoles( repository );
126             result = saveConfiguration( configuration );
127             if ( resetStats )
128             {
129                 resetStatistics();
130             }
131         }
132         catch ( IOException e )
133         {
134             addActionError( "I/O Exception: " + e.getMessage() );
135             result = ERROR;
136         }
137         catch ( RoleManagerException e )
138         {
139             addActionError( "Role Manager Exception: " + e.getMessage() );
140             result = ERROR;
141         }
142
143         return result;
144     }
145
146     @Override
147     public void validate()
148     {
149         CronExpressionValidator validator = new CronExpressionValidator();
150
151         if ( !validator.validate( repository.getRefreshCronExpression() ) )
152         {
153             addFieldError( "repository.refreshCronExpression", "Invalid cron expression." );
154         }
155     }
156
157     private void resetStatistics()
158     {
159         repositoryStatisticsManager.deleteStatistics( repository.getId() );
160         }
161
162     public String getRepoid()
163     {
164         return repoid;
165     }
166
167     public void setRepoid( String repoid )
168     {
169         this.repoid = repoid;
170     }
171
172     public ManagedRepositoryConfiguration getRepository()
173     {
174         return repository;
175     }
176
177     public void setRepository( ManagedRepositoryConfiguration repository )
178     {
179         this.repository = repository;
180     }
181
182     public String getAction()
183     {
184         return action;
185     }
186
187     public void setRepositoryStatisticsManager( RepositoryStatisticsManager repositoryStatisticsManager )
188     {
189         this.repositoryStatisticsManager = repositoryStatisticsManager;
190     }
191 }