]> source.dussan.org Git - archiva.git/blob
ade35bb7f63630650f408a6ee708000475ad82a6
[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.xwork.Preparable;
23 import com.opensymphony.xwork.Validateable;
24
25 import org.apache.commons.lang.StringUtils;
26 import org.apache.maven.archiva.configuration.Configuration;
27 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
28 import org.codehaus.plexus.redback.role.RoleManagerException;
29 import org.codehaus.plexus.scheduler.CronExpressionValidator;
30
31 import java.io.IOException;
32
33 /**
34  * AddManagedRepositoryAction 
35  *
36  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
37  * @version $Id$
38  * 
39  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="editManagedRepositoryAction"
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     public void prepare()
53     {
54         if ( StringUtils.isNotBlank( repoid ) )
55         {
56             repository = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid );
57         }
58         else if ( repository != null )
59         {
60             repository.setReleases( false );
61             repository.setScanned( false );
62         }
63     }
64
65     public String input()
66     {
67         if ( repository == null )
68         {
69             addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
70             return ERROR;
71         }
72
73         return INPUT;
74     }
75
76     public String commit()
77     {
78         // Ensure that the fields are valid.
79         Configuration configuration = archivaConfiguration.getConfiguration();
80
81         // We are in edit mode, remove the old repository configuration.
82         removeRepository( repository.getId(), configuration );
83
84         // Save the repository configuration.
85         String result;
86         try
87         {
88             addRepository( repository, configuration );
89             addRepositoryRoles( repository );
90             result = saveConfiguration( configuration );
91         }
92         catch ( IOException e )
93         {
94             addActionError( "I/O Exception: " + e.getMessage() );
95             result = ERROR;
96         }
97         catch ( RoleManagerException e )
98         {
99             addActionError( "Role Manager Exception: " + e.getMessage() );
100             result = ERROR;
101         }
102
103         return result;
104     }
105     
106     @Override
107     public void validate()
108     {
109         CronExpressionValidator validator = new CronExpressionValidator();
110
111         if ( !validator.validate( repository.getRefreshCronExpression() ) )
112         {
113             addFieldError( "repository.refreshCronExpression", "Invalid cron expression." );
114         }
115     }
116
117     public String getRepoid()
118     {
119         return repoid;
120     }
121
122     public void setRepoid( String repoid )
123     {
124         this.repoid = repoid;
125     }
126
127     public ManagedRepositoryConfiguration getRepository()
128     {
129         return repository;
130     }
131
132     public void setRepository( ManagedRepositoryConfiguration repository )
133     {
134         this.repository = repository;
135     }
136 }