Files
admin/app/Http/Controllers/TipController.php
Husanjonazamov e0f1989655 classify admin
2026-02-24 12:52:01 +05:00

189 lines
6.6 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Tip;
use App\Models\TipTranslation;
use App\Services\BootstrapTableService;
use App\Services\CachingService;
use App\Services\ResponseService;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use Throwable;
class TipController extends Controller {
public function index() {
ResponseService::noAnyPermissionThenRedirect(['tip-list', 'tip-create', 'tip-update', 'tip-delete']);
return view('tip.index');
}
public function create() {
ResponseService::noPermissionThenRedirect('tip-create');
/*Values function is used to rearrange collection keys*/
$languages = CachingService::getLanguages()->values();
return view('tip.create', compact('languages'));
}
public function store(Request $request) {
ResponseService::noPermissionThenSendJson('tip-create');
$languages = CachingService::getLanguages();
$defaultLangId = 1;
$otherLanguages = $languages->where('id', '!=', $defaultLangId);
$rules = [
"description.$defaultLangId" => 'required|string',
];
foreach ($otherLanguages as $lang) {
$langId = $lang->id;
$rules["description.$langId"] = 'nullable|string';
}
$request->validate($rules);
try {
DB::beginTransaction();
$tip = Tip::create([
'description' => $request->input("description.$defaultLangId"),
]);
foreach ($otherLanguages as $lang) {
$langId = $lang->id;
$translatedDescription = $request->input("description.$langId");
if (!empty($translatedDescription)) {
TipTranslation::create([
'description' => $translatedDescription,
'language_id' => $langId,
'tip_id' => $tip->id,
]);
}
}
DB::commit();
ResponseService::successRedirectResponse("Tip Added Successfully", route('tips.index'));
} catch (Throwable $th) {
DB::rollBack();
ResponseService::logErrorRedirect($th, "TipController->store");
ResponseService::errorRedirectResponse();
}
}
public function show(Request $request) {
ResponseService::noPermissionThenSendJson('tip-list');
$offset = $request->input('offset', 0);
$limit = $request->input('limit', 10);
$sort = $request->input('sort', 'sequence');
$order = $request->input('order', 'ASC');
$sql = Tip::withTrashed()->with('translations.language:id,name')->orderBy($sort, $order);
if (!empty($request->search)) {
$sql = $sql->search($request->search);
}
$total = $sql->count();
$sql->skip($offset)->take($limit);
$result = $sql->get();
$bulkData = array();
$bulkData['total'] = $total;
$rows = array();
$no = 1;
foreach ($result as $key => $row) {
$operate = '';
if (Auth::user()->can('tip-update')) {
$operate .= BootstrapTableService::editButton(route('tips.edit', $row->id));
}
if (Auth::user()->can('tip-delete')) {
$operate .= BootstrapTableService::deleteButton(route('tips.destroy', $row->id));
}
$tempRow = $row->toArray();
$tempRow['no'] = $no++;
$tempRow['operate'] = $operate;
$tempRow['status'] = empty($row->deleted_at);
$rows[] = $tempRow;
}
$bulkData['rows'] = $rows;
return response()->json($bulkData);
}
public function edit($id) {
ResponseService::noPermissionThenRedirect('tip-update');
$tip = Tip::with('translations')->findOrFail($id);
// Initialize translations array with English (default) description
$translations = [];
$translations[1] = $tip->description;
// Add other language translations
foreach ($tip->translations as $translation) {
$translations[$translation->language_id] = $translation->description;
}
$languages = CachingService::getLanguages()->values();
return view('tip.edit', compact('tip', 'languages', 'translations'));
}
public function update(Request $request, $id) {
ResponseService::noPermissionThenSendJson('tip-update');
$languages = CachingService::getLanguages();
$defaultLangId = 1;
$otherLanguages = $languages->where('id', '!=', $defaultLangId);
$rules = [
"description.$defaultLangId" => 'required|string',
];
foreach ($otherLanguages as $lang) {
$langId = $lang->id;
$rules["description.$langId"] = 'nullable|string';
}
$request->validate($rules);
try {
DB::beginTransaction();
$tip = Tip::findOrFail($id);
$tip->update([
'description' => $request->input("description.$defaultLangId"),
]);
foreach ($otherLanguages as $lang) {
$langId = $lang->id;
$translatedDescription = $request->input("description.$langId");
TipTranslation::updateOrCreate(
[
'tip_id' => $tip->id,
'language_id' => $langId,
],
[
'description' => $translatedDescription ?? '',
]
);
}
DB::commit();
ResponseService::successRedirectResponse("Tip Updated Successfully", route('tips.index'));
} catch (Throwable $th) {
DB::rollBack();
ResponseService::logErrorRedirect($th);
ResponseService::errorRedirectResponse('Something Went Wrong ', route('tips.index'));
}
}
public function destroy($id) {
ResponseService::noPermissionThenSendJson('tip-delete');
try {
Tip::findOrFail($id)->forceDelete();
ResponseService::successResponse('Tip delete successfully');
} catch (Throwable $th) {
ResponseService::logErrorResponse($th);
ResponseService::errorResponse('Something Went Wrong ');
}
}
}