Filtros.java 2.61 KB
Newer Older
1 2
package com.roshka.proyectofinal.Postulante;

3
import com.roshka.proyectofinal.entity.Postulante;
4 5 6 7 8 9 10
import jakarta.servlet.RequestDispatcher;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
11 12 13 14
import java.util.ArrayList;
import java.util.List;

import static com.roshka.proyectofinal.Postulante.PostulanteDao.*;
15 16 17 18 19 20

@WebServlet("/filtros-postulante")
public class Filtros extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
21 22
        List<Postulante> postulantes = listarPostulante();
        String respuesta = req.getParameter("id");
Jose Baez committed
23
        String valor = req.getParameter("valor");
Josebaezx committed
24
        String nombre = req.getParameter("nombreBuscar")== null ? "0" : req.getParameter("nombreBuscar");
25
        if(respuesta != null) {
Jose Baez committed
26 27
            System.out.println(valor);
            System.out.println(respuesta);
28
            update(Integer.parseInt(req.getParameter("id")), valor);
Josebaezx committed
29 30
            postulantes = listarPostulante();
        } else if(nombre.length() > 1){
31 32 33 34
            postulantes = buscarPorNombre(nombre);
        }

        req.getServletContext().setAttribute("postulantes", postulantes);
35 36 37
        RequestDispatcher reqDisp= req.getRequestDispatcher("postulante-consulta.jsp");
        reqDisp.forward(req,resp);
    }
38

Josebaezx committed
39 40
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
41 42 43 44 45 46 47
        String respuesta = req.getParameter("nombre");

        if(respuesta.equals("aceptado")){
            List<Postulante> postulantes = listarPostulanteAceptados();
            req.getServletContext().setAttribute("postulantes", postulantes);
            RequestDispatcher reqDisp= req.getRequestDispatcher("postulante-consulta.jsp");
            reqDisp.forward(req,resp);
48 49 50 51 52 53
        } else if (respuesta.equals("notebook")) {
            List<Postulante> postulantes = buscarPorNoteBook();
            req.getServletContext().setAttribute("postulantes", postulantes);
            RequestDispatcher reqDisp= req.getRequestDispatcher("postulante-consulta.jsp");
            reqDisp.forward(req,resp);
        } else {
54 55 56 57 58 59 60
            List<Postulante> postulantes = listarPorBootcamp(respuesta);
            req.getServletContext().setAttribute("postulantes", postulantes);
            RequestDispatcher reqDisp= req.getRequestDispatcher("postulante-consulta.jsp");
            reqDisp.forward(req,resp);
        }


Josebaezx committed
61
    }
62
}