BirthdayController.java 5.5 KB
Newer Older
1 2 3 4
package com.roshka.controller;

import com.roshka.modelo.Birthday;
import com.roshka.repositorio.BirthdayRepository;
5
import org.apache.commons.codec.digest.DigestUtils;
6 7 8 9 10 11 12 13
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
14
import org.springframework.web.multipart.MultipartFile;
15

16 17 18 19 20 21
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.text.ParseException;
import java.text.SimpleDateFormat;
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
import java.util.Date;

@Controller
@RequestMapping("/cumples")
public class BirthdayController {

    BirthdayRepository birthdayRepository;


    @Autowired
    public BirthdayController(BirthdayRepository birthdayRepository){
        this.birthdayRepository = birthdayRepository;
    }

    @GetMapping(path = {"/agregar","/modificar/{id}"})
    public String addBirthdayView(Model model, @PathVariable(required = false) Long id) {

        if(id == null) model.addAttribute("cumple", new Birthday());
        else model.addAttribute("cumple", birthdayRepository.getById(id));
        return "birthday-form";
    }

    @RequestMapping()
    public String menuBirthdays(Model model, @RequestParam(required = false) String nombre, @RequestParam(defaultValue = "0")Integer nroPagina) {
        final Integer CANTIDAD_POR_PAGINA = 10;
        Pageable page = PageRequest.of(nroPagina,CANTIDAD_POR_PAGINA,Sort.by("id"));

        if(nombre == null || nombre.trim().isEmpty()) {
            Page<Birthday> birthdayPag=birthdayRepository.findAllBirthday(page);
            model.addAttribute("cumples", birthdayPag.getContent());
            model.addAttribute("pages", birthdayPag.getTotalPages());
        }
        else {
            Page<Birthday> birthdayPag=birthdayRepository.findByNombreCompletoContainingIgnoreCase(nombre.trim(),page);
            model.addAttribute("pages", birthdayPag.getTotalPages());
            model.addAttribute("cumples", birthdayPag.getContent());
        }
        return "birthdays";
    }

    @PostMapping(path = {"/agregar","/modificar/{id}"})
63 64 65 66 67 68 69
    public String addBirthday(@RequestPart(name = "file") MultipartFile file,
                              @RequestPart(name = "nombreCompleto") String nombreCompleto,
                              @RequestPart(name = "idSlack") String idSlack,
                              @RequestPart(name = "fecha") String fecha,
                              @PathVariable(required = false) Long id,
                              Model model) {
        if((id==null && birthdayRepository.existsByNombreCompletoIgnoreCase(nombreCompleto))){
70 71 72
            model.addAttribute("mismoNombre", true);
            return "birthday-form";
        }
73 74 75 76 77 78 79 80 81 82 83 84 85 86
        Birthday birthday = new Birthday();
        if (id != null) {
            birthday = birthdayRepository.getById(id);
        }
        birthday.setNombreCompleto(nombreCompleto);
        birthday.setIdSlack(idSlack);
        SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
        try {
            Date date = formatter.parse(fecha);
            birthday.setFecha(date);
        } catch (ParseException e) {
            throw new RuntimeException(e);
        }
        if(!file.isEmpty()) {
Amparo Oliver committed
87 88 89 90 91 92 93 94 95 96 97 98
            String originalFilename = file.getOriginalFilename();
            String fileExtension = originalFilename.substring(originalFilename.lastIndexOf(".") + 1).toLowerCase();

            // Verifica que el archivo sea jpg o png
            if (fileExtension.equals("jpg") || fileExtension.equals("png")) {
                Path directorioImagenes = Paths.get("uploadsBirthday/" + DigestUtils.md5Hex(originalFilename) + "." + fileExtension);
                String rutaAbsoluta = directorioImagenes.toFile().getAbsolutePath();
                try {
                    byte[] bytesImg = file.getBytes();
                    Path rutaCompleta = Paths.get(rutaAbsoluta);
                    Files.write(rutaCompleta, bytesImg);
                    // Si todo sale bien, guarda la foto en la base de datos
Amparo Oliver committed
99
                    birthday.setFoto("uploadsBirthday/" + DigestUtils.md5Hex(originalFilename) + "." + fileExtension);
Amparo Oliver committed
100 101 102 103 104 105 106 107 108
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            } else {
                // Maneja el caso en que el formato del archivo no sea jpg o png
                model.addAttribute("errorFormato", true);
                return "birthday-form";
            }
            /*
109 110 111 112 113 114 115
            Path directorioImagenes= Paths.get("images/"+ DigestUtils.md5Hex(file.getOriginalFilename()) + ".jpg");
            String rutaAbsoluta = directorioImagenes.toFile().getAbsolutePath();
            try {
                byte[] bytesImg=file.getBytes();
                Path rutaCompleta=Paths.get(rutaAbsoluta);
                Files.write(rutaCompleta, bytesImg);
                // si todo salio bien guardamos la foto en la base de datos
Amparo Oliver committed
116
                birthday.setFoto("http://192.168.16.90:8888/images/"+ DigestUtils.md5Hex(file.getOriginalFilename()) + ".jpg");
117 118 119
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
Amparo Oliver committed
120 121
            */

122
        }
123 124 125 126 127
        if(id != null ) birthday.setId(id);
        birthdayRepository.save(birthday);
        return "redirect:/cumples";
    }
}