]> source.dussan.org Git - archiva.git/blob
f6ae7f906c1027237df71d40f040d9c5b20a2358
[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  * 
30  * @plexus.component role="org.apache.maven.archiva.repository.audit.AuditListener"
31  *                   role-hint="logging"
32  */
33 public class AuditLog
34     implements AuditListener
35 {
36     public static final Logger logger = LoggerFactory.getLogger( "org.apache.archiva.AuditLog" );
37     
38     private static final char DELIM = ' '; 
39
40     /**
41      * Creates a log message in the following format ...
42      * 
43      * "{repository_id} {user_id} {remote_ip} \"{resource}\" \"{action}\""
44      */
45     public void auditEvent( AuditEvent event )
46     {
47         StringBuffer msg = new StringBuffer();
48         msg.append( event.getRepositoryId() ).append( DELIM );
49         msg.append( event.getUserId() ).append( DELIM );
50         msg.append( event.getRemoteIP() ).append( DELIM );
51         msg.append( '\"' ).append( event.getResource() ).append( '\"' ).append( DELIM );
52         msg.append( '\"' ).append( event.getAction() ).append( '\"' );
53
54         logger.info( msg.toString() );
55     }
56 }