collection-crud/src/Controller/CameraController.php

147 lines
3.7 KiB
PHP
Raw Normal View History

2018-07-18 11:35:27 -04:00
<?php declare(strict_types=1);
2017-11-30 15:06:13 -05:00
namespace App\Controller;
2017-11-30 15:06:13 -05:00
use Doctrine\Persistence\ManagerRegistry;
use LogicException;
use App\Entity\Camera;
use App\Form\CameraType;
2018-02-14 15:08:03 -05:00
use Doctrine\ORM\ORMInvalidArgumentException;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
2020-06-02 16:08:08 -04:00
use Symfony\Component\HttpFoundation\Response;
2018-07-11 09:18:46 -04:00
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
2017-11-30 15:06:13 -05:00
use Symfony\Component\HttpFoundation\Request;
/**
* Camera controller.
*/
#[Route(path: 'camera')]
class CameraController extends AbstractController
2017-11-30 15:06:13 -05:00
{
use FormControllerTrait;
protected const ENTITY = Camera::class;
2022-02-18 11:34:25 -05:00
protected const FORM = CameraType::class;
2022-02-18 11:34:25 -05:00
public function __construct(private readonly ManagerRegistry $managerRegistry)
{
}
2022-02-18 11:34:25 -05:00
2017-11-30 15:06:13 -05:00
/**
* Lists all camera entities.
*/
#[Route(path: '/', name: 'camera_index', methods: ['GET'])]
public function indexAction() : Response
2017-11-30 15:06:13 -05:00
{
$em = $this->managerRegistry->getManager();
2018-07-18 11:35:27 -04:00
$receivedItems = $em->getRepository(self::ENTITY)->findBy([
'received' => true
], [
2018-07-23 09:52:00 -04:00
'isWorking' => 'ASC',
2017-11-30 15:06:13 -05:00
'brand' => 'ASC',
'mount' => 'ASC',
'model' => 'ASC',
]);
2018-07-18 11:35:27 -04:00
$newItems = $em->getRepository(self::ENTITY)->findBy([
'received' => false
], [
'brand' => 'ASC',
'mount' => 'ASC',
'model' => 'ASC',
]);
2018-07-23 09:52:00 -04:00
$working = array_filter($receivedItems, [$this, 'isWorking']);
$notWorking = array_filter($receivedItems, [$this, 'isNotWorking']);
2018-07-18 11:35:27 -04:00
return $this->render('camera/index.html.twig', [
'not_received' => $newItems,
2018-07-23 09:52:00 -04:00
'not_working' => $notWorking,
'working' => $working,
2018-07-18 11:35:27 -04:00
]);
2017-11-30 15:06:13 -05:00
}
2022-02-18 11:34:25 -05:00
2017-11-30 15:06:13 -05:00
/**
* Creates a new camera entity.
*/
#[Route(path: '/new', name: 'camera_new', methods: ['GET', 'POST'])]
2017-11-30 15:06:13 -05:00
public function newAction(Request $request)
{
return $this->itemCreate($request, 'camera/new.html.twig', 'camera', 'camera_show');
2017-11-30 15:06:13 -05:00
}
2022-02-18 11:34:25 -05:00
2017-11-30 15:06:13 -05:00
/**
* Finds and displays a camera entity.
*/
#[Route(path: '/{id}', name: 'camera_show', methods: ['GET'])]
2017-11-30 15:06:13 -05:00
public function showAction(Camera $camera)
{
return $this->itemView($camera, 'camera/show.html.twig', 'camera');
2017-11-30 15:06:13 -05:00
}
2022-02-18 11:34:25 -05:00
2017-11-30 15:06:13 -05:00
/**
* Displays a form to edit an existing camera entity.
*
* @throws LogicException
2017-11-30 15:06:13 -05:00
*/
#[Route(path: '/{id}/edit', name: 'camera_edit', methods: ['GET', 'POST'])]
2017-11-30 15:06:13 -05:00
public function editAction(Request $request, Camera $camera)
{
return $this->itemUpdate($request, $camera, 'camera/edit.html.twig', 'camera', 'camera_show');
2017-11-30 15:06:13 -05:00
}
2022-02-18 11:34:25 -05:00
2017-11-30 15:06:13 -05:00
/**
* Deletes a camera entity.
*
* @throws LogicException
2017-11-30 15:06:13 -05:00
*/
#[Route(path: '/{id}', name: 'camera_delete', methods: ['DELETE'])]
public function deleteAction(Request $request, Camera $camera) : RedirectResponse
2017-11-30 15:06:13 -05:00
{
return $this->itemDelete($request, $camera, 'camera_index');
}
2022-02-18 11:34:25 -05:00
/**
* Moves a camera to the previouslyOwned table
*
* @throws LogicException
2018-02-14 15:08:03 -05:00
* @throws ORMInvalidArgumentException
*/
#[Route(path: '/{id}/deacquire', name: 'camera_deacquire', methods: ['POST'])]
public function deacquireAction(Request $request, Camera $camera) : RedirectResponse
{
return $this->itemDeacquire($request, $camera, 'previously-owned-camera_index');
2017-11-30 15:06:13 -05:00
}
2022-02-18 11:34:25 -05:00
2017-11-30 15:06:13 -05:00
/**
* Creates a form to delete a camera entity.
*
* @param Camera $camera The camera entity
*
2020-06-02 16:08:08 -04:00
* @return FormInterface The form
2017-11-30 15:06:13 -05:00
*/
private function createDeleteForm(Camera $camera): FormInterface
2017-11-30 15:06:13 -05:00
{
return $this->buildForm($camera, 'camera_delete', 'DELETE');
2017-11-30 15:06:13 -05:00
}
2022-02-18 11:34:25 -05:00
/**
* Creates a form to move
*
* @param Camera $camera The camera entity
*/
private function createDeacquireForm(Camera $camera): FormInterface
{
return $this->buildForm($camera, 'camera_deacquire');
}
2022-02-18 11:34:25 -05:00
2018-07-23 09:52:00 -04:00
private function isWorking(Camera $camera): bool
{
return $camera->getIsWorking();
}
2022-02-18 11:34:25 -05:00
2018-07-23 09:52:00 -04:00
private function isNotWorking(Camera $camera): bool
{
return !$this->isWorking($camera);
}
2017-11-30 15:06:13 -05:00
}