-
Notifications
You must be signed in to change notification settings - Fork 0
/
RentController.php
61 lines (50 loc) · 1.39 KB
/
RentController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
namespace App\Http\Controllers\Api\Me;
use App\Http\Controllers\Controller;
use App\Http\Resources\RentResource;
use App\Models\Rent;
use App\Models\User;
use App\Rules\AllowBookRentRule;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminatech\DataProvider\DataProvider;
class RentController extends Controller
{
public function index(Request $request)
{
$rents = (new DataProvider($this->user()
->rents()
))
->filters([
'id',
'search' => [
'book.title',
'book.description',
'book.author',
],
])
->sort(['id', 'created_at'])
->paginate($request);
return RentResource::collection($rents);
}
public function store(Request $request)
{
$user = $this->user();
$this->validate($request, [
'book_id' => ['required', 'int', $allowRentRule = new AllowBookRentRule($user)],
]);
$rent = $allowRentRule->getBook()->rent($user);
return new RentResource($rent);
}
public function show(Rent $rent)
{
if ($rent->user_id !== $this->user()->id) {
abort(404);
}
return new RentResource($rent);
}
protected function user(): User
{
return Auth::guard()->user();
}
}