]> source.dussan.org Git - archiva.git/blob
c5bcc3bdce554e1e559d4df464df722b582ef96b
[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     public List<AuditListener> getAuditListeners()
91     {
92         return auditListeners;
93     }
94
95     public void setAuditListeners( List<AuditListener> auditListeners )
96     {
97         this.auditListeners = auditListeners;
98     }
99
100     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
101     {
102         this.archivaConfiguration = archivaConfiguration;
103     }
104
105     public ArchivaConfiguration getArchivaConfiguration()
106     {
107         return archivaConfiguration;
108     }
109
110     public RepositoryCommonValidator getRepositoryCommonValidator()
111     {
112         return repositoryCommonValidator;
113     }
114
115     public void setRepositoryCommonValidator( RepositoryCommonValidator repositoryCommonValidator )
116     {
117         this.repositoryCommonValidator = repositoryCommonValidator;
118     }
119
120     public Registry getRegistry()
121     {
122         return registry;
123     }
124
125     public void setRegistry( Registry registry )
126     {
127         this.registry = registry;
128     }
129 }