| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/app/Http/Controllers/ |
Upload File : |
<?php
/*
* File name: CategoryController.php
* Last modified: 2021.01.25 at 15:38:34
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
namespace App\Http\Controllers;
use App\DataTables\CategoryDataTable;
use App\Http\Requests\CreateCategoryRequest;
use App\Http\Requests\UpdateCategoryRequest;
use App\Repositories\CategoryRepository;
use App\Repositories\CustomFieldRepository;
use App\Repositories\UploadRepository;
use Exception;
use Flash;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Response;
use Prettus\Validator\Exceptions\ValidatorException;
class CategoryController extends Controller
{
/** @var CategoryRepository */
private $categoryRepository;
/**
* @var CustomFieldRepository
*/
private $customFieldRepository;
/**
* @var UploadRepository
*/
private $uploadRepository;
public function __construct(CategoryRepository $categoryRepo, CustomFieldRepository $customFieldRepo, UploadRepository $uploadRepo)
{
parent::__construct();
$this->categoryRepository = $categoryRepo;
$this->customFieldRepository = $customFieldRepo;
$this->uploadRepository = $uploadRepo;
}
/**
* Display a listing of the Category.
*
* @param CategoryDataTable $categoryDataTable
* @return Response
*/
public function index(CategoryDataTable $categoryDataTable)
{
return $categoryDataTable->render('categories.index');
}
/**
* Show the form for creating a new Category.
*
* @return Response
*/
public function create()
{
$parentCategory = $this->categoryRepository->pluck('name', 'id');
$hasCustomField = in_array($this->categoryRepository->model(), setting('custom_field_models', []));
if ($hasCustomField) {
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->categoryRepository->model());
$html = generateCustomField($customFields);
}
return view('categories.create')->with("customFields", isset($html) ? $html : false)->with("parentCategory", $parentCategory);
}
/**
* Store a newly created Category in storage.
*
* @param CreateCategoryRequest $request
*
* @return Response
*/
public function store(CreateCategoryRequest $request)
{
$input = $request->all();
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->categoryRepository->model());
try {
$category = $this->categoryRepository->create($input);
$category->customFieldsValues()->createMany(getCustomFieldsValues($customFields, $request));
if (isset($input['image']) && $input['image']) {
$cacheUpload = $this->uploadRepository->getByUuid($input['image']);
$mediaItem = $cacheUpload->getMedia('image')->first();
$mediaItem->copy($category, 'image');
}
} catch (ValidatorException $e) {
Flash::error($e->getMessage());
}
Flash::success(__('lang.saved_successfully', ['operator' => __('lang.category')]));
return redirect(route('categories.index'));
}
/**
* Display the specified Category.
*
* @param int $id
*
* @return Response
*/
public function show($id)
{
$category = $this->categoryRepository->findWithoutFail($id);
if (empty($category)) {
Flash::error('Category not found');
return redirect(route('categories.index'));
}
return view('categories.show')->with('category', $category);
}
/**
* Show the form for editing the specified Category.
*
* @param int $id
*
* @return Response
*/
public function edit($id)
{
$category = $this->categoryRepository->findWithoutFail($id);
$parentCategory = $this->categoryRepository->pluck('name', 'id')->prepend(__('lang.category_parent_id_placeholder'), '');
if (empty($category)) {
Flash::error(__('lang.not_found', ['operator' => __('lang.category')]));
return redirect(route('categories.index'));
}
$customFieldsValues = $category->customFieldsValues()->with('customField')->get();
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->categoryRepository->model());
$hasCustomField = in_array($this->categoryRepository->model(), setting('custom_field_models', []));
if ($hasCustomField) {
$html = generateCustomField($customFields, $customFieldsValues);
}
return view('categories.edit')->with('category', $category)->with("customFields", isset($html) ? $html : false)->with("parentCategory", $parentCategory);
}
/**
* Update the specified Category in storage.
*
* @param int $id
* @param UpdateCategoryRequest $request
*
* @return Response
*/
public function update($id, UpdateCategoryRequest $request)
{
$category = $this->categoryRepository->findWithoutFail($id);
if (empty($category)) {
Flash::error('Category not found');
return redirect(route('categories.index'));
}
$input = $request->all();
$customFields = $this->customFieldRepository->findByField('custom_field_model', $this->categoryRepository->model());
try {
$category = $this->categoryRepository->update($input, $id);
if (isset($input['image']) && $input['image']) {
$cacheUpload = $this->uploadRepository->getByUuid($input['image']);
$mediaItem = $cacheUpload->getMedia('image')->first();
$mediaItem->copy($category, 'image');
}
foreach (getCustomFieldsValues($customFields, $request) as $value) {
$category->customFieldsValues()
->updateOrCreate(['custom_field_id' => $value['custom_field_id']], $value);
}
} catch (ValidatorException $e) {
Flash::error($e->getMessage());
}
Flash::success(__('lang.updated_successfully', ['operator' => __('lang.category')]));
return redirect(route('categories.index'));
}
/**
* Remove the specified Category from storage.
*
* @param int $id
*
* @return Response
*/
public function destroy($id)
{
$category = $this->categoryRepository->findWithoutFail($id);
if (empty($category)) {
Flash::error('Category not found');
return redirect(route('categories.index'));
}
$this->categoryRepository->delete($id);
Flash::success(__('lang.deleted_successfully', ['operator' => __('lang.category')]));
return redirect(route('categories.index'));
}
/**
* Remove Media of Category
* @param Request $request
*/
public function removeMedia(Request $request)
{
$input = $request->all();
$category = $this->categoryRepository->findWithoutFail($input['id']);
try {
if ($category->hasMedia($input['collection'])) {
$category->getFirstMedia($input['collection'])->delete();
}
} catch (Exception $e) {
Log::error($e->getMessage());
}
}
}