182 lines
6.8 KiB
PHP
182 lines
6.8 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Repositories\PopupRepository;
|
||
|
use Illuminate\Http\Request;
|
||
|
use App\Models\Popups;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
use Illuminate\Support\Facades\Validator;
|
||
|
use App\Service\CommonModelService;
|
||
|
use Log;
|
||
|
use Exception;
|
||
|
|
||
|
class PopupsController extends Controller
|
||
|
{
|
||
|
protected $modelService;
|
||
|
protected $popupRepository;
|
||
|
public function __construct(Popups $model, PopupRepository $popupRepository)
|
||
|
{
|
||
|
$this->modelService = new CommonModelService($model);
|
||
|
$this->popupRepository = $popupRepository;
|
||
|
}
|
||
|
public function index(Request $request)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'index', ' Popups index');
|
||
|
$data = Popups::where('status', '<>', -1)->orderBy('display_order')->get();
|
||
|
|
||
|
return view("crud.generated.popups.index", compact('data'));
|
||
|
}
|
||
|
|
||
|
public function create(Request $request)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'create', ' Popups create');
|
||
|
$TableData = Popups::where('status', '<>', -1)->orderBy('display_order')->get();
|
||
|
return view("crud.generated.popups.create", compact('TableData'));
|
||
|
}
|
||
|
|
||
|
public function store(Request $request)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'store', ' Popups store');
|
||
|
$validator = Validator::make($request->all(), [
|
||
|
//ADD REQUIRED FIELDS FOR VALIDATION
|
||
|
]);
|
||
|
|
||
|
if ($validator->fails()) {
|
||
|
return response()->json([
|
||
|
'error' => $validator->errors(),
|
||
|
], 500);
|
||
|
}
|
||
|
$request->request->add(['display_order' => getDisplayOrder('tbl_popups')]);
|
||
|
$requestData = $request->all();
|
||
|
array_walk_recursive($requestData, function (&$value) {
|
||
|
$value = str_replace(env('APP_URL') . '/', '', $value);
|
||
|
});
|
||
|
array_walk_recursive($requestData, function (&$value) {
|
||
|
$value = str_replace(env('APP_URL'), '', $value);
|
||
|
});
|
||
|
$requestData['createdBy'] = auth()->user()->id;
|
||
|
$requestData['updatedBy'] = auth()->user()->id;
|
||
|
|
||
|
$this->popupRepository->create($requestData);
|
||
|
if ($request->ajax()) {
|
||
|
return response()->json(['status' => true, 'message' => 'The Popups Created Successfully.'], 200);
|
||
|
}
|
||
|
return redirect()->route('popups.index')->with('success', 'The Popups created Successfully.');
|
||
|
}
|
||
|
|
||
|
public function sort(Request $request)
|
||
|
{
|
||
|
$idOrder = $request->input('id_order');
|
||
|
|
||
|
foreach ($idOrder as $index => $id) {
|
||
|
$companyArticle = Popups::find($id);
|
||
|
$companyArticle->display_order = $index + 1;
|
||
|
$companyArticle->save();
|
||
|
}
|
||
|
|
||
|
return response()->json(['status' => true, 'content' => 'The articles sorted successfully.'], 200);
|
||
|
}
|
||
|
public function updatealias(Request $request)
|
||
|
{
|
||
|
|
||
|
$articleId = $request->input('articleId');
|
||
|
$newAlias = $request->input('newAlias');
|
||
|
$companyArticle = Popups::find($articleId);
|
||
|
if (!$companyArticle) {
|
||
|
return response()->json(['status' => false, 'content' => 'Company article not found.'], 404);
|
||
|
}
|
||
|
$companyArticle->alias = $newAlias;
|
||
|
$companyArticle->save();
|
||
|
return response()->json(['status' => true, 'content' => 'Alias updated successfully.'], 200);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public function show(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'show', ' Popups show');
|
||
|
$data = Popups::findOrFail($id);
|
||
|
|
||
|
return view("crud.generated.popups.show", compact('data'));
|
||
|
}
|
||
|
|
||
|
|
||
|
public function edit(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'edit', ' Popups edit');
|
||
|
$TableData = Popups::where('status', '<>', -1)->orderBy('display_order')->get();
|
||
|
$data = Popups::findOrFail($id);
|
||
|
if ($request->ajax()) {
|
||
|
$html = view("crud.generated.popups.ajax.edit", compact('data'))->render();
|
||
|
return response()->json(['status' => true, 'content' => $html], 200);
|
||
|
}
|
||
|
return view("crud.generated.popups.edit", compact('data', 'TableData'));
|
||
|
}
|
||
|
|
||
|
|
||
|
public function update(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'update', ' Popups update');
|
||
|
$validator = Validator::make($request->all(), [
|
||
|
//ADD VALIDATION FOR REQIRED FIELDS
|
||
|
]);
|
||
|
|
||
|
if ($validator->fails()) {
|
||
|
return response()->json([
|
||
|
'error' => $validator->errors(),
|
||
|
], 500);
|
||
|
}
|
||
|
$filterData = $request->except(['_method','_token']);
|
||
|
array_walk_recursive($filterData, function (&$value) {
|
||
|
$value = str_replace(env('APP_URL') . '/', '', $value);
|
||
|
});
|
||
|
array_walk_recursive($filterData, function (&$value) {
|
||
|
$value = str_replace(env('APP_URL'), '', $value);
|
||
|
});
|
||
|
$this->popupRepository->update($id, $filterData);
|
||
|
if ($request->ajax()) {
|
||
|
return response()->json(['status' => true, 'message' => 'The Popups updated Successfully.'], 200);
|
||
|
}
|
||
|
// return redirect()->route('popups.index')->with('success','The Popups updated Successfully.');
|
||
|
return redirect()->route('popups.index')->with('success', 'The Popups updated successfully.');
|
||
|
}
|
||
|
|
||
|
public function destroy(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'destroy', ' Popups destroy');
|
||
|
DB::beginTransaction();
|
||
|
try {
|
||
|
$OperationNumber = getOperationNumber();
|
||
|
$this->modelService->destroy($OperationNumber, $OperationNumber, $id);
|
||
|
} catch (Exception $e) {
|
||
|
DB::rollBack();
|
||
|
Log::info($e->getMessage());
|
||
|
createErrorLog(PopupsController::class, 'destroy', $e->getMessage());
|
||
|
return response()->json(['status' => false, 'message' => $e->getMessage()], 500);
|
||
|
}
|
||
|
DB::commit();
|
||
|
return response()->json(['status' => true, 'message' => 'The Popups Deleted Successfully.'], 200);
|
||
|
}
|
||
|
public function toggle(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(PopupsController::class, 'destroy', ' Popups destroy');
|
||
|
$data = Popups::findOrFail($id);
|
||
|
$requestData = ['status' => ($data->status == 1) ? 0 : 1];
|
||
|
DB::beginTransaction();
|
||
|
try {
|
||
|
$OperationNumber = getOperationNumber();
|
||
|
$this->modelService->update($OperationNumber, $OperationNumber, null, $requestData, $id);
|
||
|
} catch (Exception $e) {
|
||
|
DB::rollBack();
|
||
|
Log::info($e->getMessage());
|
||
|
createErrorLog(PopupsController::class, 'destroy', $e->getMessage());
|
||
|
return response()->json(['status' => false, 'message' => $e->getMessage()], 500);
|
||
|
}
|
||
|
DB::commit();
|
||
|
return response()->json(['status' => true, 'message' => 'The Popups Deleted Successfully.'], 200);
|
||
|
}
|
||
|
}
|