]> source.dussan.org Git - archiva.git/blob
123b233747fab63457bbc30978909cb43d41a966
[archiva.git] /
1 package org.apache.archiva.rest.services;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import java.io.IOException;
22 import java.util.ArrayList;
23 import java.util.List;
24
25 import org.apache.archiva.rest.api.services.ArchivaRestServiceException;
26 import org.springframework.stereotype.Service;
27
28 import javax.inject.Inject;
29
30 import org.apache.archiva.rest.api.services.PluginsService;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.context.ApplicationContext;
34 import org.springframework.core.io.Resource;
35
36 /**
37  * @author Eric Barboni
38  * @since 1.4.0
39  */
40 @Service("pluginsService#rest")
41 public class DefaultPluginsServices
42     implements PluginsService
43 {
44
45     private List<String> repositoryType = new ArrayList<String>();
46
47     private List<String> adminFeatures = new ArrayList<String>();
48
49     private ApplicationContext appCont;
50
51     private Logger log = LoggerFactory.getLogger( getClass() );
52
53     @Inject
54     public DefaultPluginsServices( ApplicationContext applicationContext )
55     {
56         this.appCont = applicationContext;
57     }
58
59     private void feed( List<String> repository, String key )
60         throws ArchivaRestServiceException
61     {
62         log.info( "Feeding: {}", key );
63         repository.clear();
64         Resource[] xmlResources;
65         try
66         {
67             xmlResources = appCont.getResources( "/**/" + key + "/**/main.js" );
68             for ( Resource rc : xmlResources )
69             {
70                 String tmp = rc.getURL().toString();
71                 tmp = tmp.substring( tmp.lastIndexOf( key ) + key.length() + 1, tmp.length() - 8 );
72                 repository.add( "archiva/admin/" + key + "/" + tmp + "/main" );
73             }
74         }
75         catch ( IOException e )
76         {
77
78             throw new ArchivaRestServiceException( e.getMessage(), e );
79         }
80     }
81
82     @Override
83     public String getAdminPlugins()
84         throws ArchivaRestServiceException
85     {
86         // rebuild
87         feed( repositoryType, "repository" );
88         feed( adminFeatures, "features" );
89         StringBuilder sb = new StringBuilder();
90         for ( String repoType : repositoryType )
91         {
92             sb.append( repoType ).append( "|" );
93         }
94         for ( String repoType : adminFeatures )
95         {
96             sb.append( repoType ).append( "|" );
97         }
98         log.debug( "getAdminPlugins: {}", sb.toString() );
99         if ( sb.length() > 1 )
100         {
101             return sb.substring( 0, sb.length() - 1 );
102         }
103         else
104         {
105             return sb.toString();
106         }
107
108     }
109 }