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