43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Controller\Admin\Autocomplete;
|
|
|
|
use App\BusProNet\DataProvider\HotelDataProvider;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\Security\Http\Attribute\IsGranted;
|
|
|
|
class HotelController extends AbstractController
|
|
{
|
|
public function __construct(private readonly HotelDataProvider $hotelDataProvider)
|
|
{}
|
|
|
|
#[Route('/admin/autocomplete/hotel', name: 'app_admin_autocomplete_hotel')]
|
|
#[IsGranted('ROLE_ADMINISTRATIVE')]
|
|
public function index(Request $request): JsonResponse
|
|
{
|
|
try {
|
|
$query = json_decode($request->getContent(), true, 512, JSON_THROW_ON_ERROR);
|
|
$queryString = $query['search'];
|
|
} catch (\JsonException $e) {
|
|
throw $this->createNotFoundException();
|
|
}
|
|
|
|
$hotels = $this->hotelDataProvider->getAll();
|
|
$data = [];
|
|
|
|
foreach ($hotels as $hotel) {
|
|
$name = $hotel->getName();
|
|
if (1 === preg_match('/'.preg_quote($queryString, '/').'/i', $name)) {
|
|
$data[] = [
|
|
'value' => $hotel->getBusProId(),
|
|
'text' => sprintf('%s (%s)', $name, $hotel->getCode()),
|
|
];
|
|
}
|
|
}
|
|
|
|
return $this->json($data);
|
|
}
|
|
} |