source: src/main/java/com/example/autopartz/controller/HomeController.java@ 7d43957

main
Last change on this file since 7d43957 was 7d43957, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Added functionalities

  • Property mode set to 100644
File size: 7.4 KB
Line 
1package com.example.autopartz.controller;
2
3import com.example.autopartz.model.Order;
4import com.example.autopartz.model.User;
5import com.example.autopartz.model.Warehouse;
6import com.example.autopartz.repository.OrderContainsPartRepository;
7import com.example.autopartz.repository.PartsForCarTypeAndCategoryRepository;
8import com.example.autopartz.repository.RepairShopReviewSummaryRepository;
9import com.example.autopartz.repository.WarehouseRepository;
10import com.example.autopartz.service.*;
11import org.springframework.stereotype.Controller;
12import org.springframework.ui.Model;
13import org.springframework.web.bind.annotation.GetMapping;
14import org.springframework.web.bind.annotation.PostMapping;
15import org.springframework.web.bind.annotation.RequestMapping;
16import org.springframework.web.bind.annotation.RequestParam;
17
18import javax.servlet.http.HttpServletRequest;
19import javax.servlet.http.HttpServletResponse;
20import javax.servlet.http.HttpSession;
21import java.io.IOException;
22import java.util.Objects;
23
24@Controller
25@RequestMapping("/")
26public class HomeController {
27 private final LoginService loginService;
28 private final PartService partService;
29 private final PartsForCarTypeAndCategoryRepository partsForCarTypeAndCategoryRepository;
30 private final CarService carService;
31 private final CategoryService categoryService;
32 private final RepairShopReviewSummaryRepository repairShopReviewSummaryRepository;
33 private final WarehouseRepository warehouseRepository;
34 private final OrderContainsPartRepository orderContainsPartRepository;
35 private final OrderService orderService;
36
37 public HomeController(LoginService loginService, PartService partService, PartsForCarTypeAndCategoryRepository partsForCarTypeAndCategoryRepository, CarService carService, CategoryService categoryService, RepairShopReviewSummaryRepository repairShopReviewSummaryRepository, WarehouseRepository warehouseRepository,
38 OrderContainsPartRepository orderContainsPartRepository, OrderService orderService) {
39 this.loginService = loginService;
40 this.partService = partService;
41 this.partsForCarTypeAndCategoryRepository = partsForCarTypeAndCategoryRepository;
42 this.carService = carService;
43 this.categoryService = categoryService;
44 this.repairShopReviewSummaryRepository = repairShopReviewSummaryRepository;
45 this.warehouseRepository = warehouseRepository;
46 this.orderContainsPartRepository = orderContainsPartRepository;
47 this.orderService = orderService;
48 }
49
50 @GetMapping()
51 public String getHomePage(Model model, HttpServletRequest request){
52 model.addAttribute("bodyContent","home");
53 model.addAttribute("user",request.getRemoteUser());
54 return "master-template";
55 }
56 @GetMapping("/products")
57 public String getProducts(Model model){
58 model.addAttribute("parts",partService.findAll());
59 model.addAttribute("cars",carService.findAll());
60 model.addAttribute("categories",categoryService.findAll());
61 model.addAttribute("bodyContent","products");
62 return "master-template";
63 }
64 @GetMapping("/services")
65 public String getServices(Model model){
66 model.addAttribute("services",repairShopReviewSummaryRepository.findAll());
67 model.addAttribute("bodyContent","services");
68 return "master-template";
69 }
70 @GetMapping("/currentOrder")
71 public String getCurrentOrder(Model model,HttpSession session){
72 if(session.getAttribute("order")==null){
73 model.addAttribute("hasError",true);
74 model.addAttribute("error","Нарачката е празна");
75 }
76 else {
77 Order o = (Order) session.getAttribute("order");
78 model.addAttribute("hasError",false);
79 model.addAttribute("order",o);
80 model.addAttribute("parts",orderService.findById(o.getID_order()).getPartList());
81 }
82 model.addAttribute("bodyContent","currentOrder");
83 return "master-template";
84 }
85 @GetMapping("/filtered")
86 public String getPartsForCarTypeAndCategory(@RequestParam String cartype, @RequestParam String category, Model model){
87 model.addAttribute("filtered", partsForCarTypeAndCategoryRepository.findAllByCartypeAndCategory(cartype,category));
88 model.addAttribute("bodyContent","filteredParts");
89 return "master-template";
90 }
91 @GetMapping("/login")
92 public String getLoginPage(Model model){
93 model.addAttribute("bodyContent","login");
94 return "master-template";
95 }
96 @GetMapping("/register")
97 public String getRegisterPage(Model model){
98 model.addAttribute("bodyContent","register");
99 return "master-template";
100 }
101 @PostMapping("/login")
102 public void handleLogin(@RequestParam String username, @RequestParam String password){
103 User u = loginService.login(username,password);
104 System.out.println(u.getName_user());
105 }
106 @PostMapping("/register")
107 public void handleRegister(@RequestParam String username, @RequestParam String name,
108 @RequestParam String password, @RequestParam String rpassword,
109 @RequestParam String email, @RequestParam String number,
110 @RequestParam String role, HttpServletResponse response, HttpSession session){
111 System.out.println(username + name + password + rpassword + email + number + role);
112 if(Objects.equals(role, "warehouseman")){
113 session.setAttribute("username", username);
114 session.setAttribute("name", name);
115 session.setAttribute("password", password);
116 session.setAttribute("rpassword", rpassword);
117 session.setAttribute("email", email);
118 session.setAttribute("number", number);
119 try {
120 response.sendRedirect("/registerWarehouseman");
121 } catch (IOException e) {
122 throw new RuntimeException(e);
123 }
124 }
125 else {
126 loginService.register(name, username, email, number, password, role);
127 try {
128 response.sendRedirect("/login");
129 } catch (IOException e) {
130 throw new RuntimeException(e);
131 }
132 }
133 }
134 @GetMapping("/registerWarehouseman")
135 public String getSelectPage(Model model){
136 model.addAttribute("locations",warehouseRepository.findAll());
137 model.addAttribute("bodyContent","selectWarehouse");
138 return "master-template";
139 }
140 @PostMapping("/finishRegister")
141 public void handleWarehousemanRegister(@RequestParam String location,Model model, HttpServletResponse response, HttpSession session){
142 System.out.println("here?");
143 String username = (String) session.getAttribute("username");
144 String name = (String) session.getAttribute("name");
145 String password = (String) session.getAttribute("password");
146 String email = (String) session.getAttribute("email");
147 String number = (String) session.getAttribute("number");
148 Warehouse warehouse = warehouseRepository.findAllByLocation(location).stream().findFirst().orElseThrow(RuntimeException::new);
149 loginService.registerWarehouseman(name,username,email,number,password,"warehouseman",warehouse);
150 try {
151 response.sendRedirect("/login");
152 } catch (IOException e) {
153 throw new RuntimeException(e);
154 }
155 }
156}
Note: See TracBrowser for help on using the repository browser.