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