Coverage Report - org.apache.maven.archiva.repository.audit.AuditLog
 
Classes in this File Line Coverage Branch Coverage Complexity
AuditLog
0%
0/11
0%
0/2
1
 
 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: AuditLog.java 756587 2009-03-20 16:35:02Z brett $
 29  
  * @plexus.component role="org.apache.maven.archiva.repository.audit.AuditListener" role-hint="logging"
 30  
  */
 31  0
 public class AuditLog
 32  
     implements AuditListener
 33  
 {
 34  0
     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  0
         StringBuffer msg = new StringBuffer();
 47  0
         msg.append( checkNull( event.getRepositoryId() ) ).append( DELIM );
 48  0
         msg.append( event.getUserId() ).append( DELIM );
 49  0
         msg.append( checkNull( event.getRemoteIP() ) ).append( DELIM );
 50  0
         msg.append( '\"' ).append( checkNull( event.getResource() ) ).append( '\"' ).append( DELIM );
 51  0
         msg.append( '\"' ).append( event.getAction() ).append( '\"' );
 52  
 
 53  0
         logger.info( msg.toString() );
 54  0
     }
 55  
 
 56  
     private String checkNull( String s )
 57  
     {
 58  0
         return s != null ? s : NONE;
 59  
     }
 60  
 }