Pony.fm/app/Http/Controllers/PlaylistsController.php

95 lines
2.8 KiB
PHP
Raw Normal View History

2015-08-31 16:30:02 +02:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2015 Feld0.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2021-02-14 03:34:58 +01:00
namespace App\Http\Controllers;
2015-09-06 19:21:11 +02:00
2021-02-14 03:34:58 +01:00
use App\Models\Playlist;
use App\Models\ResourceLogItem;
use App\Models\Track;
use App\PlaylistDownloader;
2021-02-14 20:46:41 +01:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
2021-02-14 20:45:51 +01:00
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\View;
2015-08-31 16:30:02 +02:00
class PlaylistsController extends Controller
{
public function getIndex()
{
return view('playlists.index');
2015-08-31 16:30:02 +02:00
}
public function getPlaylist(Request $request, $id, $slug)
2015-08-31 16:30:02 +02:00
{
$playlist = Playlist::find($id);
if (! $playlist || ! $playlist->canView($request->user())) {
abort(404);
2015-08-31 16:30:02 +02:00
}
if ($playlist->slug != $slug) {
return Redirect::action([static::class, 'getPlaylist'], [$id, $playlist->slug]);
2015-08-31 16:30:02 +02:00
}
return view('playlists.show');
2015-08-31 16:30:02 +02:00
}
public function getShortlink(Request $request, $id)
2015-08-31 16:30:02 +02:00
{
$playlist = Playlist::find($id);
if (! $playlist || ! $playlist->canView($request->user())) {
abort(404);
2015-08-31 16:30:02 +02:00
}
return Redirect::action([static::class, 'getPlaylist'], [$id, $playlist->slug]);
2015-08-31 16:30:02 +02:00
}
public function getDownload(Request $request, $id, $extension)
2015-08-31 16:30:02 +02:00
{
$playlist = Playlist::with('tracks', 'tracks.trackFiles', 'user', 'tracks.album')->find($id);
if (! $playlist || ! $playlist->canView($request->user())) {
abort(404);
2015-08-31 16:30:02 +02:00
}
$format = null;
$formatName = null;
foreach (Track::$Formats as $name => $item) {
if ($item['extension'] == $extension) {
$format = $item;
$formatName = $name;
break;
}
}
if ($format == null) {
abort(404);
2015-08-31 16:30:02 +02:00
}
if (! $playlist->hasLosslessTracks() && in_array($formatName, Track::$LosslessFormats)) {
abort(404);
}
2015-08-31 16:30:02 +02:00
ResourceLogItem::logItem('playlist', $id, ResourceLogItem::DOWNLOAD, $format['index']);
$downloader = new PlaylistDownloader($playlist, $formatName);
$downloader->download($request->user());
2015-08-31 16:30:02 +02:00
}
}