]> source.dussan.org Git - archiva.git/blob
cfb095a1d912c5b55d33565aa17a847d056ebee4
[archiva.git] /
1 package org.apache.archiva.web.action.admin.legacy;
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.model.RepositoryAdminException;
24 import org.apache.archiva.admin.model.admin.ArchivaAdministration;
25 import org.apache.archiva.admin.model.beans.LegacyArtifactPath;
26 import org.apache.archiva.security.common.ArchivaRoleConstants;
27 import org.apache.archiva.web.util.ContextUtils;
28 import org.apache.archiva.web.action.AbstractActionSupport;
29 import org.apache.struts2.interceptor.ServletRequestAware;
30 import org.apache.archiva.redback.rbac.Resource;
31 import org.apache.archiva.redback.integration.interceptor.SecureAction;
32 import org.apache.archiva.redback.integration.interceptor.SecureActionBundle;
33 import org.apache.archiva.redback.integration.interceptor.SecureActionException;
34 import org.springframework.context.annotation.Scope;
35 import org.springframework.stereotype.Controller;
36
37 import javax.inject.Inject;
38 import javax.servlet.http.HttpServletRequest;
39 import java.util.ArrayList;
40 import java.util.List;
41
42 /**
43  * Shows the LegacyArtifactPath Tab for the administrator.
44  *
45  * @since 1.1
46  */
47 @Controller( "legacyArtifactPathAction" )
48 @Scope( "prototype" )
49 public class LegacyArtifactPathAction
50     extends AbstractActionSupport
51     implements SecureAction, ServletRequestAware, Preparable
52 {
53
54     @Inject
55     private ArchivaAdministration archivaAdministration;
56
57     private List<LegacyArtifactPath> legacyArtifactPaths;
58
59     /**
60      * Used to construct the repository WebDAV URL in the repository action.
61      */
62     private String baseUrl;
63
64     public void setServletRequest( HttpServletRequest request )
65     {
66         // TODO: is there a better way to do this?
67         this.baseUrl = ContextUtils.getBaseURL( request, "repository" );
68     }
69
70     public SecureActionBundle getSecureActionBundle()
71         throws SecureActionException
72     {
73         SecureActionBundle bundle = new SecureActionBundle();
74
75         bundle.setRequiresAuthentication( true );
76         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
77
78         return bundle;
79     }
80
81     public void prepare()
82         throws RepositoryAdminException
83     {
84         legacyArtifactPaths = new ArrayList<LegacyArtifactPath>( getArchivaAdministration().getLegacyArtifactPaths() );
85     }
86
87     public List<LegacyArtifactPath> getLegacyArtifactPaths()
88     {
89         return legacyArtifactPaths;
90     }
91
92     public String getBaseUrl()
93     {
94         return baseUrl;
95     }
96
97     public ArchivaAdministration getArchivaAdministration()
98     {
99         return archivaAdministration;
100     }
101
102     public void setArchivaAdministration( ArchivaAdministration archivaAdministration )
103     {
104         this.archivaAdministration = archivaAdministration;
105     }
106 }