package hirondelle.fish.main.reports;

import java.util.*;

import hirondelle.fish.util.ReqParam;
import hirondelle.fish.util.TemplatedPage;
import hirondelle.web4j.model.AppException;
import hirondelle.web4j.security.SafeText;
import hirondelle.web4j.action.ActionImpl;
import hirondelle.web4j.request.RequestParameter;
import hirondelle.web4j.request.RequestParser;
import hirondelle.web4j.action.ResponsePage;
import hirondelle.web4j.database.DAOException;
import hirondelle.web4j.database.DynamicCriteria;
import hirondelle.web4j.database.SqlId;
import hirondelle.web4j.database.Report;

/**
* Number of visits for each member.
* 
* @sql reports.sql VISITS_PER_MEMBER
* @view Report2.jsp
*/
public final class Report2Action extends ActionImpl {

  /** Constructor.   */
  public Report2Action(RequestParser aRequestParser){
    super(FORWARD, aRequestParser);
  }
  
  /** Fetch report data and display it. */
  public ResponsePage execute() throws AppException {
    addToRequest(ITEMS_FOR_LISTING, getListing());
    return getResponsePage();
  }
  
  public static final SqlId REPORT_SQL = new SqlId("VISITS_PER_MEMBER");
  /** Used for sorting mechanism.  */
  public static final RequestParameter SORT_ON = ReqParam.SORT_ON;
  /** Used for sorting mechanism.  */
  public static final RequestParameter ORDER = ReqParam.ORDER;
  
  // PRIVATE //
  private static final ResponsePage FORWARD = TemplatedPage.get("Report 2", "Report2.jsp", Report2Action.class);
  private static final String DEFAULT_ORDER_BY = "ORDER BY 2 DESC, 1 ASC";
  
  /** 
  * Returns a List of Maps.
  * 
  * The Map key is column name, and the map value is the column value. 
  */
  private List<Map<String, SafeText>> getListing() throws DAOException {
    return Report.raw(REPORT_SQL, getCustomSort());
  }
  
  private DynamicCriteria getCustomSort(){
    return getOrderBy(SORT_ON, ORDER, DEFAULT_ORDER_BY);
  }
}