mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
38 lines
835 B
PHP
38 lines
835 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Facades\License;
|
|
use App\Models\Playlist;
|
|
use App\Models\User;
|
|
|
|
class PlaylistPolicy
|
|
{
|
|
public function own(User $user, Playlist $playlist): bool
|
|
{
|
|
return $playlist->ownedBy($user);
|
|
}
|
|
|
|
public function download(User $user, Playlist $playlist): bool
|
|
{
|
|
return $this->own($user, $playlist);
|
|
}
|
|
|
|
public function inviteCollaborators(User $user, Playlist $playlist): bool
|
|
{
|
|
return $this->own($user, $playlist) && !$playlist->is_smart && License::isPlus();
|
|
}
|
|
|
|
public function collaborate(User $user, Playlist $playlist): bool
|
|
{
|
|
if ($this->own($user, $playlist)) {
|
|
return true;
|
|
}
|
|
|
|
if (!License::isPlus()) {
|
|
return false;
|
|
}
|
|
|
|
return $playlist->hasCollaborator($user);
|
|
}
|
|
}
|