1 package org.apache.maven.archiva.repository.audit;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
26 * AuditLog - Audit Log.
29 * @plexus.component role="org.apache.maven.archiva.repository.audit.AuditListener" role-hint="logging"
32 implements AuditListener
34 public static final Logger logger = LoggerFactory.getLogger( "org.apache.archiva.AuditLog" );
36 private static final String NONE = "-";
38 private static final char DELIM = ' ';
41 * Creates a log message in the following format ...
42 * "{repository_id} {user_id} {remote_ip} \"{resource}\" \"{action}\""
44 public void auditEvent( AuditEvent event )
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( '\"' );
53 logger.info( msg.toString() );
56 private String checkNull( String s )
58 return s != null ? s : NONE;