]> source.dussan.org Git - archiva.git/blob
a1e37046e2571e2aa285c0c7f7e8437a5799865d
[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.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
27 import org.codehaus.plexus.redback.role.RoleManagerException;
28 import org.codehaus.plexus.scheduler.CronExpressionValidator;
29 import java.io.File;
30 import java.io.IOException;
31
32 /**
33  * AddManagedRepositoryAction 
34  *
35  * @version $Id$
36  * 
37  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="addManagedRepositoryAction"
38  */
39 public class AddManagedRepositoryAction
40     extends AbstractManagedRepositoriesAction
41     implements Preparable, Validateable
42 {
43     /**
44      * The model for this action.
45      */
46     private ManagedRepositoryConfiguration repository;
47     
48     private String action = "addRepository";
49
50     public void prepare()
51     {
52         this.repository = new ManagedRepositoryConfiguration();
53         this.repository.setReleases( false );
54         this.repository.setScanned( false );
55     }
56
57     public String input()
58     {
59         this.repository.setReleases( true );
60         this.repository.setScanned( true );
61
62         return INPUT;
63     }
64      
65     public String confirmAdd()
66     {
67         return save();
68     }
69     
70     public String commit()
71     {
72         File location = new File( repository.getLocation() );
73         if( location.exists() )
74         {   
75             return CONFIRM;
76         }
77         
78         return save();
79     }
80     
81     private String save()
82     {
83         Configuration configuration = archivaConfiguration.getConfiguration();
84                 
85         String result;
86         try
87         {
88             addRepository( repository, configuration );
89             addRepositoryRoles( repository );
90             result = saveConfiguration( configuration );
91         }
92         catch ( RoleManagerException e )
93         {            
94             addActionError( "Role Manager Exception: " + e.getMessage() );
95             result = INPUT;
96         }
97         catch ( IOException e )
98         {         
99             addActionError( "Role Manager Exception: " + e.getMessage() );
100             result = INPUT;
101         }
102
103         return result;
104     }
105
106     @Override
107     public void validate()
108     {
109         Configuration config = archivaConfiguration.getConfiguration();
110
111         CronExpressionValidator validator = new CronExpressionValidator();
112         String repoId = repository.getId();
113
114         if ( config.getManagedRepositoriesAsMap().containsKey( repoId ) )
115         {
116             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
117                 + "], that id already exists as a managed repository." );
118         }
119         else if ( config.getRemoteRepositoriesAsMap().containsKey( repoId ) )
120         {
121             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
122                 + "], that id already exists as a remote repository." );
123         }
124         else if( config.getRepositoryGroupsAsMap().containsKey( repoId ) )
125         {
126             addFieldError( "repository.id", "Unable to add new repository with id [" + repoId
127                + "], that id already exists as a repository group." );
128         }
129         
130         if ( !validator.validate( repository.getRefreshCronExpression() ) )
131         {
132             addFieldError( "repository.refreshCronExpression", "Invalid cron expression." );
133         }
134     }
135
136     public ManagedRepositoryConfiguration getRepository()
137     {
138         return repository;
139     }
140
141     public void setRepository( ManagedRepositoryConfiguration repository )
142     {
143         this.repository = repository;
144     }
145     
146     public String getAction()
147     {
148         return action;
149     }
150 }