]> source.dussan.org Git - archiva.git/blob
75cffe74d18f7505b1363425a16d9f5449a1e414
[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 org.apache.archiva.rest.api.services.ArchivaRestServiceException;
22 import org.apache.archiva.rest.api.services.CommonServices;
23 import org.apache.commons.io.IOUtils;
24 import org.apache.commons.lang.StringUtils;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.stereotype.Service;
28
29 import java.io.IOException;
30 import java.io.InputStream;
31 import java.util.Map;
32 import java.util.Properties;
33
34 /**
35  * @author Olivier Lamy
36  */
37 @Service( "commonServices#rest" )
38 public class DefaultCommonServices
39     implements CommonServices
40 {
41
42     private Logger log = LoggerFactory.getLogger( getClass() );
43
44     public String getI18nResources( String locale )
45         throws ArchivaRestServiceException
46     {
47         Properties properties = new Properties();
48
49         StringBuilder resourceName = new StringBuilder( "org/apache/archiva/i18n/default" );
50         try
51         {
52
53             loadResource( properties, resourceName, locale );
54
55         }
56         catch ( IOException e )
57         {
58             log.warn( "skip error loading properties {}", resourceName.toString() );
59         }
60
61         StringBuilder output = new StringBuilder();
62
63         for ( Map.Entry<Object, Object> entry : properties.entrySet() )
64         {
65             output.append( (String) entry.getKey() ).append( '=' ).append( (String) entry.getValue() );
66             output.append( '\n' );
67         }
68
69         return output.toString();
70     }
71
72     private void loadResource( Properties properties, StringBuilder resourceName, String locale )
73         throws IOException
74     {
75         // load default
76         loadResource( properties, new StringBuilder( resourceName ).append( ".properties" ).toString() );
77         // if locale override with locale content
78         if ( StringUtils.isNotEmpty( locale ) )
79         {
80             loadResource( properties,
81                           new StringBuilder( resourceName ).append( "_" + locale ).append( ".properties" ).toString() );
82         }
83
84     }
85
86     private void loadResource( Properties properties, String resourceName )
87         throws IOException
88     {
89         InputStream is = null;
90
91         try
92         {
93             is = Thread.currentThread().getContextClassLoader().getResourceAsStream( resourceName.toString() );
94             if ( is != null )
95             {
96                 properties.load( is );
97             }
98         }
99         finally
100         {
101             IOUtils.closeQuietly( is );
102         }
103     }
104 }