1 package org.apache.maven.archiva.consumers.core;
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.apache.commons.collections.CollectionUtils;
23 import org.apache.commons.lang.StringUtils;
24 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
25 import org.apache.maven.archiva.configuration.ConfigurationNames;
26 import org.apache.maven.archiva.configuration.FileTypes;
27 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
28 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
29 import org.apache.maven.archiva.consumers.ConsumerException;
30 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
31 import org.codehaus.plexus.registry.Registry;
32 import org.codehaus.plexus.registry.RegistryListener;
33 import org.springframework.context.annotation.Scope;
34 import org.springframework.stereotype.Service;
36 import javax.annotation.PostConstruct;
37 import javax.inject.Inject;
39 import java.util.ArrayList;
40 import java.util.Date;
41 import java.util.List;
47 * plexus.component role="org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer"
48 * role-hint="auto-remove"
49 * instantiation-strategy="per-lookup"
51 @Service("knownRepositoryContentConsumer#auto-remove")
53 public class AutoRemoveConsumer
54 extends AbstractMonitoredConsumer
55 implements KnownRepositoryContentConsumer, RegistryListener
58 * plexus.configuration default-value="auto-remove"
60 private String id = "auto-remove";
63 * plexus.configuration default-value="Automatically Remove File from Filesystem."
65 private String description = "Automatically Remove File from Filesystem.";
71 private ArchivaConfiguration configuration;
77 private FileTypes filetypes;
79 private File repositoryDir;
81 private List<String> includes = new ArrayList<String>();
88 public String getDescription()
90 return this.description;
93 public boolean isPermanent()
98 public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
99 throws ConsumerException
101 this.repositoryDir = new File( repository.getLocation() );
104 public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered, boolean executeOnEntireRepo )
105 throws ConsumerException
107 beginScan( repository, whenGathered );
110 public void completeScan()
115 public void completeScan( boolean executeOnEntireRepo )
120 public List<String> getExcludes()
125 public List<String> getIncludes()
130 public void processFile( String path )
131 throws ConsumerException
133 File file = new File( this.repositoryDir, path );
136 triggerConsumerInfo( "(Auto) Removing File: " + file.getAbsolutePath() );
141 public void processFile( String path, boolean executeOnEntireRepo )
142 throws ConsumerException
147 public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
149 if ( ConfigurationNames.isRepositoryScanning( propertyName ) )
155 public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
160 private void initIncludes()
164 includes.addAll( filetypes.getFileTypePatterns( FileTypes.AUTO_REMOVE ) );
168 public void initialize()
170 configuration.addChangeListener( this );