]> source.dussan.org Git - archiva.git/blob
78a6c4fc65c07790eea2b7cae41c131f094f4809
[archiva.git] /
1 package org.apache.maven.archiva.web.action;
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 com.opensymphony.xwork2.Preparable;
24 import org.apache.archiva.audit.Auditable;
25 import org.apache.archiva.audit.AuditEvent;
26 import org.apache.archiva.stagerepository.merge.Maven2RepositoryMerger;
27 import org.apache.archiva.metadata.model.ArtifactMetadata;
28 import org.apache.archiva.metadata.repository.filter.Filter;
29 import org.apache.archiva.metadata.repository.filter.IncludesFilter;
30 import org.apache.archiva.metadata.repository.MetadataRepository;
31 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
32 import org.apache.maven.archiva.configuration.Configuration;
33 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
34
35 import java.util.List;
36
37 /**
38  * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="mergeAction" instantiation-strategy="per-lookup"
39  */
40 public class MergeAction
41     extends PlexusActionSupport
42     implements Validateable, Preparable, Auditable
43
44 {
45     /**
46      * @plexus.requirement role="org.apache.archiva.stagerepository.merge.RepositoryMerger" role-hint="maven2"
47      */
48     private Maven2RepositoryMerger repositoryMerger;
49
50     /**
51      * @plexus.requirement role-hint="default"
52      */
53     private ArchivaConfiguration configuration;
54
55     /**
56      * @plexus.requirement role-hint="default"
57      */
58     private MetadataRepository metadataRepository;
59
60     private ManagedRepositoryConfiguration repository;
61
62     private String repoid;
63
64     private String targetRepoId;
65
66     private final String action = "merge";
67
68     private final String noConflicts = "NO CONFLICTS";
69
70     private final String hasConflicts = "CONFLICTS";
71
72     private List<ArtifactMetadata> conflictSourceArtifacts;
73
74     public String getConflicts()
75     {
76         targetRepoId = repoid + "-stage";
77         Configuration config = configuration.getConfiguration();
78         ManagedRepositoryConfiguration targetRepoConfig = config.findManagedRepositoryById( targetRepoId );
79
80         if ( targetRepoConfig != null )
81         {
82             return hasConflicts;
83
84         }
85         else
86         {
87             return ERROR;
88         }
89     }
90
91     public String doMerge()
92         throws Exception
93     {
94         try
95         {
96             List<ArtifactMetadata> sourceArtifacts = metadataRepository.getArtifacts( targetRepoId );
97             repositoryMerger.merge( targetRepoId, repoid );
98             triggerAuditEvent( targetRepoId, "file-eshan", AuditEvent.MERGING_REPOSITORIES );
99
100             for ( ArtifactMetadata metadata : sourceArtifacts )
101             {
102                 triggerAuditEvent( repoid, metadata.getId(), AuditEvent.MERGING_REPOSITORIES );
103             }
104             return SUCCESS;
105         }
106         catch ( Exception ex )
107         {
108             return ERROR;
109         }
110     }
111
112     public String mergeBySkippingConflicts()
113     {
114         try
115         {
116             List<ArtifactMetadata> sourceArtifacts = metadataRepository.getArtifacts( targetRepoId );
117             sourceArtifacts.removeAll( conflictSourceArtifacts );
118             Filter<ArtifactMetadata> artifactsWithOutConflicts =
119                 new IncludesFilter<ArtifactMetadata>( sourceArtifacts );
120             repositoryMerger.merge( targetRepoId, repoid, artifactsWithOutConflicts );
121
122             for ( ArtifactMetadata metadata : sourceArtifacts )
123             {
124                 triggerAuditEvent( repoid, metadata.getId(), AuditEvent.MERGING_REPOSITORIES );
125             }
126             return SUCCESS;
127
128         }
129         catch ( Exception ex )
130         {
131             return ERROR;
132         }
133     }
134
135     public String mergeWithOutConlficts()
136     {
137
138         targetRepoId = repoid + "-stage";
139
140         try
141         {
142             conflictSourceArtifacts = repositoryMerger.getConflictsartifacts( targetRepoId, repoid );
143         }
144         catch ( Exception e )
145         {
146             return ERROR;
147         }
148         
149         return SUCCESS;
150     }
151
152     public ManagedRepositoryConfiguration getRepository()
153     {
154         return repository;
155     }
156
157     public void setRepository( ManagedRepositoryConfiguration repository )
158     {
159         this.repository = repository;
160     }
161
162     public void prepare()
163         throws Exception
164     {
165         targetRepoId = repoid + "-stage";
166         conflictSourceArtifacts = repositoryMerger.getConflictsartifacts( targetRepoId, repoid );
167         this.repository = new ManagedRepositoryConfiguration();
168     }
169
170     public String getTargetRepoId()
171     {
172         return targetRepoId;
173     }
174
175     public void setTargetRepoId( String targetRepoId )
176     {
177         this.targetRepoId = targetRepoId;
178     }
179
180     public String getRepoid()
181     {
182         return repoid;
183     }
184
185     public void setRepoid( String repoid )
186     {
187         this.repoid = repoid;
188     }
189
190     public List<ArtifactMetadata> getConflictSourceArtifacts()
191     {
192         return conflictSourceArtifacts;
193     }
194
195     public void setConflictSourceArtifacts( List<ArtifactMetadata> conflictSourceArtifacts )
196     {
197         this.conflictSourceArtifacts = conflictSourceArtifacts;
198     }
199 }
200