]> source.dussan.org Git - archiva.git/blob
26048fcff4fbc11cfd12bf7386cdf2266e0005f6
[archiva.git] /
1 package org.apache.archiva.rest.services;
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.apache.archiva.admin.repository.managed.ManagedRepositoryAdmin;
23 import org.apache.archiva.metadata.repository.RepositorySessionFactory;
24 import org.apache.archiva.metadata.repository.stats.RepositoryStatisticsManager;
25 import org.apache.archiva.rest.api.services.RepositoriesService;
26 import org.apache.archiva.scheduler.repository.RepositoryArchivaTaskScheduler;
27 import org.apache.archiva.scheduler.repository.RepositoryTask;
28 import org.codehaus.plexus.redback.role.RoleManager;
29 import org.codehaus.plexus.registry.Registry;
30 import org.codehaus.plexus.taskqueue.TaskQueueException;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.stereotype.Service;
34
35 import javax.inject.Inject;
36 import javax.inject.Named;
37 import javax.ws.rs.PathParam;
38
39 /**
40  * @author Olivier Lamy
41  * @since 1.4
42  */
43 @Service( "repositoriesService#rest" )
44 public class DefaultRepositoriesService
45     extends AbstractRestService
46     implements RepositoriesService
47 {
48     private Logger log = LoggerFactory.getLogger( getClass() );
49
50     @Inject
51     protected RoleManager roleManager;
52
53     @Inject
54     @Named( value = "archivaTaskScheduler#repository" )
55     private RepositoryArchivaTaskScheduler repositoryTaskScheduler;
56
57
58     // FIXME olamy move this to repository admin component !
59     public Boolean scanRepository( String repositoryId, boolean fullScan )
60     {
61         if ( repositoryTaskScheduler.isProcessingRepositoryTask( repositoryId ) )
62         {
63             log.info( "scanning of repository with id {} already scheduled" );
64         }
65         RepositoryTask task = new RepositoryTask();
66         task.setRepositoryId( repositoryId );
67         task.setScanAll( fullScan );
68         try
69         {
70             repositoryTaskScheduler.queueTask( task );
71         }
72         catch ( TaskQueueException e )
73         {
74             log.error( "failed to schedule scanning of repo with id {}", repositoryId, e );
75             return false;
76         }
77         return true;
78     }
79
80     public Boolean alreadyScanning( String repositoryId )
81     {
82         return repositoryTaskScheduler.isProcessingRepositoryTask( repositoryId );
83     }
84
85     public Boolean removeScanningTaskFromQueue( @PathParam( "repositoryId" ) String repositoryId )
86     {
87         RepositoryTask task = new RepositoryTask();
88         task.setRepositoryId( repositoryId );
89         try
90         {
91             return repositoryTaskScheduler.unQueueTask( task );
92         }
93         catch ( TaskQueueException e )
94         {
95             log.error( "failed to unschedule scanning of repo with id {}", repositoryId, e );
96             return false;
97         }
98     }
99 }
100
101