]> source.dussan.org Git - archiva.git/blob
dd40493d84bd39106412742811bab7dbca62a98c
[archiva.git] /
1 package org.apache.archiva.redback.struts2.interceptor;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import com.opensymphony.xwork2.ActionInvocation;
23 import com.opensymphony.xwork2.interceptor.Interceptor;
24 import org.apache.archiva.redback.system.check.EnvironmentCheck;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.context.annotation.Scope;
28 import org.springframework.stereotype.Controller;
29
30 import javax.annotation.PostConstruct;
31 import javax.inject.Inject;
32 import java.util.ArrayList;
33 import java.util.List;
34
35 /**
36  * EnvironmentCheckInterceptor
37  *
38  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
39  * @version $Id$
40  */
41 @Controller( "redbackEnvironmentCheckInterceptor" )
42 @Scope( "prototype" )
43 public class EnvironmentCheckInterceptor
44     implements Interceptor
45 {
46     private static boolean checked = false;
47
48     private Logger log = LoggerFactory.getLogger( EnvironmentCheckInterceptor.class );
49
50
51     /**
52      *
53      */
54     @Inject
55     private List<EnvironmentCheck> checkers;
56
57     public void destroy()
58     {
59         // no-op
60     }
61
62     @PostConstruct
63     public void init()
64     {
65
66         if ( EnvironmentCheckInterceptor.checked )
67         {
68             // No need to check twice.
69             return;
70         }
71
72         if ( checkers != null )
73         {
74             List<String> violations = new ArrayList<String>();
75
76             for ( EnvironmentCheck check : checkers )
77             {
78                 check.validateEnvironment( violations );
79             }
80
81             if ( !violations.isEmpty() )
82             {
83                 StringBuffer msg = new StringBuffer();
84                 msg.append( "EnvironmentCheck Failure.\n" );
85                 msg.append( "======================================================================\n" );
86                 msg.append( " ENVIRONMENT FAILURE !! \n" );
87                 msg.append( "\n" );
88
89                 for ( String v : violations )
90                 {
91                     msg.append( v ).append( "\n" );
92                 }
93
94                 msg.append( "\n" );
95                 msg.append( "======================================================================" );
96                 log.error( msg.toString() );
97             }
98         }
99
100         EnvironmentCheckInterceptor.checked = true;
101     }
102
103     public String intercept( ActionInvocation invocation )
104         throws Exception
105     {
106         // A no-op here. Work for this intereceptor is done in init().
107         return invocation.invoke();
108     }
109 }