mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
23 lines
645 B
PHP
23 lines
645 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Podcast;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Podcast;
|
|
use App\Models\User;
|
|
use App\Services\PodcastService;
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
use Illuminate\Http\Response;
|
|
|
|
class UnsubscribeFromPodcastController extends Controller
|
|
{
|
|
/** @param User $user */
|
|
public function __invoke(Podcast $podcast, PodcastService $podcastService, Authenticatable $user)
|
|
{
|
|
abort_unless($user->subscribedToPodcast($podcast), Response::HTTP_BAD_REQUEST);
|
|
|
|
$podcastService->unsubscribeUserFromPodcast($user, $podcast);
|
|
|
|
return response()->json();
|
|
}
|
|
}
|