-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFavoriteController.php
76 lines (62 loc) · 1.78 KB
/
FavoriteController.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace App\Http\Controllers\Api\Me;
use App\Http\Controllers\Controller;
use App\Http\Resources\FavoriteResource;
use App\Models\Book;
use App\Models\Favorite;
use App\Models\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminatech\DataProvider\DataProvider;
use Illuminatech\ModelRules\Exists;
class FavoriteController extends Controller
{
protected function user(): User
{
return Auth::guard('web')->user();
}
public function index(Request $request)
{
$favorites = (new DataProvider(
$this->user()
->favorites()
->with('book')
))
->filters([
'id',
'search' => [
'book.title',
'book.description',
'book.author',
],
])
->sort(['id', 'created_at'])
->paginate($request);
return FavoriteResource::collection($favorites);
}
public function store(Request $request)
{
$data = $this->validate($request, [
'book_id' => ['required', 'int', $bookRule = Exists::new(Book::class)],
]);
/** @var Book $book */
$book = $bookRule->getModel();
$favorite = $book->favoriteBy($this->user());
return new FavoriteResource($favorite);
}
public function show(Favorite $favorite)
{
if ($favorite->user_id !== $this->user()->id) {
abort(404);
}
return new FavoriteResource($favorite);
}
public function destroy(Favorite $favorite)
{
if ($favorite->user_id !== $this->user()->id) {
abort(404);
}
$favorite->delete();
return new FavoriteResource($favorite);
}
}