2019-03-05 23:52:45 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* part-db version 0.1
|
|
|
|
* Copyright (C) 2005 Christoph Lechner
|
2019-03-20 23:16:07 +01:00
|
|
|
* http://www.cl-projects.de/.
|
2019-03-05 23:52:45 +01:00
|
|
|
*
|
|
|
|
* part-db version 0.2+
|
|
|
|
* Copyright (C) 2009 K. Jacobs and others (see authors.php)
|
|
|
|
* http://code.google.com/p/part-db/
|
|
|
|
*
|
|
|
|
* Part-DB Version 0.4+
|
|
|
|
* Copyright (C) 2016 - 2019 Jan Böhmer
|
|
|
|
* https://github.com/jbtronics
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Controller;
|
|
|
|
|
|
|
|
use App\DataTables\PartsDataTable;
|
2019-09-05 22:27:18 +02:00
|
|
|
use App\Entity\Parts\Category;
|
2019-09-08 13:59:35 +02:00
|
|
|
use App\Entity\Parts\Footprint;
|
|
|
|
use App\Entity\Parts\Manufacturer;
|
2019-03-05 23:52:45 +01:00
|
|
|
use Omines\DataTablesBundle\DataTableFactory;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
|
|
|
|
class PartListsController extends AbstractController
|
|
|
|
{
|
|
|
|
/**
|
2019-09-08 13:59:35 +02:00
|
|
|
* @Route("/category/{id}/parts", name="part_list_category")
|
2019-03-20 23:16:07 +01:00
|
|
|
*
|
2019-03-05 23:52:45 +01:00
|
|
|
* @param $id int The id of the category
|
2019-03-20 23:16:07 +01:00
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
2019-03-05 23:52:45 +01:00
|
|
|
*/
|
2019-09-05 22:27:18 +02:00
|
|
|
public function showCategory(Category $category, Request $request, DataTableFactory $dataTable)
|
2019-03-05 23:52:45 +01:00
|
|
|
{
|
2019-09-05 22:27:18 +02:00
|
|
|
$table = $dataTable->createFromType(PartsDataTable::class, ['category' => $category])
|
2019-09-08 14:32:44 +02:00
|
|
|
->handleRequest($request);
|
2019-03-05 23:52:45 +01:00
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
|
2019-09-08 13:37:11 +02:00
|
|
|
return $this->render('Parts/lists/category_list.html.twig', [
|
|
|
|
'datatable' => $table,
|
|
|
|
'entity' => $category
|
|
|
|
]);
|
2019-03-05 23:52:45 +01:00
|
|
|
}
|
|
|
|
|
2019-09-08 13:59:35 +02:00
|
|
|
/**
|
|
|
|
* @Route("/footprint/{id}/parts", name="part_list_footprint")
|
|
|
|
*
|
|
|
|
* @param $id int The id of the category
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function showFootprint(Footprint $footprint, Request $request, DataTableFactory $dataTable)
|
|
|
|
{
|
|
|
|
$table = $dataTable->createFromType(PartsDataTable::class, ['footprint' => $footprint])
|
|
|
|
->handleRequest($request);
|
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('Parts/lists/footprint_list.html.twig', [
|
|
|
|
'datatable' => $table,
|
|
|
|
'entity' => $footprint
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Route("/manufacturer/{id}/parts", name="part_list_manufacturer")
|
|
|
|
*
|
|
|
|
* @param $id int The id of the category
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function showManufacturer(Manufacturer $manufacturer, Request $request, DataTableFactory $dataTable)
|
|
|
|
{
|
|
|
|
$table = $dataTable->createFromType(PartsDataTable::class, ['manufacturer' => $manufacturer])
|
|
|
|
->handleRequest($request);
|
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('Parts/lists/manufacturer_list.html.twig', [
|
|
|
|
'datatable' => $table,
|
|
|
|
'entity' => $manufacturer
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2019-09-05 22:27:18 +02:00
|
|
|
/**
|
|
|
|
* @Route("/parts/by_tag/{tag}", name="part_list_tags")
|
|
|
|
* @param string $tag
|
|
|
|
* @param Request $request
|
|
|
|
* @param DataTableFactory $dataTable
|
|
|
|
* @return \Symfony\Component\HttpFoundation\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function showTag(string $tag, Request $request, DataTableFactory $dataTable)
|
|
|
|
{
|
|
|
|
$table = $dataTable->createFromType(PartsDataTable::class, ['tag' => $tag])
|
|
|
|
->handleRequest($request);
|
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
|
2019-09-08 14:32:44 +02:00
|
|
|
return $this->render('Parts/lists/tags_list.html.twig', [
|
|
|
|
'tag' => $tag,
|
|
|
|
'datatable' => $table
|
|
|
|
]);
|
2019-09-05 22:27:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Route("/parts/search/{keyword}", name="parts_search")
|
|
|
|
*/
|
|
|
|
public function showSearch(Request $request, DataTableFactory $dataTable, string $keyword = "")
|
|
|
|
{
|
|
|
|
$search = $keyword;
|
|
|
|
|
|
|
|
$table = $dataTable->createFromType(PartsDataTable::class, ['search' => $search])
|
|
|
|
->handleRequest($request);
|
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
|
2019-09-08 14:32:44 +02:00
|
|
|
return $this->render('Parts/lists/search_list.html.twig', [
|
|
|
|
'datatable' => $table,
|
|
|
|
'keyword' => $keyword
|
|
|
|
]);
|
2019-09-05 22:27:18 +02:00
|
|
|
}
|
|
|
|
|
2019-03-06 00:02:33 +01:00
|
|
|
/**
|
2019-03-26 15:57:51 +01:00
|
|
|
* @Route("/parts", name="parts_show_all")
|
2019-03-06 00:02:33 +01:00
|
|
|
*
|
2019-03-20 23:16:07 +01:00
|
|
|
* @param Request $request
|
2019-03-06 00:02:33 +01:00
|
|
|
* @param DataTableFactory $dataTable
|
2019-03-20 23:16:07 +01:00
|
|
|
*
|
2019-03-06 00:02:33 +01:00
|
|
|
* @return \Symfony\Component\HttpFoundation\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function showAll(Request $request, DataTableFactory $dataTable)
|
|
|
|
{
|
|
|
|
$table = $dataTable->createFromType(PartsDataTable::class)
|
|
|
|
->handleRequest($request);
|
|
|
|
|
|
|
|
if ($table->isCallback()) {
|
|
|
|
return $table->getResponse();
|
|
|
|
}
|
|
|
|
|
2019-09-08 14:32:44 +02:00
|
|
|
return $this->render('Parts/lists/all_list.html.twig', ['datatable' => $table]);
|
2019-03-06 00:02:33 +01:00
|
|
|
}
|
2019-03-20 23:16:07 +01:00
|
|
|
}
|