<?php
namespace App\Controller\Cart;
use App\Entity\Cart;
use App\Form\CartType;
use App\Repository\CartRepository;
use App\Services\CartServices;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class CartController extends AbstractController
{
/**
* @var CartServices
*/
private $cartServices;
public function __construct(CartServices $cartServices)
{
$this->cartServices = $cartServices;
}
/**
* @Route("/cart/eyhListeOfcart", name="cart")
* @return Response
*/
public function index(): Response
{
$cart = $this->cartServices->getFullCart();
if(!isset($cart['products'])){
return $this->redirectToRoute('home');
}
return $this->render('cart/index.html.twig',[
'cart' => $cart,
'is_cart' => true
]);
}
/**
* cart_add
*
* @Route("/785hdjii{id}785olkj", name="cart_add")
* @param $id
* @return Response
*/
public function addToCart($id):Response{
$this->cartServices->addToCart($id);
return $this->redirectToRoute('cart');
}
/**
* Permet d'ajouter un produit et sa quantite cart_add_fm
*
* @Route("/855i85{id}oskiisue", name="cart_add_form")
* @param $id
* @param Request $request
* @return Response
*/
public function addToCartWithForm($id,Request $request):Response{
$qte = $request->request->get('quantity_product');
$this->cartServices->addToCartForm($id,$qte);
$template = $this->render('cart/cart.html.twig');
$cart = $this->cartServices->getFullCartJson($id);
return $this->json([
'cart' => $cart,
'template' => $template
]);
}
/**
* Permet d'augmenter un produit au panier Json cart_add_js
*
* @Route("/udidkd5{id}7452", name="cart_add_json")
* @param $id
* @return Response
*/
public function addToCartJson($id):Response{
$this->cartServices->addToCart_OneItem($id);
$cart = $this->cartServices->getFullCartJson($id);
return $this->json($cart);
}
/**
* Permet d'augmenter un produit au panier Avec image Json
*
* @Route("/oiqfi47585/h855{id}yoiop", name="cart_add_file_js")
* @param $id
* @return Response
*/
public function addToCartJsonFile($id):Response{
$this->cartServices->addToCart($id);
$template = $this->render('cart/cart.html.twig');
$cart = $this->cartServices->getFullCartJson($id);
return $this->json([
'cart' => $cart,
'template' => $template
]);
}
/**
* cart_delete
*
* @Route("/doiiio/{id}", name="cart_delete")
* @param $id
* @return Response
*/
public function deleteFromCart($id):Response{
$this->cartServices->deleteFromCart($id);
return $this->redirectToRoute('cart');
}
/**
* cart-delete-js
*
* @Route("/5lldl/pijksusj{id}58ppiiooo", name="cart_delete_js")
* @param $id
* @return Response
*/
public function deleteFromCartJson($id):Response{
$this->cartServices->deleteFromCart($id);
$cart = $this->cartServices->getFullCartJson($id);
return $this->json($cart);
}
/**
* cart-delete-AllForOne-js
*
* @Route("/crt-pijk5248/kslsid85{id}458uiiii", name="cart_deleteAllForOneProduct_js")
* @param $id
* @return Response
*/
public function deleteAllForOneProduct($id):Response{
$this->cartServices->deleteFromCartAllForOneProduct($id);
$cart = $this->cartServices->getFullCartJson($id);
return $this->json($cart);
}
/**
* deleteAllToCart
*
* @Route("/cart/hiyrd5962iiii8/ki523{id}3785lsksi", name="cart_deleteAllToCart")
* @param $id
* @return Response
*/
public function deleteAllToCart($id):Response{
$this->cartServices->deleteAllToCart($id);
return $this->redirectToRoute('cart');
}
/**
* @Route("/new/yihw85kl", name="cart_new", methods={"GET","POST"})
* @param Request $request
* @return Response
*/
public function new(Request $request): Response
{
$cart = new Cart();
$form = $this->createForm(CartType::class, $cart);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$entityManager = $this->getDoctrine()->getManager();
$entityManager->persist($cart);
$entityManager->flush();
return $this->redirectToRoute('cart_index');
}
return $this->render('cart/new.html.twig', [
'cart' => $cart,
'form' => $form->createView(),
]);
}
/**
* @Route("admin_order/bafishowproduct", name="cart_show", methods={"GET"})
* @param CartRepository $cartRepository
* @return Response
* @internal param Cart $cart
*/
public function show(CartRepository $cartRepository): Response
{
return $this->render('cart/show.html.twig', [
'carts' => $cartRepository->findAll(),
]);
}
/**
* @Route("admin_order/cart/details/yfde7854{id}47fi45", name="cart_show_details", methods={"GET"})
* @param Cart $cart
* @param $id
* @return Response
* @internal param CartDetailsRepository $cartDetailsRepository
* @internal param CartRepository $cartRepository
* @internal param CartDetails $cartDetails
* @internal param CartRepository $cartRepository
* @internal param Cart $cart
*/
public function showDetails(Cart $cart, $id): Response
{
return $this->render('cart/showDetailListe.html.twig', [
'cart' => $cart,
'id' => $id
]);
}
/**
* @Route("/fzjie78{id}547iuy/edit", name="cart_edit", methods={"GET","POST"})
* @param Request $request
* @param Cart $cart
* @return Response
*/
public function edit(Request $request, Cart $cart): Response
{
$form = $this->createForm(CartType::class, $cart);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$this->getDoctrine()->getManager()->flush();
return $this->redirectToRoute('cart_index');
}
return $this->render('cart/edit.html.twig', [
'cart' => $cart,
'form' => $form->createView(),
]);
}
/**
* @Route("/fyii{id}85ssee", name="cart_delete", methods={"POST"})
* @param Request $request
* @param Cart $cart
* @return Response
*/
public function delete(Request $request, Cart $cart): Response
{
if ($this->isCsrfTokenValid('delete'.$cart->getId(), $request->request->get('_token'))) {
$entityManager = $this->getDoctrine()->getManager();
$entityManager->remove($cart);
$entityManager->flush();
}
return $this->redirectToRoute('cart_index');
}
}