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