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