You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
5.2 KiB
PHP
160 lines
5.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Voucher;
|
|
use App\Services\GeneralService;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Str;
|
|
|
|
class VoucherController extends Controller
|
|
{
|
|
public function index(Request $request)
|
|
{
|
|
$query = Voucher::with(['location'])->orderBy('updated_at', 'desc');
|
|
|
|
if ($request->q != '') {
|
|
$query->where('username', 'like', "%$request->q%")
|
|
->orWhere('comment', 'like', "%$request->q%")
|
|
->orWhere('profile', 'like', "%$request->q%");
|
|
}
|
|
|
|
return inertia('Voucher/Index', [
|
|
'query' => $query->paginate(),
|
|
]);
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
return inertia('Voucher/Form');
|
|
}
|
|
|
|
public function store(Request $request)
|
|
{
|
|
$request->validate([
|
|
'name' => 'nullable|string',
|
|
'description' => 'nullable|string',
|
|
'location_id' => 'required|exists:locations,id',
|
|
'username' => 'required|string',
|
|
'password' => 'required|string',
|
|
'discount' => 'required|numeric',
|
|
'display_price' => 'required|numeric',
|
|
'quota' => 'required|string',
|
|
'profile' => 'required|string',
|
|
'comment' => 'required|string',
|
|
'expired' => 'required|numeric',
|
|
'expired_unit' => 'required|string',
|
|
]);
|
|
|
|
Voucher::create([
|
|
'name' => $request->name,
|
|
'description' => $request->description,
|
|
'location_id' => $request->location_id,
|
|
'username' => $request->username,
|
|
'password' => $request->password,
|
|
'discount' => $request->discount,
|
|
'display_price' => $request->display_price,
|
|
'quota' => $request->quota,
|
|
'profile' => $request->profile,
|
|
'comment' => $request->comment,
|
|
'expired' => $request->expired,
|
|
'expired_unit' => $request->expired_unit,
|
|
]);
|
|
|
|
return redirect()->route('voucher.index')
|
|
->with('message', ['type' => 'success', 'message' => 'Item has beed saved']);
|
|
}
|
|
|
|
public function edit(Voucher $voucher)
|
|
{
|
|
return inertia('Voucher/Form', [
|
|
'voucher' => $voucher,
|
|
]);
|
|
}
|
|
|
|
public function update(Request $request, Voucher $voucher)
|
|
{
|
|
$request->validate([
|
|
'name' => 'nullable|string',
|
|
'description' => 'nullable|string',
|
|
'location_id' => 'required|exists:locations,id',
|
|
'username' => 'required|string',
|
|
'password' => 'required|string',
|
|
'discount' => 'required|numeric',
|
|
'display_price' => 'required|numeric',
|
|
'quota' => 'required|string',
|
|
'profile' => 'required|string',
|
|
'comment' => 'required|string',
|
|
'expired' => 'required|numeric',
|
|
'expired_unit' => 'required|string',
|
|
]);
|
|
|
|
$voucher->update([
|
|
'name' => $request->name,
|
|
'description' => $request->description,
|
|
'location_id' => $request->location_id,
|
|
'username' => $request->username,
|
|
'password' => $request->password,
|
|
'discount' => $request->discount,
|
|
'display_price' => $request->display_price,
|
|
'quota' => $request->quota,
|
|
'profile' => $request->profile,
|
|
'comment' => $request->comment,
|
|
'expired' => $request->expired,
|
|
]);
|
|
|
|
return redirect()->route('voucher.index')
|
|
->with('message', ['type' => 'success', 'message' => 'Item has beed updated']);
|
|
}
|
|
|
|
public function destroy(Voucher $voucher)
|
|
{
|
|
$voucher->delete();
|
|
|
|
return redirect()->route('voucher.index')
|
|
->with('message', ['type' => 'success', 'message' => 'Item has beed deleted']);
|
|
}
|
|
|
|
public function form_import()
|
|
{
|
|
return inertia('Voucher/Import');
|
|
}
|
|
|
|
public function import(Request $request)
|
|
{
|
|
$request->validate([
|
|
'script' => 'required|string',
|
|
'location_id' => 'required|exists:locations,id',
|
|
'discount' => 'required|numeric',
|
|
'display_price' => 'required|numeric',
|
|
'expired' => 'required|numeric',
|
|
'expired_unit' => 'required|string',
|
|
]);
|
|
|
|
$batchId = Str::ulid();
|
|
$vouchers = GeneralService::script_parser($request->script);
|
|
|
|
DB::beginTransaction();
|
|
foreach ($vouchers as $voucher) {
|
|
Voucher::create([
|
|
'location_id' => $request->location_id,
|
|
'username' => $voucher['username'],
|
|
'password' => $voucher['password'],
|
|
'discount' => $request->discount,
|
|
'display_price' => $request->display_price,
|
|
'quota' => $voucher['quota'],
|
|
'profile' => $voucher['profile'],
|
|
'comment' => $voucher['comment'],
|
|
'expired' => $request->expired,
|
|
'expired_unit' => $request->expired_unit,
|
|
'batch_id' => $batchId,
|
|
]);
|
|
}
|
|
DB::commit();
|
|
|
|
return redirect()->route('voucher.index')
|
|
->with('message', ['type' => 'success', 'message' => 'Items has beed saved']);
|
|
}
|
|
}
|