com.jaeksoft.searchlib.web.controller.report.QueryReportsController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2012 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSearchServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.web.controller.report;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
import java.util.List;
import java.util.Map;
import org.zkoss.bind.annotation.AfterCompose;
import org.zkoss.bind.annotation.Command;
import org.zkoss.zul.Filedownload;
import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.facet.Facet;
import com.jaeksoft.searchlib.facet.FacetCounter;
import com.jaeksoft.searchlib.query.ParseException;
import com.jaeksoft.searchlib.report.ReportsManager;
import com.jaeksoft.searchlib.util.IOUtils;
@AfterCompose(superclass = true)
public class QueryReportsController extends ReportsController {
private Date beginDate;
private Date endDate;
private String queryType;
private int numberOfQuery;
private String topKeywords;
private List> reportList;
public QueryReportsController() throws SearchLibException {
super();
}
@Override
protected void reset() throws SearchLibException {
beginDate = new Date();
endDate = new Date();
queryType = "topqueries";
numberOfQuery = 100;
reportList = null;
}
@Command
public void onCreateReport() throws SearchLibException, ParseException {
ReportsManager reports = getReportsManager();
Facet facetReportsList = null;
if ("topqueries".equals(queryType)) {
facetReportsList = reports.getSearchReport(topKeywords, beginDate, endDate, true, numberOfQuery);
} else if ("topqueriesnoresult".equals(queryType)) {
facetReportsList = reports.getSearchReport(topKeywords, beginDate, endDate, false, numberOfQuery);
}
if (facetReportsList != null)
reportList = facetReportsList.getList();
reload();
}
public List> getReportList() {
return reportList;
}
public boolean isReportListExists() {
return reportList != null;
}
@Command
public void onExportReport() throws SearchLibException, IOException {
PrintWriter pw = null;
try {
File tempFile = File.createTempFile("OSS_Query_Reports", "csv");
pw = new PrintWriter(tempFile);
for (Map.Entry facetItem : reportList) {
pw.print('"');
pw.print(facetItem.getKey().replaceAll("\"", "\"\""));
pw.print('"');
pw.print(',');
pw.println(facetItem.getValue().count);
}
pw.close();
pw = null;
Filedownload.save(new FileInputStream(tempFile), "text/csv; charset-UTF-8", "OSS_Query_Reports.csv");
} finally {
IOUtils.close(pw);
}
}
/**
* @return the beginDate
*/
public Date getBeginDate() {
return beginDate;
}
/**
* @param beginDate
* the beginDate to set
*/
public void setBeginDate(Date beginDate) {
this.beginDate = beginDate;
}
/**
* @return the endDate
*/
public Date getEndDate() {
return endDate;
}
/**
* @param endDate
* the endDate to set
*/
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
/**
* @return the queryType
*/
public String getQueryType() {
return queryType;
}
/**
* @param queryType
* the queryType to set
*/
public void setQueryType(String queryType) {
this.queryType = queryType;
}
/**
* @return the numberOfQuery
*/
public int getNumberOfQuery() {
return numberOfQuery;
}
/**
* @param numberOfQuery
* the numberOfQuery to set
*/
public void setNumberOfQuery(int numberOfQuery) {
this.numberOfQuery = numberOfQuery;
}
/**
* @return the topKeywords
*/
public String getTopKeywords() {
return topKeywords;
}
/**
* @param topKeywords
* the topKeywords to set
*/
public void setTopKeywords(String topKeywords) {
this.topKeywords = topKeywords;
}
}