All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.archiva.consumers.database.DatabaseCleanupRemoveArtifactConsumer Maven / Gradle / Ivy

The newest version!
package org.apache.maven.archiva.consumers.database;

/*
 * 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.maven.archiva.consumers.AbstractMonitoredConsumer;
import org.apache.maven.archiva.consumers.ConsumerException;
import org.apache.maven.archiva.consumers.DatabaseCleanupConsumer;
import org.apache.maven.archiva.model.ArchivaArtifact;
import org.apache.maven.archiva.database.ArtifactDAO;
import org.apache.maven.archiva.database.ArchivaDatabaseException;
import org.apache.maven.archiva.repository.ManagedRepositoryContent;
import org.apache.maven.archiva.repository.RepositoryContentFactory;
import org.apache.maven.archiva.repository.RepositoryException;

import java.util.List;
import java.io.File;

/**
 * Consumer for cleaning up the database of artifacts that are no longer existing in the repository. 
 *
 * @author Joakim Erdfelt
 *         Maria Odea Ching
 * @version $Id: DatabaseCleanupRemoveArtifactConsumer.java 585068 2007-10-16 07:45:27Z oching $
 * 
 * @plexus.component role="org.apache.maven.archiva.consumers.DatabaseCleanupConsumer"
 *                   role-hint="not-present-remove-db-artifact"
 *                   instantiation-strategy="per-lookup"
 */
public class DatabaseCleanupRemoveArtifactConsumer
    extends AbstractMonitoredConsumer
    implements DatabaseCleanupConsumer
{
    /**
     * @plexus.configuration default-value="not-present-remove-db-artifact"
     */
    private String id;

    /**
     * @plexus.configuration default-value="Remove artifact from database if not present on filesystem."
     */
    private String description;

    /**
     * @plexus.requirement role-hint="jdo"
     */
    private ArtifactDAO artifactDAO;
    
    /**
     * @plexus.requirement
     */
    private RepositoryContentFactory repositoryFactory;

    public void beginScan()
    {
        // TODO Auto-generated method stub

    }

    public void completeScan()
    {
        // TODO Auto-generated method stub
    }

    public List getIncludedTypes()
    {   
    	return null;
    }

    public void processArchivaArtifact( ArchivaArtifact artifact )
        throws ConsumerException
    {	
    	try
    	{
	    	ManagedRepositoryContent repositoryContent = 
	    		repositoryFactory.getManagedRepositoryContent( artifact.getModel().getRepositoryId() );
	 	    	
	    	File file = new File( repositoryContent.getRepoRoot(), repositoryContent.toPath( artifact ) );
	    		    	
	    	if( !file.exists() )
	        {	        	     
	    		artifactDAO.deleteArtifact( artifact );
	        }	    	
    	}
    	catch ( RepositoryException re )
    	{
    		throw new ConsumerException( "Can't run database cleanup remove artifact consumer: " + 
    				re.getMessage() );
    	}
    	catch ( ArchivaDatabaseException e )
        {
            throw new ConsumerException( e.getMessage() );
        }
    }    	

    public String getDescription()
    {
        return description;
    }

    public String getId()
    {
        return id;
    }

    public boolean isPermanent()
    {
        return false;
    }

    public void setArtifactDAO( ArtifactDAO artifactDAO)
    {
        this.artifactDAO = artifactDAO;
    }
    
    public void setRepositoryFactory( RepositoryContentFactory repositoryFactory )
    {
        this.repositoryFactory = repositoryFactory;
    }     
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy