PostulanteRRHHController.java 13 KB
Newer Older
1 2 3
package com.roshka.controller;


4 5
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
6
import com.roshka.DTO.ConvocatoriaDTO;
7
import com.roshka.DTO.PostulanteListaDTO;
8
import com.roshka.modelo.DBFile;
9 10
import com.roshka.modelo.EstadoPostulante;
import com.roshka.modelo.Postulante;
11
import com.roshka.modelo.TipoDeEstudio;
12
import com.roshka.repositorio.*;
13
import com.roshka.service.PdfGenerator;
14
import com.roshka.utils.PostulantesExcelExporter;
15 16 17
import org.hibernate.jpa.TypedParameterValue;
import org.hibernate.type.StringType;
import org.springframework.beans.factory.annotation.Autowired;
18 19
import org.springframework.core.io.ByteArrayResource;
import org.springframework.core.io.Resource;
20 21 22 23
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
24 25 26
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
27 28 29 30 31
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*;

Cesar Giulano Gonzalez Maqueda committed
32 33
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
34 35 36 37 38 39 40
import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
41
import java.util.stream.Collectors;
42 43 44


@Controller
45
@RequestMapping("/postulantes")
46 47 48 49 50 51 52 53 54
public class PostulanteRRHHController {
    PostulanteRepository post;
    TecnologiaRepository tecRepo;
    ExperienciaRepository expRepo;
    InstitucionRepository institucionRepository;
    DepartamentoRepository depRepo;
    CiudadRepository ciuRepo;
    EstudioRepository estudioRepository;
    PostulanteTecnologiaRepository postulanteTecnologiaRepository;
55
    ConvocatoriaRepository convRepo;
56 57 58 59 60 61 62 63 64
    CargoRepository carRepo;
    DBFileRepository fileRepo;

    @Autowired
    public PostulanteRRHHController(
            PostulanteRepository post, TecnologiaRepository tecRepo, ExperienciaRepository expRepo,
            InstitucionRepository institucionRepository, DepartamentoRepository depRepo,
            CiudadRepository ciuRepo, EstudioRepository estudioRepository,
            PostulanteTecnologiaRepository postulanteTecnologiaRepository,
65
            ConvocatoriaRepository convRepo, CargoRepository carRepo, DBFileRepository fileRepo) {
66 67 68 69 70 71 72 73
        this.post = post;
        this.tecRepo = tecRepo;
        this.expRepo = expRepo;
        this.institucionRepository = institucionRepository;
        this.depRepo = depRepo;
        this.ciuRepo = ciuRepo;
        this.estudioRepository = estudioRepository;
        this.postulanteTecnologiaRepository = postulanteTecnologiaRepository;
74
        this.convRepo =convRepo;
75 76 77 78
        this.carRepo=carRepo;
        this.fileRepo = fileRepo;
    }

79
    @RequestMapping()
80
    public String postulantes(HttpServletRequest request, Model model,
81 82 83 84 85
                            @RequestParam(required = false)Long tecId,
                            @RequestParam(required = false)String nombre,
                            @RequestParam(required = false)EstadoPostulante estado,
                            @RequestParam(required = false)Long lvlEng,
                            @RequestParam(required = false)Long lvlTec,
86
                            @RequestParam(required = false)TipoDeEstudio tipoest,
87
                            @RequestParam(required = false)String expInMonths,
88 89 90
                            @RequestParam(required = false)Long cargoId,
                            @RequestParam(required = false)Long convId, 
                            @RequestParam(defaultValue = "0")Integer nroPagina
91
                            ) throws IOException {
92

93
        final Integer CANTIDAD_POR_PAGINA = 10;
94 95
        Pageable page = PageRequest.of(nroPagina,CANTIDAD_POR_PAGINA,Sort.by("id"));
        model.addAttribute("tecnologias", tecRepo.findAll());
96
        model.addAttribute("tiposDeEstudios", TipoDeEstudio.values());
97
        model.addAttribute("estadoP", EstadoPostulante.values());
98

99 100
        model.addAttribute("cargos", carRepo.findAll());
        try {
101 102 103 104 105 106
            //se convierte a DTO las convocatorias
            model.addAttribute("convocatoriaC", new ObjectMapper().writeValueAsString(
                convRepo.findAll().stream().map(conv ->
                        new ConvocatoriaDTO(conv.getId(), conv.getCargoId(), conv.getEstado(), conv.getFechaInicio(), conv.getFechaFin()) )
                .collect(Collectors.toList()))
            );
107 108 109 110
        } catch (JsonProcessingException er) {
            // TODO Auto-generated catch block
            er.printStackTrace();
        }
111 112 113 114 115 116 117
        long infRange = 0L;
        long supRange = 1200L;
        if(expInMonths != null && !expInMonths.trim().isEmpty()){
            String[] rango = expInMonths.split("-");
            infRange = Long.parseLong(rango[0]);
            supRange = Long.parseLong(rango[1]);
        }
118 119
        Page<Postulante> postulantesPag = post.postulantesMultiFiltro(
                nombre == null || nombre.trim().isEmpty() ?
120
                new TypedParameterValue(StringType.INSTANCE,null) :
121
                new TypedParameterValue(StringType.INSTANCE,"%"+nombre.trim()+"%"),
122
                     lvlEng, lvlTec, tecId, tipoest,cargoId,page,estado,convId, infRange, supRange);
123
        model.addAttribute("numeroOcurrencias", postulantesPag.getTotalElements());
124 125 126 127
        List<Postulante> postulantes = postulantesPag.getContent();
        List<PostulanteListaDTO> postulantesDTO = new ArrayList<>();
        
        for (Postulante postulante : postulantes) {
128
            postulantesDTO.add(new PostulanteListaDTO(postulante.getId(), postulante.getNombre(),
129
                    postulante.getApellido(), postulante.getNivelIngles(),
130 131
                    postulante.getMesesDeExperiencia(), postulante.getTecnologias(),postulante.getEstadoPostulante(),
                    postulante.getPostulaciones()));
132
        }
133

134 135
        model.addAttribute("pages", postulantesPag.getTotalPages());
        model.addAttribute("postulantes", postulantesDTO);
136 137 138 139

        String query = request.getQueryString();
        model.addAttribute("query", query);

140 141
        return "postulantes";
    }
142 143


144
    @RequestMapping("/excel")
145 146 147 148 149 150
    public void exportPostulantesExcel(HttpServletResponse response, Model model,
                                       @RequestParam(required = false)Long tecId,
                                       @RequestParam(required = false)String nombre,
                                       @RequestParam(required = false)EstadoPostulante estado,
                                       @RequestParam(required = false)Long lvlEng,
                                       @RequestParam(required = false)Long lvlTec,
151
                                       @RequestParam(required = false)TipoDeEstudio tipoest,
152
                                       @RequestParam(required = false)String expInMonths,
153 154 155 156 157
                                       @RequestParam(required = false)Long cargoId,
                                       @RequestParam(required = false)Long convId,
                                       @RequestParam(defaultValue = "0")Integer nroPagina
    ) throws IOException {
        Pageable page = PageRequest.of(0,Integer.MAX_VALUE,Sort.by("id"));
158 159 160 161 162 163 164
        long infRange = 0L;
        long supRange = 1200L;
        if(expInMonths != null && !expInMonths.trim().isEmpty()){
            String[] rango = expInMonths.split("-");
            infRange = Long.parseLong(rango[0]);
            supRange = Long.parseLong(rango[1]);
        }
165 166 167 168
        Page<Postulante> postulantesPag = post.postulantesMultiFiltro(
                nombre == null || nombre.trim().isEmpty() ?
                        new TypedParameterValue(StringType.INSTANCE,null) :
                        new TypedParameterValue(StringType.INSTANCE,"%"+nombre+"%"),
169
                        lvlEng, lvlTec, tecId, tipoest,cargoId,page,estado,convId, infRange, supRange);
170 171 172 173
        List<Postulante> postulantes = postulantesPag.getContent();
        List<PostulanteListaDTO> postulantesDTO = new ArrayList<>();

        for (Postulante postulante : postulantes) {
174
            postulantesDTO.add(new PostulanteListaDTO(postulante.getId(), postulante.getNombre(),
175
                    postulante.getApellido(), postulante.getNivelIngles(),
176 177
                    postulante.getMesesDeExperiencia(), postulante.getTecnologias(),postulante.getEstadoPostulante(),
                    postulante.getPostulaciones()));
178 179 180 181 182 183 184 185 186 187 188
        }

        response.setContentType("application/octet-stream");
        DateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd_HH:mm:ss");
        String currentDateTime = dateFormatter.format(new Date());

        String headerKey = "Content-Disposition";
        String headerValue = "attachment; filename=postulantes_" + currentDateTime + ".xlsx";
        response.setHeader(headerKey, headerValue);

        HashMap<String, String> filtros = new HashMap<String, String>();
189
        filtros.put("nombre", nombre == null ? "-":nombre);
190 191 192
        filtros.put("nivelIngles", lvlEng == null ? "-" : lvlEng.toString());
        filtros.put("tecnologia", tecId == null ? "-" : tecRepo.findById(tecId).get().getNombre());
        filtros.put("nivelTecnologia", lvlTec == null ? "-" : lvlTec.toString());
193 194
        filtros.put("tipoDeEstudio", tipoest == null ? "-" : tipoest.getName());
    filtros.put("estado", estado == null ? "-" : estado.getEstado());
195
        filtros.put("experienciaEnMeses", expInMonths == null ? "-" : expInMonths.toString());
196 197
        filtros.put("convocatoria", convId == null ? "-" : convRepo.findById(convId).get().getCargo().getNombre());
        filtros.put("convocatoriaFecha", convId == null ? "-" : convRepo.findById(convId).get().getFechaInicio().toString());
198 199 200 201 202

        PostulantesExcelExporter excelExporter = new PostulantesExcelExporter(postulantesDTO, filtros);

        excelExporter.export(response);
    }
203 204
 

205
    @GetMapping({"/{postulanteId}"})
206 207 208 209 210 211 212 213
    public String getPostulanteDetalle(Model model, @PathVariable("postulanteId") Long postulanteId) {
        Postulante p = post.findById(postulanteId).orElse(null);
        model.addAttribute("postulante",p);
        model.addAttribute("cvId", fileRepo.getIdByPostulante(p));
        model.addAttribute("estadoP", EstadoPostulante.values());				
        return "detallepostulante";
        
    }
214 215


216
    @PostMapping({"/{postulanteId}"})
217 218 219 220
    public String setPostulanteEstado(@ModelAttribute Postulante postulante, BindingResult result, @PathVariable("postulanteId") Long postulanteId) {
        //post.setPostulanteEstadoAndComentario(postulante.getEstadoPostulante(),postulante.getComentarioRRHH(), postulante.getId());
        Postulante postulanteVd = post.getById(postulanteId);
        postulanteVd.setEstadoPostulante(postulante.getEstadoPostulante());
221 222 223 224
        //si se le contrata, actualizar la fecha actual
        if(postulanteVd.getEstadoPostulante() == EstadoPostulante.CONTRATADO){
            postulanteVd.setFechaContratado(new Date());
        }
225 226 227
        postulanteVd.setComentarioRRHH(postulante.getComentarioRRHH());
        post.setPostulanteEstadoAndComentario(postulante.getEstadoPostulante(), postulante.getComentarioRRHH(), postulanteId);
        //post.save(postulanteVd);
228
        return "redirect:/postulantes/"+postulanteId;
229 230
    }

231
    @GetMapping("/cvFile/{fileId}")
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
    public ResponseEntity<Resource> downloadFile(@PathVariable String fileId) {
        // Load file from database
        DBFile dbFile;
        try {
            dbFile = fileRepo.findById(fileId)
            .orElseThrow(() -> new Exception("File not found with id " + fileId));
            return ResponseEntity.ok()
                    .contentType(MediaType.parseMediaType(dbFile.getFileType()))
                    .header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + dbFile.getFileName() + "\"")
                    .body(new ByteArrayResource(dbFile.getData()));
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return ResponseEntity.notFound().build();
        }

    }
249

250
    @GetMapping("/{id}/pdf")
251 252 253 254 255 256 257 258 259 260
    public ResponseEntity<Resource> downloadPDF(@PathVariable Long id) {
        // Load file from database
        PdfGenerator pdf =  new PdfGenerator();
        
        
        try {
            Postulante postulante = post.findById(id)
            .orElseThrow(() -> new Exception("Postulante no encontrado"));
            return ResponseEntity.ok()
                    .contentType(MediaType.parseMediaType("application/pdf"))
261
                    .header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + postulante.getNroDocument() + ".pdf" + "\"")
262 263 264 265 266 267 268 269
                    .body(new ByteArrayResource(pdf.generatePdfReport(postulante)));
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return ResponseEntity.notFound().build();
        }

    }
270 271
}