blob: 2f92bfb9365f627df695ea9ada8f154d1f9fa371 (
plain)
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
77
78
79
80
81
82
83
84
85
86
|
<?php
namespace App\Policies;
use App\User;
use App\Song;
use Illuminate\Auth\Access\HandlesAuthorization;
class SongPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view the song.
*
* @param \App\User $user
* @param \App\Song $song
* @return mixed
*/
public function view(User $user, Song $song)
{
return true;
//
}
/**
* Determine whether the user can create songs.
*
* @param \App\User $user
* @return mixed
*/
public function create(User $user)
{
// TODO: Make it harder to create songs.
return true;
}
/**
* Determine whether the user can update the song.
*
* @param \App\User $user
* @param \App\Song $song
* @return mixed
*/
public function update(User $user, Song $song)
{
// Allow all logged in users to update songs.
return true;
}
/**
* Determine whether the user can delete the song.
*
* @param \App\User $user
* @param \App\Song $song
* @return mixed
*/
public function delete(User $user, Song $song)
{
//
}
/**
* Determine whether the user can restore the song.
*
* @param \App\User $user
* @param \App\Song $song
* @return mixed
*/
public function restore(User $user, Song $song)
{
//
}
/**
* Determine whether the user can permanently delete the song.
*
* @param \App\User $user
* @param \App\Song $song
* @return mixed
*/
public function forceDelete(User $user, Song $song)
{
//
}
}
|