controllers.ControladorFotoCoin.java Source code

Java tutorial

Introduction

Here is the source code for controllers.ControladorFotoCoin.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package controllers;

import business.PmtIntercambioFotosDTO;
import business.PmtMatchDTO;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;

/**
 *
 * @author patriciacuevas
 */
public class ControladorFotoCoin extends HttpServlet {

    /**
     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
     * methods.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html;charset=UTF-8");
        try (PrintWriter out = response.getWriter()) {
            /* TODO output your page here. You may use following sample code. */
            out.println("<!DOCTYPE html>");
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet ControladorFotoCoin</title>");
            out.println("</head>");
            out.println("<body>");
            out.println("<h1>Servlet ControladorFotoCoin at " + request.getContextPath() + "</h1>");
            out.println("</body>");
            out.println("</html>");
        }
    }

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /**
     * Handles the HTTP <code>GET</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        String userPath = request.getServletPath();
        //pasar a jspf 
        if (userPath.equals("/ControladorFotoCoin")) {
            int idMatch = Integer.parseInt(request.getParameter("idMatch"));
            request.setAttribute("idMatch", idMatch);
            userPath = "enviarFotoCoincidente";

        } else if (userPath.equals("/Notificar")) {
            // int idMatch = Integer.parseInt(request.getParameter("idUsuario")); cuando se genere el match

        }

        String url = "WEB-INF/view/" + userPath + ".jspf";
        RequestDispatcher rd = request.getRequestDispatcher(url);
        rd.forward(request, response);
    }

    /**
     * Handles the HTTP <code>POST</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        int idMatch = Integer.parseInt(request.getParameter("idMatch"));
        String userPath = "";
        String UPLOAD_DIRECTORY = "/Users/patriciacuevas/NetBeansProjects/PerfectMatchTis2/web/fotosUsuarios";
        if (ServletFileUpload.isMultipartContent(request)) {
            String pathFile = "";
            try {
                List<FileItem> multiparts = new ServletFileUpload(new DiskFileItemFactory()).parseRequest(request);

                for (FileItem item : multiparts) {
                    if (!item.isFormField()) {
                        String name = new File(item.getName()).getName();
                        pathFile = UPLOAD_DIRECTORY + File.separator + name;
                        item.write(new File(pathFile));

                    }
                }

                PmtMatchDTO match = new PmtMatchDTO();
                match.setMatId(idMatch);

                PmtIntercambioFotosDTO intercambio = new PmtIntercambioFotosDTO();
                intercambio.setInfRutaUsuarioCoincidente(pathFile);
                intercambio.setMat(match);

                intercambio.guardar(intercambio);

                request.setAttribute("message", "Su foto fue enviada exitosamente");
                userPath = "cliente";

            } catch (Exception ex) {
                request.setAttribute("message", "Error al cargar el archivo");
                userPath = "enviarFotoCoincidente";
            }

            String url = "WEB-INF/view/" + userPath + ".jspf";
            RequestDispatcher rd = request.getRequestDispatcher(url);
            rd.forward(request, response);
        }
    }

    /**
     * Returns a short description of the servlet.
     *
     * @return a String containing servlet description
     */
    @Override
    public String getServletInfo() {
        return "Short description";
    }// </editor-fold>

}