]> source.dussan.org Git - archiva.git/blob
71d6c3bc8e8763dd06ea962225b5333e26aee271
[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     private String groupId;\r
58 \r
59     private String artifactId;\r
60 \r
61     private String version;\r
62 \r
63     private String classifier;\r
64 \r
65     private String type;\r
66 \r
67 \r
68     public void prepare()\r
69     {\r
70         this.legacyArtifactPath = new LegacyArtifactPath();\r
71     }\r
72 \r
73     public String input()\r
74     {\r
75         return INPUT;\r
76     }\r
77 \r
78     public String commit()\r
79     {\r
80         this.legacyArtifactPath.setArtifact(\r
81             this.groupId + ":" + this.artifactId + ":" +  this.classifier + ":" +  this.version + ":" + this.type );\r
82 \r
83         // Check the proposed Artifact macthes the path\r
84         ArtifactReference artifact = new ArtifactReference();\r
85 \r
86                 artifact.setGroupId( this.groupId );\r
87                 artifact.setArtifactId( this.artifactId );\r
88                 artifact.setClassifier( this.classifier );\r
89                 artifact.setVersion( this.version );\r
90                 artifact.setType( this.type );\r
91 \r
92         String path = repositoryContent.toPath( artifact );\r
93         if ( ! path.equals( this.legacyArtifactPath.getPath() ) )\r
94         {\r
95             addActionError( "artifact reference does not match the initial path : " + path );\r
96             return ERROR;\r
97         }\r
98 \r
99         Configuration configuration = archivaConfiguration.getConfiguration();\r
100         configuration.addLegacyArtifactPath( legacyArtifactPath );\r
101         return saveConfiguration( configuration );\r
102     }\r
103 \r
104     public LegacyArtifactPath getLegacyArtifactPath()\r
105     {\r
106         return legacyArtifactPath;\r
107     }\r
108 \r
109     public void setLegacyArtifactPath( LegacyArtifactPath legacyArtifactPath )\r
110     {\r
111         this.legacyArtifactPath = legacyArtifactPath;\r
112     }\r
113 \r
114     protected String saveConfiguration( Configuration configuration )\r
115     {\r
116         try\r
117         {\r
118             archivaConfiguration.save( configuration );\r
119             addActionMessage( "Successfully saved configuration" );\r
120         }\r
121         catch ( IndeterminateConfigurationException e )\r
122         {\r
123             addActionError( e.getMessage() );\r
124             return INPUT;\r
125         }\r
126         catch ( RegistryException e )\r
127         {\r
128             addActionError( "Configuration Registry Exception: " + e.getMessage() );\r
129             return INPUT;\r
130         }\r
131 \r
132         return SUCCESS;\r
133     }\r
134 \r
135     public String getGroupId()\r
136     {\r
137         return groupId;\r
138     }\r
139 \r
140     public void setGroupId( String groupId )\r
141     {\r
142         this.groupId = groupId;\r
143     }\r
144 \r
145     public String getArtifactId()\r
146     {\r
147         return artifactId;\r
148     }\r
149 \r
150     public void setArtifactId( String artifactId )\r
151     {\r
152         this.artifactId = artifactId;\r
153     }\r
154 \r
155     public String getVersion()\r
156     {\r
157         return version;\r
158     }\r
159 \r
160     public void setVersion( String version )\r
161     {\r
162         this.version = version;\r
163     }\r
164 \r
165     public String getClassifier()\r
166     {\r
167         return classifier;\r
168     }\r
169 \r
170     public void setClassifier( String classifier )\r
171     {\r
172         this.classifier = classifier;\r
173     }\r
174 \r
175     public String getType()\r
176     {\r
177         return type;\r
178     }\r
179 \r
180     public void setType( String type )\r
181     {\r
182         this.type = type;\r
183     }\r
184 }\r