]> source.dussan.org Git - archiva.git/blob
d917a6a48a5f0633dc9229873bb08d84999503ee
[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.codehaus.plexus.redback.users.User;
28 import org.codehaus.plexus.registry.Registry;
29 import org.codehaus.plexus.registry.RegistryException;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 import javax.inject.Inject;
34 import javax.inject.Named;
35 import java.util.ArrayList;
36 import java.util.List;
37
38 /**
39  * @author Olivier Lamy
40  * @since 1.4
41  */
42 public abstract class AbstractRepositoryAdmin
43 {
44     protected Logger log = LoggerFactory.getLogger( getClass() );
45
46     @Inject
47     private List<AuditListener> auditListeners = new ArrayList<AuditListener>();
48
49
50     @Inject
51     private RepositoryCommonValidator repositoryCommonValidator;
52
53     @Inject
54     private ArchivaConfiguration archivaConfiguration;
55
56     @Inject
57     @Named( value = "commons-configuration" )
58     private Registry registry;
59
60     protected void triggerAuditEvent( String repositoryId, String resource, String action,
61                                       AuditInformation auditInformation )
62     {
63         User user = auditInformation == null ? null : auditInformation.getUser();
64         AuditEvent event =
65             new AuditEvent( repositoryId, user == null ? "null" : (String) user.getPrincipal(), resource, action );
66         event.setRemoteIP( auditInformation == null ? "null" : auditInformation.getRemoteAddr() );
67
68         for ( AuditListener listener : getAuditListeners() )
69         {
70             listener.auditEvent( event );
71         }
72
73     }
74
75     protected void saveConfiguration( Configuration config )
76         throws RepositoryAdminException
77     {
78         try
79         {
80             getArchivaConfiguration().save( config );
81         }
82         catch ( RegistryException e )
83         {
84             throw new RepositoryAdminException( "Error occurred in the registry.", e );
85         }
86         catch ( IndeterminateConfigurationException e )
87         {
88             throw new RepositoryAdminException( "Error occurred while saving the configuration.", e );
89         }
90     }
91
92     public List<AuditListener> getAuditListeners()
93     {
94         return auditListeners;
95     }
96
97     public void setAuditListeners( List<AuditListener> auditListeners )
98     {
99         this.auditListeners = auditListeners;
100     }
101
102     public void setArchivaConfiguration( ArchivaConfiguration archivaConfiguration )
103     {
104         this.archivaConfiguration = archivaConfiguration;
105     }
106
107     public ArchivaConfiguration getArchivaConfiguration()
108     {
109         return archivaConfiguration;
110     }
111
112     public RepositoryCommonValidator getRepositoryCommonValidator()
113     {
114         return repositoryCommonValidator;
115     }
116
117     public void setRepositoryCommonValidator( RepositoryCommonValidator repositoryCommonValidator )
118     {
119         this.repositoryCommonValidator = repositoryCommonValidator;
120     }
121
122     public Registry getRegistry()
123     {
124         return registry;
125     }
126
127     public void setRegistry( Registry registry )
128     {
129         this.registry = registry;
130     }
131 }