]> source.dussan.org Git - archiva.git/blob
647cae7aea5c8896126d7bf4bd635714cfece2be
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.appearance;
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.Validateable;
23 import org.apache.archiva.admin.repository.RepositoryAdminException;
24 import org.apache.archiva.admin.repository.admin.OrganisationInformation;
25 import org.apache.archiva.security.common.ArchivaRoleConstants;
26 import org.apache.commons.lang.StringUtils;
27 import org.codehaus.plexus.redback.rbac.Resource;
28 import org.codehaus.redback.integration.interceptor.SecureAction;
29 import org.codehaus.redback.integration.interceptor.SecureActionBundle;
30 import org.codehaus.redback.integration.interceptor.SecureActionException;
31 import org.springframework.context.annotation.Scope;
32 import org.springframework.stereotype.Controller;
33
34 /**
35  * @version $Id: ConfigurationAction.java 480950 2006-11-30 14:58:35Z evenisse $
36  */
37 @Controller( "editOrganisationInfo" )
38 @Scope( "prototype" )
39 public class EditOrganisationInfoAction
40     extends AbstractAppearanceAction
41     implements SecureAction, Validateable
42 {
43     @Override
44     public String execute()
45         throws RepositoryAdminException
46     {
47
48         OrganisationInformation orgInfo = archivaAdministration.getOrganisationInformation();
49
50         orgInfo.setLogoLocation( getOrganisationLogo() );
51         orgInfo.setName( getOrganisationName() );
52         orgInfo.setUrl( getOrganisationUrl() );
53
54         archivaAdministration.setOrganisationInformation( orgInfo );
55         return SUCCESS;
56     }
57
58     public SecureActionBundle getSecureActionBundle()
59         throws SecureActionException
60     {
61         SecureActionBundle bundle = new SecureActionBundle();
62         bundle.setRequiresAuthentication( true );
63         bundle.addRequiredAuthorization( ArchivaRoleConstants.OPERATION_MANAGE_CONFIGURATION, Resource.GLOBAL );
64         return bundle;
65     }
66
67     public void validate()
68     {
69         // trim all unecessary trailing/leading white-spaces; always put this statement before the closing braces(after all validation).
70         trimAllRequestParameterValues();
71     }
72
73     private void trimAllRequestParameterValues()
74     {
75         if ( StringUtils.isNotEmpty( super.getOrganisationName() ) )
76         {
77             super.setOrganisationName( super.getOrganisationName().trim() );
78         }
79
80         if ( StringUtils.isNotEmpty( super.getOrganisationUrl() ) )
81         {
82             super.setOrganisationUrl( super.getOrganisationUrl().trim() );
83         }
84
85         if ( StringUtils.isNotEmpty( super.getOrganisationLogo() ) )
86         {
87             super.setOrganisationLogo( super.getOrganisationLogo().trim() );
88         }
89     }
90 }