]> source.dussan.org Git - archiva.git/blob
162fa78ca0cb9464e4148ae2be64bffaf11ef203
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.legacy;\r
2 \r
3 /*\r
4  * Licensed to the Apache Software Foundation (ASF) under one\r
5  * or more contributor license agreements.  See the NOTICE file\r
6  * distributed with this work for additional information\r
7  * regarding copyright ownership.  The ASF licenses this file\r
8  * to you under the Apache License, Version 2.0 (the\r
9  * "License"); you may not use this file except in compliance\r
10  * with the License.  You may obtain a copy of the License at\r
11  *\r
12  *  http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing,\r
15  * software distributed under the License is distributed on an\r
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r
17  * KIND, either express or implied.  See the License for the\r
18  * specific language governing permissions and limitations\r
19  * under the License.\r
20  */\r
21 \r
22 import org.apache.maven.archiva.configuration.ArchivaConfiguration;\r
23 import org.apache.maven.archiva.configuration.Configuration;\r
24 import org.apache.maven.archiva.configuration.IndeterminateConfigurationException;\r
25 import org.apache.maven.archiva.configuration.LegacyArtifactPath;\r
26 import org.apache.maven.archiva.model.ArtifactReference;\r
27 import org.apache.maven.archiva.repository.ManagedRepositoryContent;\r
28 import org.codehaus.plexus.registry.RegistryException;\r
29 import org.codehaus.plexus.xwork.action.PlexusActionSupport;\r
30 \r
31 import com.opensymphony.webwork.components.ActionError;\r
32 import com.opensymphony.xwork.Preparable;\r
33 \r
34 /**\r
35  * Add a LegacyArtifactPath to archiva configuration\r
36  *\r
37  * @since 1.1\r
38  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="addLegacyArtifactPathAction"\r
39  */\r
40 public class AddLegacyArtifactPathAction\r
41     extends PlexusActionSupport\r
42     implements Preparable\r
43 {\r
44     /**\r
45      * @plexus.requirement\r
46      */\r
47     private ArchivaConfiguration archivaConfiguration;\r
48 \r
49     /**\r
50      * @plexus.requirement role-hint="legacy"\r
51      */\r
52     private ManagedRepositoryContent repositoryContent;\r
53 \r
54 \r
55     private LegacyArtifactPath legacyArtifactPath;\r
56 \r
57 \r
58     public void prepare()\r
59     {\r
60         this.legacyArtifactPath = new LegacyArtifactPath();\r
61     }\r
62 \r
63     public String input()\r
64     {\r
65         return INPUT;\r
66     }\r
67 \r
68     public String commit()\r
69     {\r
70         ArtifactReference artifact = this.legacyArtifactPath.getArtifactReference();\r
71         String path = repositoryContent.toPath( artifact );\r
72         if ( ! path.equals( this.legacyArtifactPath.getPath() ) )\r
73         {\r
74             addActionError( "artifact reference does not match the initial path : " + path );\r
75             return ERROR;\r
76         }\r
77 \r
78         Configuration configuration = archivaConfiguration.getConfiguration();\r
79         configuration.addLegacyArtifactPath( legacyArtifactPath );\r
80         return saveConfiguration( configuration );\r
81     }\r
82 \r
83     public LegacyArtifactPath getLegacyArtifactPath()\r
84     {\r
85         return legacyArtifactPath;\r
86     }\r
87 \r
88     public void setLegacyArtifactPath( LegacyArtifactPath legacyArtifactPath )\r
89     {\r
90         this.legacyArtifactPath = legacyArtifactPath;\r
91     }\r
92 \r
93     protected String saveConfiguration( Configuration configuration )\r
94     {\r
95         try\r
96         {\r
97             archivaConfiguration.save( configuration );\r
98             addActionMessage( "Successfully saved configuration" );\r
99         }\r
100         catch ( IndeterminateConfigurationException e )\r
101         {\r
102             addActionError( e.getMessage() );\r
103             return INPUT;\r
104         }\r
105         catch ( RegistryException e )\r
106         {\r
107             addActionError( "Configuration Registry Exception: " + e.getMessage() );\r
108             return INPUT;\r
109         }\r
110 \r
111         return SUCCESS;\r
112     }\r
113 }\r