web.log-view.downloadgz-ajaxprocessor.jsp Maven / Gradle / Ivy
<%@page import="java.io.OutputStreamWriter"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib uri="http://wso2.org/projects/carbon/taglibs/carbontags.jar" prefix="carbon" %>
<%@ page import="org.wso2.carbon.logging.view.ui.LogViewerClient" %>
<%@ page import="org.apache.axis2.context.ConfigurationContext" %>
<%@ page import="org.wso2.carbon.CarbonConstants" %>
<%@ page import="org.wso2.carbon.utils.ServerConstants" %>
<%@ page import="org.wso2.carbon.ui.CarbonUIUtil" %>
<%@ page import="org.wso2.carbon.utils.CarbonUtils" %>
<%@ page import="org.wso2.carbon.ui.CarbonUIMessage" %>
<%
String backendServerURL = CarbonUIUtil
.getServerURL(config.getServletContext(), session);
ConfigurationContext configContext = (ConfigurationContext) config.getServletContext()
.getAttribute(CarbonConstants.CONFIGURATION_CONTEXT);
String cookie = (String) session.getAttribute(ServerConstants.ADMIN_SERVICE_COOKIE);
LogViewerClient logViewerClient;
String message = "";
String tenantDomain ="";
String serviceName = "WSO2 Stratos Manager";
String downloadFile = request.getParameter("logFile");
String fileName = downloadFile;
//String fileName = downloadFile.replace(".gz","");
try {
out.clear();
out = pageContext.pushBody();
out.clearBuffer();
tenantDomain = request.getParameter("tenantDomain");
serviceName = request.getParameter("serviceName");
tenantDomain = (tenantDomain == null) ? "" : tenantDomain;
serviceName = (serviceName == null) ? "WSO2 Stratos Manager" : serviceName;
logViewerClient = new LogViewerClient(cookie, backendServerURL, configContext);
logViewerClient.downloadArchivedLogFiles(fileName,response, tenantDomain, serviceName);
//out.flush();
// out.close();
} catch (Exception e) {
CarbonUIMessage.sendCarbonUIMessage(e.getMessage(), CarbonUIMessage.ERROR, request,
e);
%>
<%
return;
}
%>