/**
 *  '$RCSfile$'
 *  Copyright: 2005 University of New Mexico and the 
 *             Regents of the University of California and the
 *             National Center for Ecological Analysis and Synthesis
 *   '$Author$'
 *     '$Date$'
 * '$Revision$'
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

package edu.ucsb.nceas.metacat.advancedsearch;

import java.io.File;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletConfig;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import edu.ucsb.nceas.metacat.client.*;
import edu.ucsb.nceas.metacat.properties.PropertyService;
import edu.ucsb.nceas.metacat.shared.ServiceException;
import edu.ucsb.nceas.metacat.util.SystemUtil;
import edu.ucsb.nceas.utilities.PropertyNotFoundException;

/** 
 * @author dcosta
 * 
 * The SearchServlet class executes a search action. This corresponds to when a
 * user fills in a simple search text box and clicks "Search".
 */
public class SearchServlet extends HttpServlet {

  /*
   * Class fields
   */
  private static final String CONFIG_DIR = "WEB-INF";
  private static final String CONFIG_NAME = "metacat.properties";
  static final long serialVersionUID = 0;  // Needed for Eclipse warning.
			   
  // Instance Variables
  private String contextString = "";

  // Methods
  
  /**
   * Executes a simple search.
   */
  public void doPost(HttpServletRequest request, HttpServletResponse response)
      throws IOException, ServletException {
    AdvancedSearch advancedSearch;
    RequestDispatcher dispatcher;
    HttpSession httpSession = request.getSession();
    Metacat metacat = (Metacat) httpSession.getAttribute("metacat");
    MetacatHelper metacatHelper = new MetacatHelper();
    String metacatURL;
    String qformat = (String) httpSession.getAttribute("qformat");
    String result = "";
    final String resultsJSP = metacatHelper.getResultsJSP();
    String searchValue;
    ServletContext servletContext = httpSession.getServletContext();
    String xslPath = metacatHelper.getResultsetXSL(request);

    // First check whether the metacat URL was set as a context-param.
    metacatURL = servletContext.getInitParameter("metacatURL");

    // If no metacat URL was configured, then derive the metacat URL from the
    // server name and server port.
    if (metacatURL == null || metacatURL.equals("")) {
      String serverName = request.getServerName();
      int serverPort = request.getServerPort();
      metacatURL = 
       metacatHelper.constructMetacatURL(serverName, serverPort, contextString);
    }

    // Tell the web server that the response is HTML
    response.setContentType("text/html");

    // Fetch the searchValue parameter from the request and execute a search
    advancedSearch = new AdvancedSearch(null);
    searchValue = request.getParameter("searchValue");
    System.err.println("Search Servlet: " + searchValue);
    result = advancedSearch.executeSearch(metacatURL, metacat, qformat, 
                                          xslPath, searchValue);

    // Store the result HTML string in the request for retrieval by
    // the metacatpathqueryresults.jsp form.
    request.setAttribute("result", result);

    dispatcher = request.getRequestDispatcher(resultsJSP);
    dispatcher.forward(request, response);
  }
  

  /**
	 * Initializes the servlet. Reads properties and initializes object fields.
	 * 
	 * @throws ServletException
	 */
	public void init(ServletConfig config) throws ServletException {
		ServletContext context = null;
		String dirPath;

		super.init(config);
		context = config.getServletContext();
		dirPath = context.getRealPath(CONFIG_DIR);

		try {
			PropertyService.getInstance();
			this.contextString = PropertyService.getProperty("application.context");
		} catch (ServiceException se) {
			System.err.println("Error in loading properties: " + se.getMessage());
		} catch (PropertyNotFoundException pnfe) {
			System.err.println("couldn't read property during initialization: "
					+ pnfe.getMessage());
		}
	}
}