2015-08-30 14:29:12 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
|
|
|
* Copyright (C) 2015 Peter Deltchev
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-10-24 03:22:14 +02:00
|
|
|
namespace Poniverse\Ponyfm;
|
2015-08-31 14:35:47 +02:00
|
|
|
|
|
|
|
use Helpers;
|
2015-08-30 14:29:12 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Facades\URL;
|
|
|
|
|
|
|
|
class TrackFile extends Model
|
|
|
|
{
|
|
|
|
public function track()
|
|
|
|
{
|
2015-10-24 03:22:14 +02:00
|
|
|
return $this->belongsTo('Poniverse\Ponyfm\Track');
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Look up and return a TrackFile by track ID and an extension.
|
|
|
|
*
|
|
|
|
* If the track does not have a TrackFile in the given extension's format, a 404 exception is thrown.
|
|
|
|
*
|
|
|
|
* @param int $trackId
|
|
|
|
* @param string $extension
|
|
|
|
* @return TrackFile
|
|
|
|
*/
|
|
|
|
public static function findOrFailByExtension($trackId, $extension)
|
|
|
|
{
|
|
|
|
// find the extension's format
|
|
|
|
$requestedFormatName = null;
|
|
|
|
foreach (Track::$Formats as $name => $format) {
|
|
|
|
if ($extension === $format['extension']) {
|
|
|
|
$requestedFormatName = $name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($requestedFormatName === null) {
|
|
|
|
App::abort(404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$trackFile = static::
|
|
|
|
with('track')
|
|
|
|
->where('track_id', $trackId)
|
|
|
|
->where('format', $requestedFormatName)
|
|
|
|
->first();
|
|
|
|
|
|
|
|
if ($trackFile === null) {
|
|
|
|
App::abort(404);
|
|
|
|
} else {
|
|
|
|
return $trackFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFormatAttribute($value)
|
|
|
|
{
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getExtensionAttribute()
|
|
|
|
{
|
|
|
|
return Track::$Formats[$this->format]['extension'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUrlAttribute()
|
|
|
|
{
|
|
|
|
return URL::to('/t' . $this->track_id . '/dl.' . $this->extension);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSizeAttribute($value)
|
|
|
|
{
|
|
|
|
return Helpers::formatBytes($this->getFilesize($this->getFile()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFormat()
|
|
|
|
{
|
|
|
|
return Track::$Formats[$this->format];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getFilesize()
|
|
|
|
{
|
|
|
|
return Cache::remember($this->getCacheKey('filesize'), 1440, function () {
|
|
|
|
$file = $this->getFile();
|
|
|
|
$size = 0;
|
|
|
|
|
|
|
|
if (is_file($file)) {
|
|
|
|
$size = filesize($file);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $size;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDirectory()
|
|
|
|
{
|
|
|
|
$dir = (string)(floor($this->track_id / 100) * 100);
|
|
|
|
|
2015-09-12 23:56:09 +02:00
|
|
|
return \Config::get('ponyfm.files_directory') . '/tracks/' . $dir;
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFile()
|
|
|
|
{
|
|
|
|
return "{$this->getDirectory()}/{$this->track_id}.{$this->extension}";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFilename()
|
|
|
|
{
|
|
|
|
return "{$this->track_id}.{$this->extension}";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDownloadFilename()
|
|
|
|
{
|
|
|
|
return "{$this->track->title}.{$this->extension}";
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getCacheKey($key)
|
|
|
|
{
|
|
|
|
return 'track_file-' . $this->id . '-' . $key;
|
|
|
|
}
|
2015-09-12 23:56:09 +02:00
|
|
|
}
|