]> source.dussan.org Git - archiva.git/blob
9aee5081cec7adf974273ffa3f5ab4d4f713d1b9
[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 org.apache.archiva.admin.repository.RepositoryAdminException;
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
26 import org.springframework.context.annotation.Scope;
27 import org.springframework.stereotype.Controller;
28
29 /**
30  * DeleteManagedRepositoryAction
31  *
32  * @version $Id$
33  */
34 @Controller( "deleteManagedRepositoryAction" )
35 @Scope( "prototype" )
36 public class DeleteManagedRepositoryAction
37     extends AbstractManagedRepositoriesAction
38     implements Preparable
39 {
40
41
42     private ManagedRepositoryConfiguration repository;
43
44     private ManagedRepositoryConfiguration stagingRepository;
45
46     private String repoid;
47
48     // FIXME olamy use ManagedRepositoryAdmin rather tha, directly archivaConfiguration
49     public void prepare()
50     {
51         if ( StringUtils.isNotBlank( repoid ) )
52         {
53             this.repository = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid );
54             this.stagingRepository =
55                 archivaConfiguration.getConfiguration().findManagedRepositoryById( repoid + "-stage" );
56         }
57     }
58
59     public String confirmDelete()
60     {
61         if ( StringUtils.isBlank( repoid ) )
62         {
63             addActionError( "Unable to delete managed repository: repository id was blank." );
64             return ERROR;
65         }
66
67         return INPUT;
68     }
69
70     public String deleteEntry()
71     {
72         return deleteRepository( false );
73     }
74
75     public String deleteContents()
76     {
77         return deleteRepository( true );
78     }
79
80     private String deleteRepository( boolean deleteContents )
81     {
82         ManagedRepositoryConfiguration existingRepository = repository;
83         if ( existingRepository == null )
84         {
85             addActionError( "A repository with that id does not exist" );
86             return ERROR;
87         }
88
89         String result = SUCCESS;
90
91         try
92         {
93             getManagedRepositoryAdmin().deleteManagedRepository( existingRepository.getId(), getAuditInformation(),
94                                                                  deleteContents );
95         }
96         catch ( RepositoryAdminException e )
97         {
98             addActionError(
99                 "Unable to delete repository, content may already be partially removed: " + e.getMessage() );
100             log.error( e.getMessage(), e );
101             result = ERROR;
102         }
103         return result;
104     }
105
106     public ManagedRepositoryConfiguration getRepository()
107     {
108         return repository;
109     }
110
111     public void setRepository( ManagedRepositoryConfiguration repository )
112     {
113         this.repository = repository;
114     }
115
116     public String getRepoid()
117     {
118         return repoid;
119     }
120
121     public void setRepoid( String repoid )
122     {
123         this.repoid = repoid;
124     }
125 }