]> source.dussan.org Git - archiva.git/blob
90bea2e73b7bb8b3d0f3a4f5e7b48d0d49518648
[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
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.File;
32 import java.io.IOException;
33
34 /**
35  * AddManagedRepositoryAction 
36  *
37  * @version $Id$
38  * 
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     public void prepare()
55     {
56         if ( StringUtils.isNotBlank( repoid ) )
57         {
58             repository = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid );
59         }
60         else if ( repository != null )
61         {
62             repository.setReleases( false );
63             repository.setScanned( false );
64         }
65     }
66
67     public String input()
68     {
69         if ( repository == null )
70         {
71             addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
72             return ERROR;
73         }
74
75         return INPUT;
76     }
77
78     public String confirmUpdate()
79     {
80         return save();
81     }
82     
83     public String commit()
84     {   
85         ManagedRepositoryConfiguration existingConfig =
86             archivaConfiguration.getConfiguration().findManagedRepositoryById( repository.getId() );
87         
88         // check if the location was changed
89         if( !StringUtils.equalsIgnoreCase( existingConfig.getLocation().trim(), repository.getLocation().trim() ) )
90         {
91             File dir = new File( repository.getLocation() );
92             if( dir.exists() )
93             {
94                 return CONFIRM;
95             }
96         }
97         
98         return save();
99     }
100     
101     private String save()
102     {
103         // Ensure that the fields are valid.
104         Configuration configuration = archivaConfiguration.getConfiguration();
105         
106         // We are in edit mode, remove the old repository configuration.
107         removeRepository( repository.getId(), configuration );
108
109         // Save the repository configuration.
110         String result;
111         try
112         {
113             addRepository( repository, configuration );
114             addRepositoryRoles( repository );
115             result = saveConfiguration( configuration );
116         }
117         catch ( IOException e )
118         {
119             addActionError( "I/O Exception: " + e.getMessage() );
120             result = ERROR;
121         }
122         catch ( RoleManagerException e )
123         {
124             addActionError( "Role Manager Exception: " + e.getMessage() );
125             result = ERROR;
126         }
127
128         return result;
129     }
130     
131     @Override
132     public void validate()
133     {
134         CronExpressionValidator validator = new CronExpressionValidator();
135
136         if ( !validator.validate( repository.getRefreshCronExpression() ) )
137         {
138             addFieldError( "repository.refreshCronExpression", "Invalid cron expression." );
139         }
140     }
141
142     public String getRepoid()
143     {
144         return repoid;
145     }
146
147     public void setRepoid( String repoid )
148     {
149         this.repoid = repoid;
150     }
151
152     public ManagedRepositoryConfiguration getRepository()
153     {
154         return repository;
155     }
156
157     public void setRepository( ManagedRepositoryConfiguration repository )
158     {
159         this.repository = repository;
160     }
161     
162     public String getAction()
163     {
164         return action;
165     }
166 }