Pony.fm/app/Models/TrackFile.php

225 lines
6.7 KiB
PHP
Raw Normal View History

2015-08-30 14:29:12 +02:00
<?php
/**
* 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/>.
*/
namespace Poniverse\Ponyfm\Models;
2015-08-31 14:35:47 +02:00
use Config;
2015-08-31 14:35:47 +02:00
use Helpers;
2015-08-30 14:29:12 +02:00
use Illuminate\Database\Eloquent\Model;
use App;
use File;
2015-08-30 14:29:12 +02:00
2016-01-01 01:36:08 +01:00
/**
* Poniverse\Ponyfm\Models\TrackFile
*
* @property integer $id
* @property integer $track_id
* @property boolean $is_master
* @property string $format
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property boolean $is_cacheable
* @property boolean $status
* @property \Carbon\Carbon $expires_at
2016-01-01 01:36:08 +01:00
* @property integer $filesize
* @property-read \Poniverse\Ponyfm\Models\Track $track
* @property-read mixed $extension
* @property-read mixed $url
* @property-read mixed $size
* @property-read mixed $is_expired
2016-12-10 17:47:49 +01:00
* @property integer $version
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereTrackId($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereIsMaster($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereFormat($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereIsCacheable($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereStatus($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereExpiresAt($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereFilesize($value)
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereVersion($value)
* @mixin \Eloquent
2016-01-01 01:36:08 +01:00
*/
2015-08-30 14:29:12 +02:00
class TrackFile extends Model
{
// used for the "status" property
const STATUS_NOT_BEING_PROCESSED = 0;
const STATUS_PROCESSING = 1;
const STATUS_PROCESSING_ERROR = 2;
const STATUS_PROCESSING_PENDING = 3;
protected $appends = ['is_expired'];
protected $dates = ['expires_at'];
protected $casts = [
'id' => 'integer',
'track_id' => 'integer',
'is_master' => 'boolean',
'format' => 'string',
'is_cacheable' => 'boolean',
'status' => 'integer',
'filesize' => 'integer',
];
Laravel 5.2 Update (#106) * Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
2016-09-30 00:26:31 +02:00
public function track()
{
return $this->belongsTo(Track::class)->withTrashed();
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)
{
$track = Track::find($trackId);
if (!$track) {
App::abort(404);
}
2015-08-30 14:29:12 +02:00
// 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)
->where('version', $track->current_version)
2015-08-30 14:29:12 +02:00
->first();
if ($trackFile === null) {
App::abort(404);
} else {
return $trackFile;
}
}
Laravel 5.2 Update (#106) * Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
2016-09-30 00:26:31 +02:00
public function getIsExpiredAttribute()
{
return $this->attributes['expires_at'] === null ||
$this->expires_at->isPast();
}
2015-08-30 14:29:12 +02:00
public function getFormatAttribute($value)
{
return $value;
}
public function getExtensionAttribute()
{
return Track::$Formats[$this->format]['extension'];
}
public function getUrlAttribute()
{
return action('TracksController@getDownload', ['id' => $this->track_id, 'extension' => $this->extension]);
2015-08-30 14:29:12 +02:00
}
public function getSizeAttribute()
2015-08-30 14:29:12 +02:00
{
return Helpers::formatBytes($this->getFilesize());
2015-08-30 14:29:12 +02:00
}
public function getFormat()
{
return Track::$Formats[$this->format];
}
protected function getFilesize()
{
2015-10-29 17:10:38 +01:00
return $this->filesize;
2015-08-30 14:29:12 +02:00
}
public function getDirectory()
{
$dir = (string) (floor($this->track_id / 100) * 100);
2015-08-30 14:29:12 +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}-v{$this->version}.{$this->extension}";
}
public function getUnversionedFile()
2015-08-30 14:29:12 +02:00
{
return "{$this->getDirectory()}/{$this->track_id}.{$this->extension}";
}
public function getFilename()
{
return "{$this->track_id}-v{$this->track->current_version}.{$this->extension}";
}
public function getUnversionedFilename()
2015-08-30 14:29:12 +02:00
{
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-08-30 14:29:12 +02:00
}
2015-10-29 17:10:38 +01:00
/**
* If this file exists, update its estimated filesize in the database.
*
* @return int $size
*/
2015-10-29 17:10:38 +01:00
public function updateFilesize()
{
$file = $this->getFile();
if (File::exists($file)) {
$size = File::size($file);
$this->filesize = $size;
$this->update();
}
2015-11-01 17:49:28 +01:00
return $this->filesize;
2015-10-29 17:10:38 +01:00
}
2016-07-11 12:25:45 +02:00
public function isLossy() : bool
{
return !in_array($this->format, Track::$LosslessFormats);
}
}