194 lines
7.1 KiB
PHP
194 lines
7.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\Authors;
|
|
use App\Repositories\AuthorRepository;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use App\Service\CommonModelService;
|
|
use Illuminate\Support\Str;
|
|
use Log;
|
|
use Exception;
|
|
|
|
class AuthorsController extends Controller
|
|
{
|
|
protected $modelService;
|
|
protected $authorRepository;
|
|
|
|
public function __construct(Authors $model, AuthorRepository $authorRepository)
|
|
{
|
|
$this->modelService = new CommonModelService($model);
|
|
$this->authorRepository = $authorRepository;
|
|
}
|
|
public function index(Request $request)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'index', ' Authors index');
|
|
$data = Authors::where('status', '<>', -1)->orderBy('display_order')->get();
|
|
|
|
return view("crud.generated.authors.index", compact('data'));
|
|
}
|
|
|
|
public function create(Request $request)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'create', ' Authors create');
|
|
$TableData = Authors::where('status', '<>', -1)->orderBy('display_order')->get();
|
|
return view("crud.generated.authors.create", compact('TableData'));
|
|
}
|
|
|
|
public function store(Request $request)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'store', ' Authors store');
|
|
$validator = Validator::make($request->all(), [
|
|
//ADD REQUIRED FIELDS FOR VALIDATION
|
|
]);
|
|
|
|
if ($validator->fails()) {
|
|
return response()->json([
|
|
'error' => $validator->errors(),
|
|
], 500);
|
|
}
|
|
$request->mergeIfMissing([
|
|
'alias' => Str::slug($request->title),
|
|
]);
|
|
$request->request->add(['display_order' => getDisplayOrder('tbl_authors')]);
|
|
$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->authorRepository->create($requestData);
|
|
|
|
if ($request->ajax()) {
|
|
return response()->json(['status' => true, 'message' => 'The Authors Created Successfully.'], 200);
|
|
}
|
|
return redirect()->route('authors.index')->with('success', 'The Authors created Successfully.');
|
|
}
|
|
|
|
public function sort(Request $request)
|
|
{
|
|
$idOrder = $request->input('id_order');
|
|
|
|
foreach ($idOrder as $index => $id) {
|
|
$companyArticle = Authors::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 = Authors::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(AuthorsController::class, 'show', ' Authors show');
|
|
$data = Authors::findOrFail($id);
|
|
|
|
return view("crud.generated.authors.show", compact('data'));
|
|
}
|
|
|
|
|
|
public function edit(Request $request, $id)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'edit', ' Authors edit');
|
|
$TableData = Authors::where('status', '<>', -1)->orderBy('display_order')->get();
|
|
$data = Authors::findOrFail($id);
|
|
if ($request->ajax()) {
|
|
$html = view("crud.generated.authors.ajax.edit", compact('data'))->render();
|
|
return response()->json(['status' => true, 'content' => $html], 200);
|
|
}
|
|
return view("crud.generated.authors.edit", compact('data', 'TableData'));
|
|
}
|
|
|
|
|
|
public function update(Request $request, $id)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'update', ' Authors update');
|
|
$validator = Validator::make($request->all(), [
|
|
//ADD VALIDATION FOR REQIRED FIELDS
|
|
]);
|
|
|
|
if ($validator->fails()) {
|
|
return response()->json([
|
|
'error' => $validator->errors(),
|
|
], 500);
|
|
}
|
|
$request->mergeIfMissing([
|
|
'alias' => Str::slug($request->title),
|
|
]);
|
|
|
|
$filterData = $request->except('_token', '_method');
|
|
|
|
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->authorRepository->update($id,$filterData);
|
|
if ($request->ajax()) {
|
|
return response()->json(['status' => true, 'message' => 'The Authors updated Successfully.'], 200);
|
|
}
|
|
// return redirect()->route('authors.index')->with('success','The Authors updated Successfully.');
|
|
return redirect()->route('authors.index')->with('success', 'The Authors updated successfully.');
|
|
}
|
|
|
|
public function destroy(Request $request, $id)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'destroy', ' Authors destroy');
|
|
DB::beginTransaction();
|
|
try {
|
|
$OperationNumber = getOperationNumber();
|
|
$this->modelService->destroy($OperationNumber, $OperationNumber, $id);
|
|
} catch (Exception $e) {
|
|
DB::rollBack();
|
|
Log::info($e->getMessage());
|
|
createErrorLog(AuthorsController::class, 'destroy', $e->getMessage());
|
|
return response()->json(['status' => false, 'message' => $e->getMessage()], 500);
|
|
}
|
|
DB::commit();
|
|
return response()->json(['status' => true, 'message' => 'The Authors Deleted Successfully.'], 200);
|
|
}
|
|
public function toggle(Request $request, $id)
|
|
{
|
|
createActivityLog(AuthorsController::class, 'destroy', ' Authors destroy');
|
|
$data = Authors::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(AuthorsController::class, 'destroy', $e->getMessage());
|
|
return response()->json(['status' => false, 'message' => $e->getMessage()], 500);
|
|
}
|
|
DB::commit();
|
|
return response()->json(['status' => true, 'message' => 'The Authors Deleted Successfully.'], 200);
|
|
}
|
|
}
|