aboutsummaryrefslogtreecommitdiffstats
path: root/ecomp-sdk-app/src/main/webapp/WEB-INF/fusion/raptor/error_page.jsp
blob: 8ee73be016f91fa908e26ba58f2e6820ad9dd471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<%--
  ================================================================================
  eCOMP Portal SDK
  ================================================================================
  Copyright (C) 2017 AT&T Intellectual Property
  ================================================================================
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
  
       http://www.apache.org/licenses/LICENSE-2.0
  
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  ================================================================================
  --%>
<%@ page import="java.io.*" %>
<%@ page import="java.util.*" %>
<%@ page import="org.openecomp.portalsdk.analytics.model.runtime.*" %>
<%@ page import="org.openecomp.portalsdk.analytics.system.*" %>
<%@ page import="org.openecomp.portalsdk.analytics.util.*" %>
<%@ page import="org.openecomp.portalsdk.analytics.error.UserAccessException"%>
<%@ page import="org.openecomp.portalsdk.analytics.error.RaptorException"%>
<%@ page import="org.openecomp.portalsdk.analytics.error.UserDefinedException"%>
<%@ page isErrorPage="true" %>


<% java.lang.Exception ex = (Exception) request.getAttribute(AppConstants.RI_EXCEPTION); %>
<%	boolean showEditLink = false;
	if(AppUtils.getRequestNvlValue(request, "r_action").equals("report.run")) {
		ReportRuntime rr = (ReportRuntime) request.getSession().getAttribute(AppConstants.SI_REPORT_RUNTIME);
		if(rr!=null)
			try {
				rr.checkUserWriteAccess(request);
				showEditLink = true;
			} catch(Exception e) {}
	}	// if
%>



<html>

<head>
	<meta http-equiv="Content-Language" content="en-us">
	<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
	<link rel="stylesheet" type="text/css" href="<%= AppUtils.getBaseFolderURL() %>css/raptor.css">
	<link rel="stylesheet" type="text/css" href="<%= AppUtils.getBaseFolderURL() %>css/ral.css">
	<title>Application Error</title>
	</head>

<body bgcolor="#FFFFFF">
<%-- jsp:include page="custom_header_include.jsp" flush="true" /--%>

<form name="forma" action="raptor.htm" method="post">
	<input type="hidden" name="action" value="raptor">
	<input type="hidden" name="r_action" value="report.edit">
	<input type="hidden" name="c_master" value="<%= AppUtils.getRequestNvlValue(request, "c_master") %>">
	<input type="hidden" name="source_page" value="report_run">

<br>
<table class="mTAB" width="94%"  class="tableBorder" border="0" cellspacing="1" cellpadding="3" align=center>
	<tr class=rbg1>
		<td width="90%" class=rtext2 nowrap>
<% if(showEditLink) { %>
			<input type=image border="0" src="<%= AppUtils.getImgFolderURL() %>pen_paper.gif" alt="Edit report" width="12" height="12">
<% } %>
			<b class=rtableheader>Error/User-Alert Message:</b>
		</td>
	</tr>
<% if(ex!=null) { %>
    <% if(ex instanceof org.openecomp.portalsdk.analytics.error.RaptorSchedularException)  { %>
     <% if(AppUtils.isAdminUser(request)) { %>
	<tr class=rowalt1>
		<td width="90%" class=rtext2 nowrap>
			<font class=rtabletext><b>Exception Class: </b><%= (ex!=null && ex instanceof org.openecomp.portalsdk.analytics.error.RaptorSchedularException)?ex.getClass().toString():"" %></font>
		</td>
	</tr>
	<% } %>
	<tr class=rowalt2>
		<td width="90%" class=rtext2 nowrap><font class=rtabletext><b>Message:</b>&nbsp;<%= (ex!=null && ex instanceof org.openecomp.portalsdk.analytics.error.RaptorSchedularException)?ex.getMessage():"" %></font>
		</td>
	</tr>
	<% }  %>
		<% if(ex!=null) ex.printStackTrace(); %>
			<%		if(AppUtils.isAdminUser(request)) {
					if ((ex instanceof org.openecomp.portalsdk.analytics.error.ReportSQLException)||
						(request.getAttribute("c_error_sql")!=null && !((String) request.getAttribute("c_error_sql")).trim().equals(""))) { 
						String sql = "";
						if(ex instanceof org.openecomp.portalsdk.analytics.error.ReportSQLException)
							sql = ((org.openecomp.portalsdk.analytics.error.ReportSQLException) ex).getReportSQL(); 
						else
							sql = (String) request.getAttribute("c_error_sql"); %>
						<% if (sql!=null && sql.length() > 0) { %>	
						<tr class=rowalt1>
							<td width="90%">
								<b class=rtabletext>SQL Execution Error:</b>
							</td>
						</tr>
						<tr class=rowalt2>
							<td width="90%">
								<font class=rtabletext><%= sql %></font>
							</td>
						</tr>
			<% 			request.setAttribute("c_error_sql", sql);
				%>
				        <% }  %>
				<tr class=rowalt1>
					<td width="90%">
						<b class=rtabletext>Error Message:</b><br>
						<font class=rtabletext><%= AppUtils.getRequestNvlValue(request, "error_extra_msg") %><%= ex.getMessage() %></font>
					</td>
				</tr>
			<%		if(request.getAttribute("c_error_url")!=null && !((String) request.getAttribute("c_error_url")).trim().equals("")) { %>
				<tr class=rowalt1>
					<td width="90%">
						<font class=rtabletext>Please <a href="<%= (String) request.getAttribute("c_error_url") %>">click here</a> to edit report definition.</font>
					</td>
				</tr>
			<%		} // if %>
			<% } else { // reportSQLException 
				if (ex instanceof RaptorException) { %>
					<tr class=rowalt1>
					<td width="90%">
						<b class=rtabletext>Error Message:</b><br>
						<font class=rtabletext><%= AppUtils.getRequestNvlValue(request, "error_extra_msg") %><%= ex.getMessage() %></font>
					</td>
				</tr>	                 
			<%} %>
			<% } %>
			<% } else { 
				if (ex instanceof UserAccessException) { %>
					<tr class=rowalt1>
					<td width="90%">
						<b class=rtabletext>Error Message:</b><br>
						<font class=rtabletext><%= AppUtils.getRequestNvlValue(request, "error_extra_msg") %><%= ex.getMessage() %></font>
					</td>
				</tr>					
			<%	} else if (ex instanceof UserDefinedException) { %>
				<tr class=rowalt1>
					<td width="90%">
						<b class=rtabletext>Error Message:</b><br>
						<font class=rtabletext><%= AppUtils.getRequestNvlValue(request, "error_extra_msg") %><%= ex.getMessage() %></font>
					</td>
				</tr>	
			<%	}
			 } %>
				<tr class=rowalt2>
					<td width="90%">
						<font class=rtabletext>** The system administrator has been notified for this error.</font>
					</td>
				</tr>		
<% } else { %>
<% if(exception instanceof org.openecomp.portalsdk.analytics.error.RaptorSchedularException)  { %>
     <% if(AppUtils.isAdminUser(request)) { %>
	<tr class=rowalt1>
	<td width="90%" class=rtext2 nowrap>
		<font class=rtabletext><b>Exception Class: </b><%= (exception!=null && exception instanceof org.openecomp.portalsdk.analytics.error.RaptorSchedularException)?exception.getClass().toString():"" %></font>
	</td>
</tr>
   <% } %>
<tr class=rowalt2>
	<td width="90%" class=rtext2 nowrap><font class=rtabletext><b>Message:</b>&nbsp;<%= (exception!=null && exception instanceof org.openecomp.portalsdk.analytics.error.RaptorSchedularException)?exception.getMessage():"" %></font>
		</td>
		<% if(exception!=null) exception.printStackTrace(); %>
	</tr>
<% } %>
<%		if(AppUtils.isAdminUser(request)) {
		if ((exception instanceof org.openecomp.portalsdk.analytics.error.ReportSQLException)||
			(request.getAttribute("c_error_sql")!=null && !((String) request.getAttribute("c_error_sql")).trim().equals(""))) { 
			String sql = "";
			if(exception instanceof org.openecomp.portalsdk.analytics.error.ReportSQLException)
				sql = ((org.openecomp.portalsdk.analytics.error.ReportSQLException) ex).getReportSQL(); 
			else
				sql = (String) request.getAttribute("c_error_sql"); %>
				       <% if (sql!=null && sql.length() > 0) { %>					
	<tr class=rowalt1>
		<td width="90%">
										<b class=rtabletext>SQL Execution Error:</b>
		</td>
	</tr>
	<tr class=rowalt2>
		<td width="90%">
			<font class=rtabletext><%= sql %></font>
		</td>
	</tr>
<% 			request.setAttribute("c_error_sql", sql);
	%>
				       <% } %> 
	<tr class=rowalt1>
		<td width="90%">
			<b class=rtabletext>Error Message:</b><br>
			<font class=rtabletext><%= AppUtils.getRequestNvlValue(request, "error_extra_msg") %><%= ex.getMessage() %></font>
		</td>
	</tr>
<%		if(request.getAttribute("c_error_url")!=null && !((String) request.getAttribute("c_error_url")).trim().equals("")) { %>
	<tr class=rowalt1>
		<td width="90%">
			<font class=rtabletext>Please <a href="<%= (String) request.getAttribute("c_error_url") %>">click here</a> to edit report definition.</font>
		</td>
	</tr>
<%		} %>
<% } %>
<% } %>
	<tr class=rowalt2>
		<td width="90%">
			<font class=rtabletext>** The system administrator has been notified for this error.</font>
		</td>
	</tr>
<% if(AppUtils.isAdminUser(request))  { %>	
<!-------------------------------------------------------
EXCEPTION [<%= ex!=null? ex.getMessage():"" %>]
<%	if(ex!=null) ex.printStackTrace(new PrintWriter(out)); %>
-------------------------------------------------------->
<% } %>
<% if(exception!=null) exception.printStackTrace(); %>

<%	}	// else 
%>
</table>

</form>

</body>
</html>