|
@@ -3,19 +3,38 @@
|
|
namespace App\Controller;
|
|
namespace App\Controller;
|
|
|
|
|
|
use App\Entity\Product;
|
|
use App\Entity\Product;
|
|
-use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
|
|
|
|
|
+use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
+use Symfony\Component\HttpFoundation\Request;
|
|
|
|
+use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
|
|
class ProductController extends Controller
|
|
class ProductController extends Controller
|
|
{
|
|
{
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @Route(
|
|
|
|
+ * name = "product_index",
|
|
|
|
+ * path = "/product"
|
|
|
|
+ * )
|
|
|
|
+ *
|
|
|
|
+ * @param \Doctrine\ORM\EntityManagerInterface $em
|
|
|
|
+ *
|
|
|
|
+ * @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
+ */
|
|
|
|
+ public function index(EntityManagerInterface $em) {
|
|
|
|
+ $repository = $em->getRepository(Product::class);
|
|
|
|
+ $products = $repository->findAll();
|
|
|
|
+ return $this->render('product/index.html.twig', ['products' => $products]);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Route(
|
|
* @Route(
|
|
- * name="product",
|
|
|
|
- * path = "/product"
|
|
|
|
|
|
+ * name="product_add",
|
|
|
|
+ * path = "/product/add"
|
|
* )
|
|
* )
|
|
*/
|
|
*/
|
|
- public function index() {
|
|
|
|
|
|
+ public function add() {
|
|
// EntityManager can also be injected as EntityManagerInterface $em.
|
|
// EntityManager can also be injected as EntityManagerInterface $em.
|
|
$em = $this->getDoctrine()->getManager();
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
|
|
|
@@ -35,16 +54,16 @@ class ProductController extends Controller
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * @\Symfony\Component\Routing\Annotation\Route(
|
|
|
|
- * name = "product_show",
|
|
|
|
- * path = "/product/{id}",
|
|
|
|
|
|
+ * @Route(
|
|
|
|
+ * name = "product_show_manual",
|
|
|
|
+ * path = "/product/{id}/manual",
|
|
* )
|
|
* )
|
|
*
|
|
*
|
|
* @param $id
|
|
* @param $id
|
|
*
|
|
*
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
*/
|
|
*/
|
|
- public function show($id) {
|
|
|
|
|
|
+ public function showManually($id) {
|
|
$repository = $this->getDoctrine()
|
|
$repository = $this->getDoctrine()
|
|
->getRepository(Product::class);
|
|
->getRepository(Product::class);
|
|
|
|
|
|
@@ -74,8 +93,67 @@ class ProductController extends Controller
|
|
);
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
- return $this->render('product.html.twig', [
|
|
|
|
- 'name' => $product->getName(),
|
|
|
|
|
|
+ return $this->render('product/product.html.twig', [
|
|
|
|
+ 'product' => $product,
|
|
]);
|
|
]);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @Route(
|
|
|
|
+ * name = "product_show",
|
|
|
|
+ * path = "/product/{id}",
|
|
|
|
+ * )
|
|
|
|
+ *
|
|
|
|
+ * @param \App\Entity\Product $product
|
|
|
|
+ *
|
|
|
|
+ * @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
+ */
|
|
|
|
+ public function show(Product $product) {
|
|
|
|
+ return $this->render('product/product.html.twig', [
|
|
|
|
+ 'product' => $product,
|
|
|
|
+ ]);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @Route(
|
|
|
|
+ * name = "product_raise",
|
|
|
|
+ * path = "/product/{id}/raise"
|
|
|
|
+ * )
|
|
|
|
+ *
|
|
|
|
+ * @param \App\Entity\Product $product
|
|
|
|
+ * @param \Doctrine\ORM\EntityManagerInterface $em
|
|
|
|
+ *
|
|
|
|
+ * @return \Symfony\Component\HttpFoundation\RedirectResponse
|
|
|
|
+ */
|
|
|
|
+ public function update(Product $product, EntityManagerInterface $em) {
|
|
|
|
+ $price = $product->getPrice();
|
|
|
|
+ $price += 0.01;
|
|
|
|
+ $product->setPrice($price);
|
|
|
|
+ // $em->persist($product) is NOT needed but MAY be used as product is
|
|
|
|
+ // already mapped.
|
|
|
|
+ $em->flush();
|
|
|
|
+
|
|
|
|
+ $id = $product->getId();
|
|
|
|
+ $request = Request::create($this->generateUrl('product_show', ['id' => $id]));
|
|
|
|
+ $kernel = $this->get('http_kernel');
|
|
|
|
+ return $kernel->handle($request);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @Route(
|
|
|
|
+ * name = "product_delete",
|
|
|
|
+ * path = "/product/{id}/delete"
|
|
|
|
+ * )
|
|
|
|
+ *
|
|
|
|
+ * @param \App\Entity\Product $product
|
|
|
|
+ * @param \Doctrine\ORM\EntityManagerInterface $em
|
|
|
|
+ *
|
|
|
|
+ * @return \Symfony\Component\HttpFoundation\RedirectResponse
|
|
|
|
+ */
|
|
|
|
+ public function delete(Product $product, EntityManagerInterface $em) {
|
|
|
|
+ $em->remove($product);
|
|
|
|
+ $em->flush();
|
|
|
|
+
|
|
|
|
+ return $this->redirectToRoute('product_index');
|
|
|
|
+ }
|
|
}
|
|
}
|