src/Controller/Cart/CartController.php line 31

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Cart;
  3. use App\Entity\Cart;
  4. use App\Form\CartType;
  5. use App\Repository\CartRepository;
  6. use App\Services\CartServices;
  7. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  8. use Symfony\Component\HttpFoundation\Request;
  9. use Symfony\Component\HttpFoundation\Response;
  10. use Symfony\Component\Routing\Annotation\Route;
  11. class CartController extends AbstractController
  12. {
  13.     /**
  14.      * @var CartServices
  15.      */
  16.     private $cartServices;
  17.     public function __construct(CartServices $cartServices)
  18.     {
  19.         $this->cartServices $cartServices;
  20.     }
  21.     /**
  22.      * @Route("/cart/eyhListeOfcart", name="cart")
  23.      * @return Response
  24.      */
  25.     public function index(): Response
  26.     {
  27.         $cart $this->cartServices->getFullCart();
  28.         if(!isset($cart['products'])){
  29.             return $this->redirectToRoute('home');
  30.         }
  31.         return $this->render('cart/index.html.twig',[
  32.             'cart' => $cart,
  33.             'is_cart' => true
  34.         ]);
  35.     }
  36.     /**
  37.      * cart_add
  38.      *
  39.      * @Route("/785hdjii{id}785olkj", name="cart_add")
  40.      * @param $id
  41.      * @return Response
  42.      */
  43.     public function addToCart($id):Response{
  44.         $this->cartServices->addToCart($id);
  45.         return $this->redirectToRoute('cart');
  46.     }
  47.     /**
  48.      * Permet d'ajouter un produit et sa quantite cart_add_fm
  49.      *
  50.      * @Route("/855i85{id}oskiisue", name="cart_add_form")
  51.      * @param $id
  52.      * @param Request $request
  53.      * @return Response
  54.      */
  55.     public function addToCartWithForm($id,Request $request):Response{
  56.         $qte $request->request->get('quantity_product');
  57.         $this->cartServices->addToCartForm($id,$qte);
  58.         $template $this->render('cart/cart.html.twig');
  59.         $cart $this->cartServices->getFullCartJson($id);
  60.         return $this->json([
  61.             'cart' => $cart,
  62.             'template' => $template
  63.         ]);
  64.     }
  65.     /**
  66.      * Permet d'augmenter un produit au panier Json cart_add_js
  67.      *
  68.      * @Route("/udidkd5{id}7452", name="cart_add_json")
  69.      * @param $id
  70.      * @return Response
  71.      */
  72.     public function addToCartJson($id):Response{
  73.         $this->cartServices->addToCart_OneItem($id);
  74.         $cart $this->cartServices->getFullCartJson($id);
  75.         return $this->json($cart);
  76.     }
  77.     /**
  78.      * Permet d'augmenter un produit au panier Avec image Json
  79.      *
  80.      * @Route("/oiqfi47585/h855{id}yoiop", name="cart_add_file_js")
  81.      * @param $id
  82.      * @return Response
  83.      */
  84.     public function addToCartJsonFile($id):Response{
  85.         $this->cartServices->addToCart($id);
  86.         $template $this->render('cart/cart.html.twig');
  87.         $cart $this->cartServices->getFullCartJson($id);
  88.         return $this->json([
  89.             'cart' => $cart,
  90.             'template' => $template
  91.         ]);
  92.     }
  93.     /**
  94.      * cart_delete
  95.      *
  96.      * @Route("/doiiio/{id}", name="cart_delete")
  97.      * @param $id
  98.      * @return Response
  99.      */
  100.     public function deleteFromCart($id):Response{
  101.         $this->cartServices->deleteFromCart($id);
  102.         return $this->redirectToRoute('cart');
  103.     }
  104.     /**
  105.      * cart-delete-js
  106.      *
  107.      * @Route("/5lldl/pijksusj{id}58ppiiooo", name="cart_delete_js")
  108.      * @param $id
  109.      * @return Response
  110.      */
  111.     public function deleteFromCartJson($id):Response{
  112.         $this->cartServices->deleteFromCart($id);
  113.         $cart $this->cartServices->getFullCartJson($id);
  114.         return $this->json($cart);
  115.     }
  116.     /**
  117.      * cart-delete-AllForOne-js
  118.      *
  119.      * @Route("/crt-pijk5248/kslsid85{id}458uiiii", name="cart_deleteAllForOneProduct_js")
  120.      * @param $id
  121.      * @return Response
  122.      */
  123.     public function deleteAllForOneProduct($id):Response{
  124.         $this->cartServices->deleteFromCartAllForOneProduct($id);
  125.         $cart $this->cartServices->getFullCartJson($id);
  126.         return $this->json($cart);
  127.     }
  128.     /**
  129.      * deleteAllToCart
  130.      *
  131.      * @Route("/cart/hiyrd5962iiii8/ki523{id}3785lsksi", name="cart_deleteAllToCart")
  132.      * @param $id
  133.      * @return Response
  134.      */
  135.     public function deleteAllToCart($id):Response{
  136.         $this->cartServices->deleteAllToCart($id);
  137.         return $this->redirectToRoute('cart');
  138.     }
  139.     /**
  140.      * @Route("/new/yihw85kl", name="cart_new", methods={"GET","POST"})
  141.      * @param Request $request
  142.      * @return Response
  143.      */
  144.     public function new(Request $request): Response
  145.     {
  146.         $cart = new Cart();
  147.         $form $this->createForm(CartType::class, $cart);
  148.         $form->handleRequest($request);
  149.         if ($form->isSubmitted() && $form->isValid()) {
  150.             $entityManager $this->getDoctrine()->getManager();
  151.             $entityManager->persist($cart);
  152.             $entityManager->flush();
  153.             return $this->redirectToRoute('cart_index');
  154.         }
  155.         return $this->render('cart/new.html.twig', [
  156.             'cart' => $cart,
  157.             'form' => $form->createView(),
  158.         ]);
  159.     }
  160.     /**
  161.      * @Route("admin_order/bafishowproduct", name="cart_show", methods={"GET"})
  162.      * @param CartRepository $cartRepository
  163.      * @return Response
  164.      * @internal param Cart $cart
  165.      */
  166.     public function show(CartRepository $cartRepository): Response
  167.     {
  168.         return $this->render('cart/show.html.twig', [
  169.             'carts' => $cartRepository->findAll(),
  170.         ]);
  171.     }
  172.     /**
  173.      * @Route("admin_order/cart/details/yfde7854{id}47fi45", name="cart_show_details", methods={"GET"})
  174.      * @param Cart $cart
  175.      * @param $id
  176.      * @return Response
  177.      * @internal param CartDetailsRepository $cartDetailsRepository
  178.      * @internal param CartRepository $cartRepository
  179.      * @internal param CartDetails $cartDetails
  180.      * @internal param CartRepository $cartRepository
  181.      * @internal param Cart $cart
  182.      */
  183.     public function showDetails(Cart $cart$id): Response
  184.     {
  185.         return $this->render('cart/showDetailListe.html.twig', [
  186.             'cart' => $cart,
  187.             'id' => $id
  188.         ]);
  189.     }
  190.     /**
  191.      * @Route("/fzjie78{id}547iuy/edit", name="cart_edit", methods={"GET","POST"})
  192.      * @param Request $request
  193.      * @param Cart $cart
  194.      * @return Response
  195.      */
  196.     public function edit(Request $requestCart $cart): Response
  197.     {
  198.         $form $this->createForm(CartType::class, $cart);
  199.         $form->handleRequest($request);
  200.         if ($form->isSubmitted() && $form->isValid()) {
  201.             $this->getDoctrine()->getManager()->flush();
  202.             return $this->redirectToRoute('cart_index');
  203.         }
  204.         return $this->render('cart/edit.html.twig', [
  205.             'cart' => $cart,
  206.             'form' => $form->createView(),
  207.         ]);
  208.     }
  209.     /**
  210.      * @Route("/fyii{id}85ssee", name="cart_delete", methods={"POST"})
  211.      * @param Request $request
  212.      * @param Cart $cart
  213.      * @return Response
  214.      */
  215.     public function delete(Request $requestCart $cart): Response
  216.     {
  217.         if ($this->isCsrfTokenValid('delete'.$cart->getId(), $request->request->get('_token'))) {
  218.             $entityManager $this->getDoctrine()->getManager();
  219.             $entityManager->remove($cart);
  220.             $entityManager->flush();
  221.         }
  222.         return $this->redirectToRoute('cart_index');
  223.     }
  224. }