Cetaklabel/Http/Controllers/DocumentController.php

202 lines
7.9 KiB
PHP
Raw Normal View History

2023-05-15 10:03:46 +00:00
<?php
2023-05-20 14:09:49 +00:00
namespace Modules\Cetaklabel\Http\Controllers;
2023-05-15 10:03:46 +00:00
use App\Http\Controllers\Controller;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
2023-05-20 14:09:49 +00:00
use Modules\Cetaklabel\DataTables\DocumentDataTable;
use Modules\Cetaklabel\Entities\Directorat;
use Modules\Cetaklabel\Entities\Document;
use Modules\Cetaklabel\Entities\DocumentDetail;
use Modules\Cetaklabel\Entities\DocumentType;
use Modules\Cetaklabel\Entities\Job;
use Modules\Cetaklabel\Entities\SpecialCode;
use Modules\Cetaklabel\Entities\SubDirectorat;
use Modules\Cetaklabel\Entities\SubJob;
use Modules\Cetaklabel\Entities\SubSubJob;
use Modules\Cetaklabel\Http\Requests\Document\StoreDocumentRequest;
use Modules\Cetaklabel\Http\Requests\Document\UpdateDocumentRequest;
2023-05-15 10:03:46 +00:00
class DocumentController extends Controller
{
public $user;
public function __construct()
{
$this->middleware(function ($request, $next) {
$this->user = Auth::guard('web')->user();
return $next($request);
});
2023-05-23 02:31:03 +00:00
addVendor('chained-select');
2023-05-15 10:03:46 +00:00
}
/**
* Display a listing of the resource.
*/
public function index(DocumentDataTable $dataTable)
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.read')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to view any master data !');
}
return $dataTable->render('cetaklabel::app.document.index');
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreDocumentRequest $request)
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.create')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to create any master data !');
}
// Validate the request...
$validated = $request->validated();
// Store the Document...
if ($validated) {
2023-05-23 02:31:03 +00:00
2023-05-15 10:03:46 +00:00
try {
$created = Document::create($validated);
if ($created) {
if ($request->hasFile('file')) {
$file = $request->file('file');
$path = public_path('uploads/' . substr($validated['kode'], 0, 10) . '/' . $validated['sequence'] . '/' . substr($validated['kode'], -5, 3));
$filename = substr($validated['kode'], -2, 2) . '_' . $file->getClientOriginalName();
$file->move($path, $filename);
}
2023-05-15 10:03:46 +00:00
$detail = [
'document_id' => $created->id,
'document_type_id' => $request->document_type_id,
'tanggal_upload' => date('Y-m-d'),
'tanggal_dokumen' => $request->tanggal_dokumen,
'nomor_dokumen' => $request->nomor_dokumen,
'perihal' => $request->perihal,
'kode_cabang' => $request->kode_cabang,
'jumlah_halaman' => $request->jumlah_halaman,
'custom_field_1' => $request->custom_field_1,
'custom_field_2' => $request->custom_field_2,
'custom_field_3' => $request->custom_field_3,
'custom_field_4' => $request->custom_field_4,
'file' => $path.'/'.$filename,
'nama_nasabah' => $request->nama_nasabah,
'no_rekening' => $request->no_rekening,
'no_cif' => $request->no_cif,
'group' => $request->group,
'status' => '0',
'keterangan' => ''
2023-05-15 10:03:46 +00:00
];
DocumentDetail::create($detail);
}
return redirect()->route('document.index')->with('success', 'Document created successfully.');
} catch (Exception $e) {
return redirect()->route('document.index')->with('error', 'Document created failed.');
}
}
return false;
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.create')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to create any master data !');
}
$directorat = Directorat::all();
$special_code = SpecialCode::all();
$document_type = DocumentType::all();
return view('cetaklabel::app.document.create', compact('directorat', 'special_code', 'document_type'));
}
/**
* Display the specified resource.
*/
public function show(Document $documents)
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.read')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to view any master data !');
}
abort(404, 'Page not found !');
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.update')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to update any master data !');
}
$document = Document::find($id);
$directorat = Directorat::all();
$sub_directorat = SubDirectorat::where('directorat_id', $document->directorat_id)->get();
$job = Job::where('sub_directorat_id', $document->sub_directorat_id)->get();
$sub_job = SubJob::where('job_id', $document->job_id)->get();
$sub_sub_job = SubSubJob::where('sub_job_id', $document->sub_job_id)->get();
$special_code = SpecialCode::all();
$document_type = DocumentType::all();
return view('cetaklabel::app.document.edit', compact('document', 'directorat', 'sub_directorat', 'job', 'sub_job', 'sub_sub_job', 'special_code', 'document_type'));
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateDocumentRequest $request, Document $documents)
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.update')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to update any master data !');
}
// Validate the request...
$validated = $request->validated();
// Update the Document...
if ($validated) {
try {
$document = Document::find($request->id);
$update = $document->update($validated);
return redirect()->route('document.index')->with('success', 'Document updated successfully.');
} catch (Exception $e) {
return redirect()->route('document.index')->with('error', 'Document updated failed.');
}
}
return false;
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Request $request)
{
2023-05-23 02:31:03 +00:00
if (is_null($this->user) || !$this->user->can('document.delete')) {
2023-05-15 10:03:46 +00:00
abort(403, 'Sorry !! You are Unauthorized to delete any master data !');
}
$documents = Document::find($request->document);
$documents->delete();
echo json_encode(['status' => 'success', 'message' => 'Document deleted successfully.']);
}
}