- Mengganti namespace model `HolidayCalendar` dari `Entities` ke `Models`. - Menambahkan validasi izin untuk semua aksi CRUD dan ekspor pada `HolidayCalendarController`. - Mengintegrasikan fitur izin pada tombol aksi (create, update, delete, export) di view `index.blade.php`. - Mengupdate logika form view `create.blade.php` untuk mendukung pengelolaan izin dan action dinamis. - Menambahkan class test `HolidayCalendarControllerTest` dengan pengujian lengkap mencakup: - Hak akses untuk membaca, membuat, memperbarui, menghapus, dan mengekspor data. - Validasi data saat penyimpanan/pembaruan. - Validasi respon HTTP untuk setiap aksi berdasarkan izin. - Memastikan user tanpa izin akan menerima pesan atau pembatasan akses yang relevan (HTTP 403). - Fitur ekspor CSV hanya dapat diakses oleh user dengan izin `basic-data.export`. - Memperbaiki rendering tindakan pada data tabel di `index.blade.php` agar responsif terhadap izin user. Signed-off-by: Daeng Deni Mardaeni <ddeni05@gmail.com>
223 lines
8.7 KiB
PHP
223 lines
8.7 KiB
PHP
<?php
|
|
|
|
namespace Modules\Basicdata\Http\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Exception;
|
|
use Illuminate\Http\Request;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
use Modules\Basicdata\Exports\HolidayCalendarExport;
|
|
use Modules\Basicdata\Http\Requests\HolidayCalendarRequest;
|
|
use Modules\Basicdata\Models\HolidayCalendar;
|
|
|
|
class HolidayCalendarController extends Controller
|
|
{
|
|
/**
|
|
* Get the authenticated user.
|
|
*
|
|
* @return \Illuminate\Contracts\Auth\Authenticatable|null
|
|
*/
|
|
protected function getUser()
|
|
{
|
|
return \Illuminate\Support\Facades\Auth::guard('web')->user();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
// Check if the authenticated user has the required permission to view holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.read')) {
|
|
abort(403, 'Sorry! You are not allowed to view holiday calendars.');
|
|
}
|
|
|
|
return view('basicdata::holidaycalendar.index');
|
|
}
|
|
|
|
public function store(HolidayCalendarRequest $request)
|
|
{
|
|
// Check if the authenticated user has the required permission to create holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.create')) {
|
|
abort(403, 'Sorry! You are not allowed to create holiday calendars.');
|
|
}
|
|
|
|
$validate = $request->validated();
|
|
|
|
if ($validate) {
|
|
try {
|
|
HolidayCalendar::create($validate);
|
|
return redirect()
|
|
->route('basicdata.holidaycalendar.index')->with(
|
|
'success',
|
|
'Holiday Calendar created successfully',
|
|
);
|
|
} catch (Exception $e) {
|
|
return redirect()
|
|
->route('basicdata.holidaycalendar.create')->with('error', 'Failed to create Holiday Calendar');
|
|
}
|
|
}
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
// Check if the authenticated user has the required permission to create holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.create')) {
|
|
abort(403, 'Sorry! You are not allowed to create holiday calendars.');
|
|
}
|
|
|
|
return view('basicdata::holidaycalendar.create');
|
|
}
|
|
|
|
public function edit($id)
|
|
{
|
|
// Check if the authenticated user has the required permission to update holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.update')) {
|
|
abort(403, 'Sorry! You are not allowed to update holiday calendars.');
|
|
}
|
|
|
|
$holiday = HolidayCalendar::find($id);
|
|
return view('basicdata::holidaycalendar.create', compact('holiday'));
|
|
}
|
|
|
|
public function update(HolidayCalendarRequest $request, $id)
|
|
{
|
|
// Check if the authenticated user has the required permission to update holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.update')) {
|
|
abort(403, 'Sorry! You are not allowed to update holiday calendars.');
|
|
}
|
|
|
|
$validate = $request->validated();
|
|
|
|
if ($validate) {
|
|
try {
|
|
$holiday = HolidayCalendar::find($id);
|
|
$holiday->update($validate);
|
|
return redirect()
|
|
->route('basicdata.holidaycalendar.index')->with(
|
|
'success',
|
|
'Holiday Calendar updated successfully',
|
|
);
|
|
} catch (Exception $e) {
|
|
return redirect()
|
|
->route('basicdata.holidaycalendar.edit', $id)->with(
|
|
'error',
|
|
'Failed to update Holiday Calendar',
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function destroy($id)
|
|
{
|
|
// Check if the authenticated user has the required permission to delete holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.delete')) {
|
|
abort(403, 'Sorry! You are not allowed to delete holiday calendars.');
|
|
}
|
|
|
|
try {
|
|
$holiday = HolidayCalendar::find($id);
|
|
$holiday->delete();
|
|
return redirect()
|
|
->route('basicdata.holidaycalendar.index')->with(
|
|
'success',
|
|
'Holiday Calendar deleted successfully',
|
|
);
|
|
} catch (Exception $e) {
|
|
return redirect()
|
|
->route('basicdata.holidaycalendar.index')->with('error', 'Failed to delete Holiday Calendar');
|
|
}
|
|
}
|
|
|
|
public function deleteMultiple(Request $request)
|
|
{
|
|
// Check if the authenticated user has the required permission to delete holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.delete')) {
|
|
return response()->json(['success' => false, 'message' => 'Sorry! You are not allowed to delete holiday calendars.'], 403);
|
|
}
|
|
|
|
$ids = $request->input('ids');
|
|
HolidayCalendar::whereIn('id', $ids)->delete();
|
|
return response()->json(['success' => true, 'message' => 'Holidays deleted successfully']);
|
|
}
|
|
|
|
public function dataForDatatables(Request $request)
|
|
{
|
|
// Check if the authenticated user has the required permission to view holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.read')) {
|
|
return response()->json(['success' => false, 'message' => 'Sorry! You are not allowed to view holiday calendars.'], 403);
|
|
}
|
|
|
|
// Retrieve data from the database
|
|
$query = HolidayCalendar::query();
|
|
|
|
// Apply search filter if provided
|
|
if ($request->has('search') && !empty($request->get('search'))) {
|
|
$search = $request->get('search');
|
|
$query->where(function ($q) use ($search) {
|
|
$q->where('date', 'LIKE', "%$search%");
|
|
$q->orWhere('description', 'LIKE', "%$search%");
|
|
$q->orWhere('type', 'LIKE', "%$search%");
|
|
});
|
|
}
|
|
|
|
// Apply sorting if provided
|
|
if ($request->has('sortOrder') && !empty($request->get('sortOrder'))) {
|
|
$order = $request->get('sortOrder');
|
|
$column = $request->get('sortField');
|
|
$query->orderBy($column, $order);
|
|
}
|
|
|
|
// Get the total count of records
|
|
$totalRecords = $query->count();
|
|
|
|
// Apply pagination if provided
|
|
if ($request->has('page') && $request->has('size')) {
|
|
$page = $request->get('page');
|
|
$size = $request->get('size');
|
|
$offset = ($page - 1) * $size; // Calculate the offset
|
|
|
|
$query->skip($offset)->take($size);
|
|
}
|
|
|
|
// Get the filtered count of records
|
|
$filteredRecords = $query->count();
|
|
|
|
// Get the data for the current page
|
|
$data = $query->get();
|
|
|
|
// Calculate the page count
|
|
$pageCount = ceil($totalRecords / $request->get('size'));
|
|
|
|
// Calculate the current page number
|
|
$currentPage = 0 + 1;
|
|
|
|
// Return the response data as a JSON object
|
|
return response()->json([
|
|
'draw' => $request->get('draw'),
|
|
'recordsTotal' => $totalRecords,
|
|
'recordsFiltered' => $filteredRecords,
|
|
'pageCount' => $pageCount,
|
|
'page' => $currentPage,
|
|
'totalCount' => $totalRecords,
|
|
'data' => $data,
|
|
]);
|
|
}
|
|
|
|
public function export()
|
|
{
|
|
// Check if the authenticated user has the required permission to export holiday calendars
|
|
$user = $this->getUser();
|
|
if (is_null($user) || !$user->can('basic-data.export')) {
|
|
abort(403, 'Sorry! You are not allowed to export holiday calendars.');
|
|
}
|
|
|
|
return Excel::download(new HolidayCalendarExport, 'holiday_calendar.xlsx');
|
|
}
|
|
}
|