source: Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PostController.java@ 3c7bf5b

main
Last change on this file since 3c7bf5b was 3c7bf5b, checked in by SazdovaEkaterina <sazdovaekaterina@…>, 17 months ago

link to home and add headers

  • Property mode set to 100644
File size: 3.9 KB
Line 
1package finki.paw5.web.controllers;
2
3import finki.paw5.model.entities.PersonalProfile;
4import finki.paw5.model.entities.Pet;
5import finki.paw5.model.entities.Post;
6import finki.paw5.model.entities.Shelter;
7import finki.paw5.model.enumerations.AgeGroup;
8import finki.paw5.model.enumerations.Gender;
9import finki.paw5.model.enumerations.Size;
10import finki.paw5.model.enumerations.Species;
11import finki.paw5.service.PersonalProfileService;
12import finki.paw5.service.PetService;
13import finki.paw5.service.PostService;
14import finki.paw5.service.ShelterService;
15import jakarta.servlet.http.HttpServletRequest;
16import org.springframework.stereotype.Controller;
17import org.springframework.ui.Model;
18import org.springframework.web.bind.annotation.GetMapping;
19import org.springframework.web.bind.annotation.PathVariable;
20import org.springframework.web.bind.annotation.PostMapping;
21import org.springframework.web.bind.annotation.RequestParam;
22
23import java.time.LocalDate;
24import java.util.List;
25
26@Controller
27public class PostController {
28
29 private final PostService postService;
30 private final PetService petService;
31 private final PersonalProfileService personalProfileService;
32
33 public PostController(PostService postService, PetService petService, PersonalProfileService personalProfileService, ShelterService shelterService) {
34 this.postService = postService;
35 this.petService = petService;
36 this.personalProfileService = personalProfileService;
37 }
38
39 @GetMapping("create-post")
40 public String get(Model model) {
41 //TODO: vakvo ama za lista so pets
42 // List<Manufacturer> manufacturers = this.manufacturerService.findAll();
43 // model.addAttribute("manufacturers", manufacturers);
44 return "create-post";
45 }
46
47 @PostMapping("submit-post")
48 public String savePost(@RequestParam(required = false) String name,
49 @RequestParam String gender,
50 @RequestParam String ageGroup,
51 @RequestParam String size,
52 @RequestParam String species,
53 @RequestParam(required = false) String breed,
54 @RequestParam(required = false) String imageUrl,
55 @RequestParam(required = false) boolean canBeFostered) {
56
57 Pet pet = new Pet(imageUrl, AgeGroup.valueOf(ageGroup), Size.valueOf(size), breed, name, Species.valueOf(species), Gender.valueOf(gender), canBeFostered, null, 1);
58 this.petService.save(pet);
59
60 Post post = new Post(LocalDate.now(), imageUrl, pet.getId(), null, 10);//TODO: employee id da se zeme preku session user getid
61 this.postService.save(post);
62
63 return "redirect:/home";
64 }
65
66 @GetMapping("/adoption-posts")
67 public String getAdoptionPosts(Model model, HttpServletRequest request){
68
69 List<Post> posts = this.postService.findAll();
70 List<Pet> pets = this.petService.findAll();
71 //model.addAttribute("posts", posts);
72 //model.addAttribute("pets",pets);
73 request.getSession().setAttribute("posts",posts);//temp
74 request.getSession().setAttribute("pets",pets);//temp
75
76 return "list-posts-adoption";
77 }
78
79 @GetMapping("/pet-details-{id}")
80 public String getPostDetails(@PathVariable Integer id, Model model, HttpServletRequest request){
81
82 Post post = this.postService.findById(id).get();
83 Pet pet = this.petService.findById(post.getPetId()).get();
84
85 //model.addAttribute("pet", pet);
86 //model.addAttribute("post", post);
87 request.getSession().setAttribute("post", post);//temp
88 request.getSession().setAttribute("pet", pet);//temp
89
90 if(pet.getAdoptionId() != null){
91 request.getSession().setAttribute("disableAdoption", true);
92 } else{
93 request.getSession().setAttribute("disableAdoption", false);
94 }
95
96 return "pet-details";
97 }
98}
Note: See TracBrowser for help on using the repository browser.