]> source.dussan.org Git - archiva.git/blob
40fe9baab307a029230db82f9bd72740316e01ce
[archiva.git] /
1 package org.apache.archiva.admin.repository;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.AuditInformation;
22 import org.apache.archiva.audit.AuditEvent;
23 import org.apache.archiva.audit.AuditListener;
24 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.IndeterminateConfigurationException;
27 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
28 import org.codehaus.plexus.redback.users.User;
29 import org.codehaus.plexus.registry.Registry;
30 import org.codehaus.plexus.registry.RegistryException;
31
32 import javax.inject.Inject;
33 import javax.inject.Named;
34 import java.util.ArrayList;
35 import java.util.List;
36
37 /**
38  * @author Olivier Lamy
39  * @since 1.4
40  */
41 public abstract class AbstractRepositoryAdmin
42 {
43
44     @Inject
45     private List<AuditListener> auditListeners = new ArrayList<AuditListener>();
46
47
48     @Inject
49     private RepositoryCommonValidator repositoryCommonValidator;
50
51     @Inject
52     private ArchivaConfiguration archivaConfiguration;
53
54     @Inject
55     @Named( value = "commons-configuration" )
56     private Registry registry;
57
58     protected void triggerAuditEvent( String repositoryId, String resource, String action,
59                                       AuditInformation auditInformation )
60     {
61         User user = auditInformation == null ? null : auditInformation.getUser();
62         AuditEvent event =
63             new AuditEvent( repositoryId, user == null ? "null" : (String) user.getPrincipal(), resource, action );
64         event.setRemoteIP( auditInformation == null ? "null" : auditInformation.getRemoteAddr() );
65
66         for ( AuditListener listener : getAuditListeners() )
67         {
68             listener.auditEvent( event );
69         }
70
71     }
72
73     protected void saveConfiguration( Configuration config )
74         throws RepositoryAdminException
75     {
76         try
77         {
78             getArchivaConfiguration().save( config );
79         }
80         catch ( RegistryException e )
81         {
82             throw new RepositoryAdminException( "Error occurred in the registry.", e );
83         }
84         catch ( IndeterminateConfigurationException e )
85         {
86             throw new RepositoryAdminException( "Error occurred while saving the configuration.", e );
87         }
88     }
89
90     protected List<ProxyConnectorConfiguration> getProxyConnectors()
91     {
92         return new ArrayList<ProxyConnectorConfiguration>(
93             archivaConfiguration.getConfiguration().getProxyConnectors() );
94     }
95
96     public List<AuditListener> getAuditListeners()
97     {
98         return auditListeners;
99     }
100
101     public void setAuditListeners( List<AuditListener> auditListeners )
102     {
103         this.auditListeners = auditListeners;
104     }
105
106     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
107     {
108         this.archivaConfiguration = archivaConfiguration;
109     }
110
111     public ArchivaConfiguration getArchivaConfiguration()
112     {
113         return archivaConfiguration;
114     }
115
116     public RepositoryCommonValidator getRepositoryCommonValidator()
117     {
118         return repositoryCommonValidator;
119     }
120
121     public void setRepositoryCommonValidator( RepositoryCommonValidator repositoryCommonValidator )
122     {
123         this.repositoryCommonValidator = repositoryCommonValidator;
124     }
125
126     public Registry getRegistry()
127     {
128         return registry;
129     }
130
131     public void setRegistry( Registry registry )
132     {
133         this.registry = registry;
134     }
135 }