171 lines
7.5 KiB
PHP
171 lines
7.5 KiB
PHP
|
<?php
|
||
|
namespace App\Http\Controllers;
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use Illuminate\Http\Request;
|
||
|
use App\Models\Comments;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
use Illuminate\Support\Facades\Validator;
|
||
|
use App\Service\CommonModelService;
|
||
|
use App\Repositories\CommentsRepository;
|
||
|
use Log;
|
||
|
use Exception;
|
||
|
|
||
|
class CommentsController extends Controller
|
||
|
{
|
||
|
protected $modelService;
|
||
|
protected $commentRepository;
|
||
|
public function __construct(Comments $model, CommentsRepository $commentRepository)
|
||
|
{
|
||
|
$this->modelService = new CommonModelService($model);
|
||
|
$this->commentRepository = $commentRepository;
|
||
|
}
|
||
|
public function index(Request $request)
|
||
|
{
|
||
|
createActivityLog(CommentsController::class, 'index', ' Comments index');
|
||
|
$data = Comments::where('status','<>',-1)->orderBy('created_at')->get();
|
||
|
|
||
|
return view("crud.generated.comments.index", compact('data'));
|
||
|
}
|
||
|
|
||
|
public function create(Request $request)
|
||
|
{
|
||
|
createActivityLog(CommentsController::class, 'create', ' Comments create');
|
||
|
$TableData = Comments::where('status','<>',-1)->orderBy('created_at')->get();
|
||
|
return view("crud.generated.comments.create",compact('TableData'));
|
||
|
}
|
||
|
|
||
|
public function store(Request $request)
|
||
|
{
|
||
|
createActivityLog(CommentsController::class, 'store', ' Comments store');
|
||
|
$validator = Validator::make($request->all(), [
|
||
|
//ADD REQUIRED FIELDS FOR VALIDATION
|
||
|
]);
|
||
|
|
||
|
if ($validator->fails()) {
|
||
|
return response()->json([
|
||
|
'error' => $validator->errors(),
|
||
|
],500);
|
||
|
}
|
||
|
|
||
|
$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);
|
||
|
});
|
||
|
$this->commentRepository->create($requestData);
|
||
|
|
||
|
if ($request->ajax()) {
|
||
|
return response()->json(['status' => true, 'message' => 'The Comments Created Successfully.'], 200);
|
||
|
}
|
||
|
return redirect()->route('comments.index')->with('success','The Comments created Successfully.');
|
||
|
}
|
||
|
|
||
|
public function sort(Request $request)
|
||
|
{
|
||
|
$idOrder = $request->input('id_order');
|
||
|
|
||
|
foreach ($idOrder as $index => $id) {
|
||
|
$companyArticle = Comments::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 = Comments::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(CommentsController::class, 'show', ' Comments show');
|
||
|
$data = Comments::findOrFail($id);
|
||
|
|
||
|
return view("crud.generated.comments.show", compact('data'));
|
||
|
}
|
||
|
|
||
|
|
||
|
public function edit(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(CommentsController::class, 'edit', ' Comments edit');
|
||
|
$TableData = Comments::where('status','<>',-1)->orderBy('created_at')->get();
|
||
|
$data = Comments::findOrFail($id);
|
||
|
if ($request->ajax()) {
|
||
|
$html = view("crud.generated.comments.ajax.edit", compact('data'))->render();
|
||
|
return response()->json(['status' => true, 'content' => $html], 200);
|
||
|
}
|
||
|
return view("crud.generated.comments.edit", compact('data','TableData'));
|
||
|
}
|
||
|
|
||
|
|
||
|
public function update(Request $request, $id)
|
||
|
{
|
||
|
createActivityLog(CommentsController::class, 'update', ' Comments 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->commentRepository->update($id, $filterData);
|
||
|
if ($request->ajax()) {
|
||
|
return response()->json(['status' => true, 'message' => 'The Comments updated Successfully.'], 200);
|
||
|
}
|
||
|
// return redirect()->route('comments.index')->with('success','The Comments updated Successfully.');
|
||
|
return redirect()->back()->with('success', 'The Comments updated successfully.');
|
||
|
}
|
||
|
|
||
|
public function destroy(Request $request,$id)
|
||
|
{
|
||
|
// dd($id);
|
||
|
$this->commentRepository->delete($id);
|
||
|
return response()->json(['status'=>true,'message'=>'The Comments Deleted Successfully.'],200);
|
||
|
}
|
||
|
public function toggle(Request $request,$id)
|
||
|
{
|
||
|
createActivityLog(CommentsController::class, 'destroy', ' Comments destroy');
|
||
|
$data = Comments::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(CommentsController::class, 'destroy', $e->getMessage());
|
||
|
return response()->json(['status' => false, 'message' => $e->getMessage()], 500);
|
||
|
}
|
||
|
DB::commit();
|
||
|
return response()->json(['status'=>true,'message'=>'The Comments Deleted Successfully.'],200);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|