]> source.dussan.org Git - archiva.git/blob
d99c9d7bccbae4a8fee2bdb016eca8b36d8cc54a
[archiva.git] /
1 package org.apache.maven.archiva.repository.audit;
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 org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 /**
26  * AuditLog - Audit Log.
27  * 
28  * @version $Id$
29  * @plexus.component role="org.apache.maven.archiva.repository.audit.AuditListener" role-hint="logging"
30  */
31 public class AuditLog
32     implements AuditListener
33 {
34     public static final Logger logger = LoggerFactory.getLogger( "org.apache.archiva.AuditLog" );
35
36     private static final String NONE = "-";
37
38     private static final char DELIM = ' ';
39
40     /**
41      * Creates a log message in the following format ...
42      * "{repository_id} {user_id} {remote_ip} \"{resource}\" \"{action}\""
43      */
44     public void auditEvent( AuditEvent event )
45     {
46         StringBuffer msg = new StringBuffer();
47         msg.append( checkNull( event.getRepositoryId() ) ).append( DELIM );
48         msg.append( event.getUserId() ).append( DELIM );
49         msg.append( event.getRemoteIP() ).append( DELIM );
50         msg.append( '\"' ).append( checkNull( event.getResource() ) ).append( '\"' ).append( DELIM );
51         msg.append( '\"' ).append( event.getAction() ).append( '\"' );
52
53         logger.info( msg.toString() );
54     }
55
56     private String checkNull( String s )
57     {
58         return s != null ? s : NONE;
59     }
60 }