Merge pull request 'Clean Shopping Cart on Logout' (#123) from feature/clean_shopping_on_logout into master

Reviewed-on: #123
Reviewed-by: Jannik Seiler <seil0@mosad.xyz>
This commit is contained in:
Jannik 2020-06-24 18:27:24 +02:00
commit 758c6810ab
1 changed files with 10 additions and 11 deletions

View File

@ -1,19 +1,16 @@
package org.hso.ecommerce.controller; package org.hso.ecommerce.controller;
import java.util.Optional; import org.hso.ecommerce.entities.shop.ShoppingCart;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.hso.ecommerce.entities.user.User; import org.hso.ecommerce.entities.user.User;
import org.hso.ecommerce.repos.user.UserRepository; import org.hso.ecommerce.repos.user.UserRepository;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest;
import org.springframework.web.bind.annotation.RequestParam; import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.util.Optional;
@Controller @Controller
@RequestMapping("/") @RequestMapping("/")
@ -62,8 +59,10 @@ public class LoginController {
} }
@PostMapping("logout") @PostMapping("logout")
public String logoutPost(HttpServletResponse response, HttpSession session) { public String logoutPost(@RequestAttribute(value = "shoppingCart") ShoppingCart shoppingCart, HttpSession session) {
session.removeAttribute("userId"); session.removeAttribute("userId");
shoppingCart.clear();
return "redirect:/"; return "redirect:/";
} }
} }