|
@@ -0,0 +1,81 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace App\Controller;
|
|
|
+
|
|
|
+use App\Entity\Product;
|
|
|
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
|
|
+use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
|
+use Symfony\Component\HttpFoundation\Response;
|
|
|
+
|
|
|
+class ProductController extends Controller
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * @Route(
|
|
|
+ * name="product",
|
|
|
+ * path = "/product"
|
|
|
+ * )
|
|
|
+ */
|
|
|
+ public function index() {
|
|
|
+ // EntityManager can also be injected as EntityManagerInterface $em.
|
|
|
+ $em = $this->getDoctrine()->getManager();
|
|
|
+
|
|
|
+ $product = new Product();
|
|
|
+ $product->setName('Keyboard')
|
|
|
+ ->setPrice(19.99)
|
|
|
+ ->setDescription('Ergonomic and stylish!');
|
|
|
+
|
|
|
+ // tell Doctrine you want to (eventually) save the Product (no queries yet)
|
|
|
+ $em->persist($product);
|
|
|
+
|
|
|
+ // actually executes the queries (i.e. the INSERT query)
|
|
|
+ $em->flush();
|
|
|
+
|
|
|
+ return new Response('Saved new product with id ' . $product->getId(),
|
|
|
+ Response::HTTP_CREATED);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @\Symfony\Component\Routing\Annotation\Route(
|
|
|
+ * name = "product_show",
|
|
|
+ * path = "/product/{id}",
|
|
|
+ * )
|
|
|
+ *
|
|
|
+ * @param $id
|
|
|
+ *
|
|
|
+ * @return \Symfony\Component\HttpFoundation\Response
|
|
|
+ */
|
|
|
+ public function show($id) {
|
|
|
+ $repository = $this->getDoctrine()
|
|
|
+ ->getRepository(Product::class);
|
|
|
+
|
|
|
+ // Find by PK (id).
|
|
|
+ $product = $repository->find($id);
|
|
|
+
|
|
|
+ // Find single entity by properties
|
|
|
+ $product = $repository->findOneBy([
|
|
|
+ 'name' => 'Keyboard',
|
|
|
+ ]);
|
|
|
+
|
|
|
+ $productsBy = $repository->findBy([
|
|
|
+ 'name' => 'Keyboard',
|
|
|
+ ]);
|
|
|
+ $this->addFlash('info', array_reduce($productsBy, function (string $accu, Product $product) {
|
|
|
+ return $accu . '/' . $product->getId() . ' ' . $product->getName() . ': ' . $product->getDescription();
|
|
|
+ }, ''));
|
|
|
+
|
|
|
+ $productsAll = $repository->findAll();
|
|
|
+ $this->addFlash('error', array_reduce($productsAll, function (string $accu, Product $product) {
|
|
|
+ return $accu . '/' . $product->getId() . ' ' . $product->getName() . ': ' . $product->getDescription();
|
|
|
+ }, ''));
|
|
|
+
|
|
|
+ if (!$product) {
|
|
|
+ throw $this->createNotFoundException(
|
|
|
+ "No product found for id $id"
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ return $this->render('product.html.twig', [
|
|
|
+ 'name' => $product->getName(),
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+}
|