Pony.fm/app/Http/Controllers/PlaylistsController.php
Adam Lavin ff57ce54dd
Biggus Upgradus
- !! NEW DOCKER FILES :D !!
- getid3 is now vendored from composer! :D
- fix elasticsearch for use with newer versions
- fix some migration issues by yeeting a migration that has had its day
- fix our asset pipeline (webpack / gulp)
2021-03-27 03:51:45 +00:00

94 lines
2.8 KiB
PHP

<?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/>.
*/
namespace App\Http\Controllers;
use App\Models\Playlist;
use App\Models\ResourceLogItem;
use App\Models\Track;
use App\PlaylistDownloader;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\View;
class PlaylistsController extends Controller
{
public function getIndex()
{
return view('playlists.index');
}
public function getPlaylist(Request $request, $id, $slug)
{
$playlist = Playlist::find($id);
if (! $playlist || ! $playlist->canView($request->user())) {
abort(404);
}
if ($playlist->slug != $slug) {
return Redirect::action([static::class, 'getPlaylist'], [$id, $playlist->slug]);
}
return view('playlists.show');
}
public function getShortlink(Request $request, $id)
{
$playlist = Playlist::find($id);
if (! $playlist || ! $playlist->canView($request->user())) {
abort(404);
}
return Redirect::action([static::class, 'getPlaylist'], [$id, $playlist->slug]);
}
public function getDownload(Request $request, $id, $extension)
{
$playlist = Playlist::with('tracks', 'tracks.trackFiles', 'user', 'tracks.album')->find($id);
if (! $playlist || ! $playlist->canView($request->user())) {
abort(404);
}
$format = null;
$formatName = null;
foreach (Track::$Formats as $name => $item) {
if ($item['extension'] == $extension) {
$format = $item;
$formatName = $name;
break;
}
}
if ($format == null) {
abort(404);
}
if (! $playlist->hasLosslessTracks() && in_array($formatName, Track::$LosslessFormats)) {
abort(404);
}
ResourceLogItem::logItem('playlist', $id, ResourceLogItem::DOWNLOAD, $format['index']);
$downloader = new PlaylistDownloader($playlist, $formatName);
$downloader->download($request->user());
}
}