package org.apache.archiva.consumers.core; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import org.apache.archiva.admin.model.beans.ManagedRepository; import org.apache.archiva.consumers.AbstractMonitoredConsumer; import org.apache.archiva.consumers.ConsumerException; import org.apache.archiva.consumers.KnownRepositoryContentConsumer; import org.apache.commons.io.FileUtils; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Service; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; /** * AutoRenameConsumer * * */ @Service( "knownRepositoryContentConsumer#auto-rename" ) @Scope( "prototype" ) public class AutoRenameConsumer extends AbstractMonitoredConsumer implements KnownRepositoryContentConsumer { /** * default-value="auto-rename" */ private String id = "auto-rename"; /** * default-value="Automatically rename common artifact mistakes." */ private String description = "Automatically rename common artifact mistakes."; private static final String RENAME_FAILURE = "rename_failure"; private File repositoryDir; private List includes = new ArrayList<>( 3 ); private Map extensionRenameMap = new HashMap(); public AutoRenameConsumer() { includes.add( "**/*.distribution-tgz" ); includes.add( "**/*.distribution-zip" ); includes.add( "**/*.plugin" ); extensionRenameMap.put( ".distribution-tgz", ".tar.gz" ); extensionRenameMap.put( ".distribution-zip", ".zip" ); extensionRenameMap.put( ".plugin", ".jar" ); } public String getId() { return this.id; } public String getDescription() { return this.description; } public boolean isPermanent() { return false; } public void beginScan( ManagedRepository repository, Date whenGathered ) throws ConsumerException { this.repositoryDir = new File( repository.getLocation() ); } public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo ) throws ConsumerException { beginScan( repository, whenGathered ); } public void completeScan() { /* do nothing */ } public void completeScan( boolean executeOnEntireRepo ) { completeScan(); } public List getExcludes() { return null; } public List getIncludes() { return includes; } public void processFile( String path ) throws ConsumerException { File file = new File( this.repositoryDir, path ); if ( file.exists() ) { Iterator itExtensions = this.extensionRenameMap.keySet().iterator(); while ( itExtensions.hasNext() ) { String extension = itExtensions.next(); if ( path.endsWith( extension ) ) { String fixedExtension = this.extensionRenameMap.get( extension ); String correctedPath = path.substring( 0, path.length() - extension.length() ) + fixedExtension; File to = new File( this.repositoryDir, correctedPath ); try { // Rename the file. FileUtils.moveFile( file, to ); } catch ( IOException e ) { triggerConsumerWarning( RENAME_FAILURE, "Unable to rename " + path + " to " + correctedPath + ": " + e.getMessage() ); } } } triggerConsumerInfo( "(Auto) Removing File: " + file.getAbsolutePath() ); file.delete(); } } public void processFile( String path, boolean executeOnEntireRepo ) throws ConsumerException { processFile( path ); } }