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

93 lines
2.4 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
use App;
use App\AlbumDownloader;
2021-02-14 03:34:58 +01:00
use App\Models\Album;
use App\Models\ResourceLogItem;
use App\Models\Track;
use Redirect;
2015-09-06 19:21:11 +02:00
use View;
2015-08-31 16:30:02 +02:00
class AlbumsController extends Controller
{
public function getIndex()
{
return view('albums.index');
2015-08-31 16:30:02 +02:00
}
public function getShow($id, $slug)
{
$album = Album::find($id);
if (! $album) {
abort(404);
2015-08-31 16:30:02 +02:00
}
if ($album->slug != $slug) {
return Redirect::action('AlbumsController@getAlbum', [$id, $album->slug]);
}
return view('albums.show');
2015-08-31 16:30:02 +02:00
}
public function getShortlink($id)
{
$album = Album::find($id);
if (! $album) {
abort(404);
2015-08-31 16:30:02 +02:00
}
return Redirect::action('AlbumsController@getShow', [$id, $album->slug]);
2015-08-31 16:30:02 +02:00
}
public function getDownload($id, $extension)
{
$album = Album::with('tracks', 'tracks.trackFiles', 'user')->find($id);
if (! $album) {
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 (! $album->hasLosslessTracks() && in_array($formatName, Track::$LosslessFormats)) {
abort(404);
}
2015-08-31 16:30:02 +02:00
ResourceLogItem::logItem('album', $id, ResourceLogItem::DOWNLOAD, $format['index']);
$downloader = new AlbumDownloader($album, $formatName);
$downloader->download();
}
}