2015-05-25 18:40:17 +02:00
|
|
|
<?php namespace Entities;
|
|
|
|
|
2015-05-26 07:45:31 +02:00
|
|
|
use Entities\Track;
|
2015-05-26 07:35:52 +02:00
|
|
|
use Helpers;
|
2015-05-26 07:45:31 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2015-05-26 07:35:52 +02:00
|
|
|
use Illuminate\Support\Facades\URL;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
|
|
|
|
|
2015-05-25 18:40:17 +02:00
|
|
|
class TrackFile extends \Eloquent {
|
|
|
|
public function track() {
|
|
|
|
return $this->belongsTo('Entities\Track');
|
|
|
|
}
|
2015-05-26 07:35:52 +02:00
|
|
|
|
2015-05-26 07:45:31 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
return static::
|
|
|
|
with('track')
|
|
|
|
->where('track_id', $trackId)
|
|
|
|
->where('format', $requestedFormatName)
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
|
2015-05-26 07:35:52 +02:00
|
|
|
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);
|
|
|
|
return \Config::get('app.files_directory') . '/tracks/' . $dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-05-25 18:40:17 +02:00
|
|
|
}
|