]> source.dussan.org Git - archiva.git/blob
087945a78cb123ae980050244ca539411e7f9e5a
[archiva.git] /
1 package org.apache.archiva.web.action.admin.networkproxies;
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 import org.apache.archiva.admin.model.RepositoryAdminException;
25 import org.apache.archiva.admin.model.beans.NetworkProxy;
26 import org.apache.archiva.admin.model.networkproxy.NetworkProxyAdmin;
27 import org.apache.archiva.security.common.ArchivaRoleConstants;
28 import org.apache.commons.lang.StringUtils;
29 import org.apache.archiva.web.action.AbstractActionSupport;
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
39 /**
40  * ConfigureNetworkProxyAction
41  *
42  *
43  */
44 @Controller( "configureNetworkProxyAction" )
45 @Scope( "prototype" )
46 public class ConfigureNetworkProxyAction
47     extends AbstractActionSupport
48     implements SecureAction, Preparable, Validateable
49 {
50
51     @Inject
52     private NetworkProxyAdmin networkProxyAdmin;
53
54     private String mode;
55
56     private String proxyid;
57
58     private NetworkProxy proxy;
59
60     public String add()
61     {
62         this.mode = "add";
63         return INPUT;
64     }
65
66     public String confirm()
67     {
68         return INPUT;
69     }
70
71     public String delete()
72         throws RepositoryAdminException
73     {
74
75         String id = getProxyid();
76         if ( StringUtils.isBlank( id ) )
77         {
78             addActionError( "Unable to delete network proxy with blank id." );
79             return SUCCESS;
80         }
81
82         NetworkProxy networkProxy = getNetworkProxyAdmin().getNetworkProxy( id );
83         if ( networkProxy == null )
84         {
85             addActionError( "Unable to remove network proxy, proxy with id [" + id + "] not found." );
86             return SUCCESS;
87         }
88
89         getNetworkProxyAdmin().deleteNetworkProxy( id, getAuditInformation() );
90         addActionMessage( "Successfully removed network proxy [" + id + "]" );
91         return SUCCESS;
92     }
93
94     public String edit()
95     {
96         this.mode = "edit";
97         return INPUT;
98     }
99
100     public String getMode()
101     {
102         return mode;
103     }
104
105     public NetworkProxy getProxy()
106     {
107         return proxy;
108     }
109
110     public String getProxyid()
111     {
112         return proxyid;
113     }
114
115     public SecureActionBundle getSecureActionBundle()
116         throws SecureActionException
117     {
118         SecureActionBundle bundle = new SecureActionBundle();
119
120         bundle.setRequiresAuthentication( true );
121         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
122
123         return bundle;
124     }
125
126     public String input()
127     {
128         return INPUT;
129     }
130
131     public void prepare()
132         throws Exception
133     {
134         String id = getProxyid();
135
136         if ( StringUtils.isNotBlank( id ) )
137         {
138             proxy = findNetworkProxy( id );
139         }
140
141         if ( proxy == null )
142         {
143             proxy = new NetworkProxy();
144         }
145     }
146
147     public String save()
148         throws RepositoryAdminException
149     {
150         String mode = getMode();
151
152         String id = getProxy().getId();
153
154         if ( StringUtils.equalsIgnoreCase( "edit", mode ) )
155         {
156             getNetworkProxyAdmin().updateNetworkProxy( proxy, getAuditInformation() );
157         }
158         else
159         {
160             getNetworkProxyAdmin().addNetworkProxy( proxy, getAuditInformation() );
161         }
162
163         return SUCCESS;
164     }
165
166     public void validate()
167     {
168         // trim all unecessary trailing/leading white-spaces; always put this statement before the closing braces(after all validation).
169         trimAllRequestParameterValues();
170     }
171
172     public void setMode( String mode )
173     {
174         this.mode = mode;
175     }
176
177     public void setProxy( NetworkProxy proxy )
178     {
179         this.proxy = proxy;
180     }
181
182     public void setProxyid( String proxyid )
183     {
184         this.proxyid = proxyid;
185     }
186
187
188     private NetworkProxy findNetworkProxy( String id )
189         throws RepositoryAdminException
190     {
191         return getNetworkProxyAdmin().getNetworkProxy( id );
192     }
193
194     private void trimAllRequestParameterValues()
195     {
196         if ( StringUtils.isNotEmpty( proxy.getId() ) )
197         {
198             proxy.setId( proxy.getId().trim() );
199         }
200
201         if ( StringUtils.isNotEmpty( proxy.getHost() ) )
202         {
203             proxy.setHost( proxy.getHost().trim() );
204         }
205
206         if ( StringUtils.isNotEmpty( proxy.getPassword() ) )
207         {
208             proxy.setPassword( proxy.getPassword().trim() );
209         }
210
211         if ( StringUtils.isNotEmpty( proxy.getProtocol() ) )
212         {
213             proxy.setProtocol( proxy.getProtocol().trim() );
214         }
215
216         if ( StringUtils.isNotEmpty( proxy.getUsername() ) )
217         {
218             proxy.setUsername( proxy.getUsername().trim() );
219         }
220     }
221
222     public NetworkProxyAdmin getNetworkProxyAdmin()
223     {
224         return networkProxyAdmin;
225     }
226
227     public void setNetworkProxyAdmin( NetworkProxyAdmin networkProxyAdmin )
228     {
229         this.networkProxyAdmin = networkProxyAdmin;
230     }
231 }
232