MainController.java 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package org.example.sweater.controller;
  2. import jakarta.servlet.http.HttpServletRequest;
  3. import org.example.sweater.domain.Message;
  4. import org.example.sweater.domain.User;
  5. import org.example.sweater.repos.MessagesRepository;
  6. import org.springframework.security.core.annotation.AuthenticationPrincipal;
  7. import org.springframework.security.web.csrf.CsrfToken;
  8. import org.springframework.stereotype.Controller;
  9. import org.springframework.ui.Model;
  10. import org.springframework.web.bind.annotation.GetMapping;
  11. import org.springframework.web.bind.annotation.ModelAttribute;
  12. import org.springframework.web.bind.annotation.PostMapping;
  13. import org.springframework.web.bind.annotation.RequestParam;
  14. import java.util.Map;
  15. @Controller
  16. public class MainController {
  17. public MainController(MessagesRepository messagesRepository) {
  18. this.messagesRepository = messagesRepository;
  19. }
  20. private final MessagesRepository messagesRepository;
  21. @ModelAttribute
  22. public void addCsrfToken(Model model, HttpServletRequest request) {
  23. CsrfToken token = (CsrfToken) request.getAttribute(CsrfToken.class.getName());
  24. model.addAttribute("_csrf", token);
  25. }
  26. @GetMapping("/")
  27. public String mainPage() {
  28. return "main";
  29. }
  30. @GetMapping("/feed")
  31. public String feed(
  32. @RequestParam(required = false)
  33. String tag,
  34. @RequestParam(required = false)
  35. String prefix,
  36. Model model
  37. ) {
  38. Iterable<Message> messages;
  39. if (prefix != null && !prefix.isEmpty()) {
  40. messages = messagesRepository.findByTextStartingWith(prefix);
  41. model.addAttribute("search", prefix);
  42. } else if (tag != null && !tag.isEmpty()) {
  43. messages = messagesRepository.findByTag(tag);
  44. model.addAttribute("tag", tag);
  45. } else {
  46. messages = messagesRepository.findAll();
  47. }
  48. model.addAttribute("messages", messages);
  49. return "feed";
  50. }
  51. @PostMapping("/feed")
  52. public String addMessage(
  53. @AuthenticationPrincipal User user,
  54. @RequestParam String text,
  55. @RequestParam String tag,
  56. Map<String, Object> model
  57. ) {
  58. Message createdMessage = new Message(text, tag, user);
  59. messagesRepository.save(createdMessage);
  60. Iterable<Message> allMessages = messagesRepository.findAll();
  61. model.put("messages", allMessages);
  62. return "feed";
  63. }
  64. @PostMapping("/feed/delete")
  65. public String removeMessageById(
  66. @RequestParam String id,
  67. Map<String, Object> model
  68. ) {
  69. Long idAsInt = Long.parseLong(id);
  70. messagesRepository.deleteById(idAsInt);
  71. Iterable<Message> foundMessages = messagesRepository.findAll();
  72. model.put("messages", foundMessages);
  73. return "feed";
  74. }
  75. }