]> source.dussan.org Git - archiva.git/blob
b50bf0ac977a60996650aa42084a33bc26a47de0
[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( targetRepoId, 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
125                 triggerAuditEvent( targetRepoId, metadata.getId(), AuditEvent.MERGING_REPOSITORIES );
126 //
127             }
128             return SUCCESS;
129
130         }
131         catch ( Exception ex )
132         {
133             return ERROR;
134         }
135     }
136
137     public String mergeWithOutConlficts()
138     {
139
140         targetRepoId = repoid + "-stage";
141
142         try
143         {
144             conflictSourceArtifacts = repositoryMerger.getConflictsartifacts( targetRepoId, repoid );
145         }
146         catch ( Exception e )
147         {
148             return ERROR;
149         }
150         return SUCCESS;
151     }
152
153     public ManagedRepositoryConfiguration getRepository()
154     {
155         return repository;
156     }
157
158     public void setRepository( ManagedRepositoryConfiguration repository )
159     {
160         this.repository = repository;
161     }
162
163     public void prepare()
164         throws Exception
165     {
166         targetRepoId = repoid + "-stage";
167         conflictSourceArtifacts = repositoryMerger.getConflictsartifacts( targetRepoId, repoid );
168         this.repository = new ManagedRepositoryConfiguration();
169     }
170
171     public String getTargetRepoId()
172     {
173         return targetRepoId;
174     }
175
176     public void setTargetRepoId( String targetRepoId )
177     {
178         this.targetRepoId = targetRepoId;
179     }
180
181     public String getRepoid()
182     {
183         return repoid;
184     }
185
186     public void setRepoid( String repoid )
187     {
188         this.repoid = repoid;
189     }
190
191     public List<ArtifactMetadata> getConflictSourceArtifacts()
192     {
193         return conflictSourceArtifacts;
194     }
195
196     public void setConflictSourceArtifacts( List<ArtifactMetadata> conflictSourceArtifacts )
197     {
198         this.conflictSourceArtifacts = conflictSourceArtifacts;
199     }
200 }
201