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