]> source.dussan.org Git - archiva.git/blob
4404593b3de99eabff2c9de17adc98dd5ad01f80
[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.codehaus.redback.rest.api.services.RedbackServiceException;
26 import org.codehaus.redback.rest.api.services.UtilServices;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.stereotype.Service;
30
31 import javax.inject.Inject;
32 import javax.ws.rs.core.Response;
33 import java.io.ByteArrayInputStream;
34 import java.io.IOException;
35 import java.io.InputStream;
36 import java.util.Map;
37 import java.util.Properties;
38
39 /**
40  * @author Olivier Lamy
41  */
42 @Service( "commonServices#rest" )
43 public class DefaultCommonServices
44     implements CommonServices
45 {
46
47     private static final String RESOURCE_NAME = "org/apache/archiva/i18n/default";
48
49     private Logger log = LoggerFactory.getLogger( getClass() );
50
51     @Inject
52     private UtilServices utilServices;
53
54     public String getI18nResources( String locale )
55         throws ArchivaRestServiceException
56     {
57         Properties properties = new Properties();
58
59         StringBuilder resourceName = new StringBuilder( RESOURCE_NAME );
60         try
61         {
62
63             loadResource( properties, resourceName, locale );
64
65         }
66         catch ( IOException e )
67         {
68             log.warn( "skip error loading properties {}", resourceName.toString() );
69         }
70
71         return fromProperties( properties );
72     }
73
74     private void loadResource( Properties properties, StringBuilder resourceName, String locale )
75         throws IOException
76     {
77         // load default
78         loadResource( properties, new StringBuilder( resourceName ).append( ".properties" ).toString(), locale );
79         // if locale override with locale content
80         if ( StringUtils.isNotEmpty( locale ) )
81         {
82             loadResource( properties,
83                           new StringBuilder( resourceName ).append( "_" + locale ).append( ".properties" ).toString(),
84                           locale );
85         }
86
87     }
88
89     private String fromProperties( final Properties properties )
90     {
91         StringBuilder output = new StringBuilder();
92
93         for ( Map.Entry<Object, Object> entry : properties.entrySet() )
94         {
95             output.append( (String) entry.getKey() ).append( '=' ).append( (String) entry.getValue() );
96             output.append( '\n' );
97         }
98
99         return output.toString();
100     }
101
102     private void loadResource( final Properties finalProperties, String resourceName, String locale )
103         throws IOException
104     {
105         InputStream is = null;
106         Properties properties = new Properties();
107         try
108         {
109             is = Thread.currentThread().getContextClassLoader().getResourceAsStream( resourceName.toString() );
110             if ( is != null )
111             {
112                 properties.load( is );
113                 finalProperties.putAll( properties );
114             }
115             else
116             {
117                 if ( !StringUtils.equalsIgnoreCase( locale, "en" ) )
118                 {
119                     log.info( "cannot load resource {}", resourceName );
120                 }
121             }
122         }
123         finally
124         {
125             IOUtils.closeQuietly( is );
126         }
127     }
128
129     public String getAllI18nResources( String locale )
130         throws ArchivaRestServiceException
131     {
132         try
133         {
134
135             Properties all = utilServices.getI18nProperties( locale );
136             StringBuilder resourceName = new StringBuilder( RESOURCE_NAME );
137             loadResource( all, resourceName, locale );
138
139             return fromProperties( all );
140         }
141         catch ( IOException e )
142         {
143             throw new ArchivaRestServiceException( e.getMessage(),
144                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode() );
145         }
146         catch ( RedbackServiceException e )
147         {
148             throw new ArchivaRestServiceException( e.getMessage(), e.getHttpErrorCode() );
149         }
150     }
151
152     private void loadFromString( String propsStr, Properties properties )
153         throws ArchivaRestServiceException
154     {
155         InputStream inputStream = null;
156         try
157         {
158             inputStream = new ByteArrayInputStream( propsStr.getBytes() );
159             properties.load( inputStream );
160         }
161         catch ( IOException e )
162         {
163             throw new ArchivaRestServiceException( e.getMessage(),
164                                                    Response.Status.INTERNAL_SERVER_ERROR.getStatusCode() );
165         }
166         finally
167         {
168             IOUtils.closeQuietly( inputStream );
169         }
170     }
171
172     public Boolean devMode()
173     {
174         return Boolean.getBoolean( "archiva.devMode" );
175     }
176 }