2015-08-31 16:30:02 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
2021-02-14 03:39:15 +01:00
|
|
|
* Copyright (C) 2015 Feld0.
|
2015-10-25 06:17:45 +01:00
|
|
|
*
|
|
|
|
* 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()
|
|
|
|
{
|
2021-02-14 20:38:28 +01:00
|
|
|
return view('playlists.index');
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
2021-02-14 20:46:02 +01:00
|
|
|
public function getPlaylist(Request $request, $id, $slug)
|
2015-08-31 16:30:02 +02:00
|
|
|
{
|
|
|
|
$playlist = Playlist::find($id);
|
2021-02-14 20:46:02 +01:00
|
|
|
if (! $playlist || ! $playlist->canView($request->user())) {
|
2021-02-14 20:38:28 +01:00
|
|
|
abort(404);
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($playlist->slug != $slug) {
|
2021-03-27 04:51:45 +01:00
|
|
|
return Redirect::action([static::class, 'getPlaylist'], [$id, $playlist->slug]);
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
2021-02-14 20:38:28 +01:00
|
|
|
return view('playlists.show');
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
2021-02-14 20:46:02 +01:00
|
|
|
public function getShortlink(Request $request, $id)
|
2015-08-31 16:30:02 +02:00
|
|
|
{
|
|
|
|
$playlist = Playlist::find($id);
|
2021-02-14 20:46:02 +01:00
|
|
|
if (! $playlist || ! $playlist->canView($request->user())) {
|
2021-02-14 20:38:28 +01:00
|
|
|
abort(404);
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
2021-03-27 04:51:45 +01:00
|
|
|
return Redirect::action([static::class, 'getPlaylist'], [$id, $playlist->slug]);
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
2021-02-14 20:46:02 +01:00
|
|
|
public function getDownload(Request $request, $id, $extension)
|
2015-08-31 16:30:02 +02:00
|
|
|
{
|
2016-07-10 16:00:59 +02:00
|
|
|
$playlist = Playlist::with('tracks', 'tracks.trackFiles', 'user', 'tracks.album')->find($id);
|
2021-02-14 20:46:02 +01:00
|
|
|
if (! $playlist || ! $playlist->canView($request->user())) {
|
2021-02-14 20:38:28 +01:00
|
|
|
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) {
|
2021-02-14 20:38:28 +01:00
|
|
|
abort(404);
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
|
|
|
|
2021-02-14 03:39:15 +01:00
|
|
|
if (! $playlist->hasLosslessTracks() && in_array($formatName, Track::$LosslessFormats)) {
|
2021-02-14 20:38:28 +01:00
|
|
|
abort(404);
|
2016-07-10 16:00:59 +02:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:30:02 +02:00
|
|
|
ResourceLogItem::logItem('playlist', $id, ResourceLogItem::DOWNLOAD, $format['index']);
|
|
|
|
$downloader = new PlaylistDownloader($playlist, $formatName);
|
2021-02-14 20:46:02 +01:00
|
|
|
$downloader->download($request->user());
|
2015-08-31 16:30:02 +02:00
|
|
|
}
|
2015-09-13 06:33:56 +02:00
|
|
|
}
|