Master/Http/Controllers/CardController.php

175 lines
5.8 KiB
PHP
Raw Normal View History

2023-06-04 14:09:39 +00:00
<?php
namespace Modules\Master\Http\Controllers;
use Exception;
use Illuminate\Contracts\Support\Renderable;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Auth;
use Modules\Master\DataTables\CardDataTable;
use Modules\Master\Entities\Card;
use Modules\Master\Http\Requests\Card\StoreCardRequest;
use Modules\Master\Http\Requests\Card\UpdateCardRequest;
class CardController extends Controller
{
protected $user;
protected $model = Card::class;
protected $module;
public function __construct()
{
$this->middleware(function ($request, $next) {
$this->user = Auth::guard('web')->user();
return $next($request);
});
$module = file_get_contents(dirname(__FILE__, 3) . '/module.json');
$this->module = json_decode($module);
}
/**
* Display a listing of the resource.
*
* @return Renderable
*/
public function index(CardDataTable $dataTable)
{
if (is_null($this->user) || !$this->user->can($this->module->alias . '.read')) {
abort(403, 'Sorry !! You are Unauthorized to view any ' . $this->module->alias . ' !');
}
return $dataTable->render($this->module->alias . '::card.index');
}
/**
* Store a newly created resource in storage.
*
* @param Request $request
*
* @return Renderable
*/
public function store(StoreCardRequest $request)
{
if (is_null($this->user) || !$this->user->can($this->module->alias . '.create')) {
abort(403, 'Sorry !! You are Unauthorized to create any ' . $this->module->alias . ' !');
}
//Validate the request
$validated = $request->validated();
// Store the Card...
if ($validated) {
try {
$this->model::create($validated);
echo json_encode(['status' => 'success', 'message' => $this->module->name . ' card created successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => $this->module->name . ' card created failed.']);
}
return;
}
echo json_encode(['status' => 'error', 'message' => $this->module->name . ' card created failed.']);
}
/**
* Show the form for creating a new resource.
*
* @return Renderable
*/
public function create()
{
if (is_null($this->user) || !$this->user->can($this->module->alias . '.create')) {
abort(403, 'Sorry !! You are Unauthorized to create any ' . $this->module->alias . ' !');
}
abort(404);
}
/**
* Show the specified resource.
*
* @param int $id
*
* @return Renderable
*/
public function show($id)
{
if(is_null($this->user) || !$this->user->can($this->module->alias . '.read')) {
abort(403, 'Sorry !! You are Unauthorized to view any ' . $this->module->alias . ' !');
}
abort(404);
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
*
* @return Renderable
*/
public function edit($id)
{
if (is_null($this->user) || !$this->user->can($this->module->alias . '.update')) {
abort(403, 'Sorry !! You are Unauthorized to update any ' . $this->module->alias . ' !');
}
$data = $this->model::find($id);
echo json_encode($data);
}
/**
* Update the specified resource in storage.
*
* @param Request $request
* @param int $id
*
* @return Renderable
*/
2023-06-06 14:57:48 +00:00
public function update(UpdateCardRequest $request, Card $card)
2023-06-04 14:09:39 +00:00
{
if (is_null($this->user) || !$this->user->can($this->module->alias . '.update')) {
abort(403, 'Sorry !! You are Unauthorized to update any ' . $this->module->alias . ' !');
}
//Validate the request
$validated = $request->validated();
// Update the Card...
if ($validated) {
try {
2023-06-06 14:57:48 +00:00
$card->update($validated);
2023-06-04 14:09:39 +00:00
echo json_encode(['status' => 'success', 'message' => $this->module->name . ' card updated successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => $this->module->name . ' card updated failed.']);
}
return;
}
echo json_encode(['status' => 'error', 'message' => $this->module->name . ' card updated failed.']);
}
/**
* Remove the specified resource from storage.
*
* @param int $id
*
* @return Renderable
*/
2023-06-06 14:57:48 +00:00
public function destroy(Card $card)
2023-06-04 14:09:39 +00:00
{
if (is_null($this->user) || !$this->user->can($this->module->alias . '.delete')) {
abort(403, 'Sorry !! You are Unauthorized to delete any ' . $this->module->alias . ' !');
}
try {
2023-06-06 14:57:48 +00:00
$card->delete();
2023-06-04 14:09:39 +00:00
echo json_encode(['status' => 'success', 'message' => $this->module->name . ' card deleted successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => $this->module->name . ' card deleted failed.']);
}
}
}