]> source.dussan.org Git - archiva.git/blob
c3f02aaec04ebc406e75b7ec876014eda3238ff0
[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
31 /**
32  * @author Olivier Lamy
33  */
34 @Service( "runtimeInfoService#rest" )
35 public class DefaultRuntimeInfoService
36     implements RuntimeInfoService
37 {
38
39     private Logger i18nLogger = LoggerFactory.getLogger( "archivaMissingi18n.logger" );
40
41     private ArchivaRuntimeInfo archivaRuntimeInfo;
42
43     @Context
44     protected HttpServletRequest httpServletRequest;
45
46     @Inject
47     public DefaultRuntimeInfoService( ArchivaRuntimeInfo archivaRuntimeInfo )
48     {
49         this.archivaRuntimeInfo = archivaRuntimeInfo;
50     }
51
52     @Inject
53     public ApplicationRuntimeInfo getApplicationRuntimeInfo()
54     {
55         ApplicationRuntimeInfo applicationRuntimeInfo = new ApplicationRuntimeInfo();
56         applicationRuntimeInfo.setBuildNumber( this.archivaRuntimeInfo.getBuildNumber() );
57         applicationRuntimeInfo.setTimestamp( this.archivaRuntimeInfo.getTimestamp() );
58         applicationRuntimeInfo.setVersion( this.archivaRuntimeInfo.getVersion() );
59         applicationRuntimeInfo.setBaseUrl( getBaseUrl( httpServletRequest ) );
60         return applicationRuntimeInfo;
61     }
62
63     protected String getBaseUrl( HttpServletRequest req )
64     {
65         return req.getScheme() + "://" + req.getServerName() + ( req.getServerPort() == 80
66             ? ""
67             : ":" + req.getServerPort() ) + req.getContextPath();
68     }
69
70     public Boolean logMissingI18n( String key )
71     {
72         i18nLogger.info( "missing i18n key : '{}'", key );
73         return Boolean.TRUE;
74     }
75 }