]> source.dussan.org Git - archiva.git/blob
a40e698d24f05efb1388f078b080cfcdba055912
[archiva.git] /
1 package org.apache.archiva.web.api;
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.RedbackRuntimeConfigurationService;
23 import org.apache.archiva.web.runtime.ArchivaRuntimeInfo;
24 import org.apache.archiva.web.model.ApplicationRuntimeInfo;
25 import org.apache.commons.lang.StringUtils;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28 import org.springframework.stereotype.Service;
29
30 import javax.inject.Inject;
31 import javax.servlet.http.HttpServletRequest;
32 import javax.ws.rs.core.Context;
33 import java.text.SimpleDateFormat;
34 import java.util.Date;
35 import java.util.Locale;
36
37 /**
38  * @author Olivier Lamy
39  */
40 @Service("runtimeInfoService#rest")
41 public class DefaultRuntimeInfoService
42     implements RuntimeInfoService
43 {
44
45     private Logger i18nLogger = LoggerFactory.getLogger( "archivaMissingi18n.logger" );
46
47     private ArchivaRuntimeInfo archivaRuntimeInfo;
48
49     @Inject
50     private RedbackRuntimeConfigurationService redbackRuntimeConfigurationService;
51
52     @Context
53     protected HttpServletRequest httpServletRequest;
54
55     @Inject
56     public DefaultRuntimeInfoService( ArchivaRuntimeInfo archivaRuntimeInfo )
57     {
58         this.archivaRuntimeInfo = archivaRuntimeInfo;
59     }
60
61     public ApplicationRuntimeInfo getApplicationRuntimeInfo( String locale )
62         throws ArchivaRestServiceException
63     {
64         ApplicationRuntimeInfo applicationRuntimeInfo = new ApplicationRuntimeInfo();
65         applicationRuntimeInfo.setBuildNumber( this.archivaRuntimeInfo.getBuildNumber() );
66         applicationRuntimeInfo.setTimestamp( this.archivaRuntimeInfo.getTimestamp() );
67         applicationRuntimeInfo.setVersion( this.archivaRuntimeInfo.getVersion() );
68         applicationRuntimeInfo.setBaseUrl( getBaseUrl( httpServletRequest ) );
69
70         SimpleDateFormat sfd = new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ssz",
71                                                      new Locale( StringUtils.isEmpty( locale ) ? "en" : locale ) );
72         applicationRuntimeInfo.setTimestampStr( sfd.format( new Date( archivaRuntimeInfo.getTimestamp() ) ) );
73
74         applicationRuntimeInfo.setRedbackRuntimeConfiguration(
75             redbackRuntimeConfigurationService.getRedbackRuntimeConfiguration() );
76
77         return applicationRuntimeInfo;
78     }
79
80     protected String getBaseUrl( HttpServletRequest req )
81     {
82         return req.getScheme() + "://" + req.getServerName() + ( req.getServerPort() == 80
83             ? ""
84             : ":" + req.getServerPort() ) + req.getContextPath();
85     }
86
87     public Boolean logMissingI18n( String key )
88     {
89         i18nLogger.info( "missing i18n key : '{}'", key );
90         return Boolean.TRUE;
91     }
92 }