2015-11-10 06:49:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
2018-04-21 06:25:36 +02:00
|
|
|
* Copyright (C) 2015 Feld0
|
2015-11-10 06:49:12 +01:00
|
|
|
* Copyright (C) 2015 Kelvin Zhang
|
|
|
|
*
|
|
|
|
* 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\Traits;
|
|
|
|
|
|
|
|
use File;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2016-07-11 12:25:45 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2015-11-10 06:49:12 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2016-07-11 13:43:10 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2015-11-10 06:49:12 +01:00
|
|
|
use Poniverse\Ponyfm\Jobs\EncodeTrackFile;
|
2016-07-11 13:43:10 +02:00
|
|
|
use Poniverse\Ponyfm\Models\Track;
|
2016-01-01 01:12:30 +01:00
|
|
|
use Poniverse\Ponyfm\Models\TrackFile;
|
2015-11-10 06:49:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class TrackCollection
|
|
|
|
* @package Poniverse\Ponyfm\Traits
|
|
|
|
*
|
|
|
|
* Contains common logic between albums and playlists. They share some functionality
|
|
|
|
* because they're both a form of downloadable track collection.
|
|
|
|
*/
|
|
|
|
trait TrackCollection
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* This relation represents all tracks contained by the collection.
|
|
|
|
*
|
|
|
|
* @return Relation
|
|
|
|
*/
|
|
|
|
abstract public function tracks();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This relation represents all track files belonging to this collection's
|
|
|
|
* tracks.
|
|
|
|
*
|
|
|
|
* @return Relation
|
|
|
|
*/
|
|
|
|
abstract public function trackFiles();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of tracks that are available in the given format.
|
|
|
|
*
|
|
|
|
* @param string $format
|
|
|
|
* @return int the number of downloadable tracks in this collection
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function countDownloadableTracks($format)
|
|
|
|
{
|
2015-11-10 06:49:12 +01:00
|
|
|
return $this->downloadableTrackFiles($format)->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of currently-available track files (master files +
|
|
|
|
* currently cached files) for this collection in the given format.
|
|
|
|
*
|
|
|
|
* @param string $format
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function countAvailableTrackFiles($format)
|
|
|
|
{
|
2015-11-10 06:49:12 +01:00
|
|
|
$trackFiles = $this->downloadableTrackFiles($format);
|
|
|
|
$availableCount = 0;
|
|
|
|
|
|
|
|
foreach ($trackFiles as $trackFile) {
|
|
|
|
/** @var TrackFile $trackFile */
|
|
|
|
|
2016-09-30 00:26:31 +02:00
|
|
|
if ($trackFile->is_master ||
|
2015-11-10 06:49:12 +01:00
|
|
|
($trackFile->expires_at != null && File::exists($trackFile->getFile()))
|
|
|
|
) {
|
2016-06-06 08:29:37 +02:00
|
|
|
$availableCount++;
|
2015-11-10 06:49:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $availableCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Kicks off the encoding of any cacheable files in this collection that
|
|
|
|
* do not currently exist.
|
|
|
|
*
|
|
|
|
* @param $format
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function encodeCacheableTrackFiles($format)
|
|
|
|
{
|
2015-11-10 06:49:12 +01:00
|
|
|
$trackFiles = $this->downloadableTrackFiles($format);
|
|
|
|
|
|
|
|
foreach ($trackFiles as $trackFile) {
|
|
|
|
/** @var TrackFile $trackFile */
|
2015-12-18 09:56:13 +01:00
|
|
|
if (!File::exists($trackFile->getFile()) && $trackFile->status == TrackFile::STATUS_NOT_BEING_PROCESSED) {
|
2015-11-10 06:49:12 +01:00
|
|
|
$this->dispatch(new EncodeTrackFile($trackFile, true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an Eloquent collection of downloadable TrackFiles for this {@link TrackCollection}.
|
|
|
|
* A {@link TrackFile} is considered downloadable if its associated {@link Track} is.
|
|
|
|
*
|
|
|
|
* @param $format
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
protected function downloadableTrackFiles($format)
|
|
|
|
{
|
2015-11-10 06:49:12 +01:00
|
|
|
return $this->trackFiles()->with([
|
2016-09-30 00:26:31 +02:00
|
|
|
'track' => function ($query) {
|
2015-11-10 06:49:12 +01:00
|
|
|
$query->where('is_downloadable', true);
|
|
|
|
}
|
|
|
|
])->where('format', $format)->get();
|
|
|
|
}
|
2016-07-11 12:25:45 +02:00
|
|
|
|
2016-07-11 13:43:10 +02:00
|
|
|
/**
|
|
|
|
* Returns a boolean based on whether at least one (@link TrackFile)
|
|
|
|
* for this (@link TrackCollection)'s tracks has a lossless master file.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasLosslessTracks() : bool
|
|
|
|
{
|
|
|
|
$hasLosslessTracks = false;
|
|
|
|
foreach ($this->tracks as $track) {
|
|
|
|
if (!$track->isMasterLossy()) {
|
|
|
|
$hasLosslessTracks = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-09-30 00:26:31 +02:00
|
|
|
return $hasLosslessTracks;
|
2016-07-11 13:43:10 +02:00
|
|
|
}
|
|
|
|
|
2016-07-11 12:25:45 +02:00
|
|
|
/**
|
|
|
|
* Returns a boolean based on whether all (@link TrackFile)s
|
|
|
|
* for this (@link TrackCollection)'s tracks have lossless master files.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-09-30 00:26:31 +02:00
|
|
|
public function hasLosslessTracksOnly() : bool
|
2016-07-11 12:25:45 +02:00
|
|
|
{
|
2016-07-11 13:43:10 +02:00
|
|
|
$hasLosslessTracksOnly = true;
|
2016-07-11 12:25:45 +02:00
|
|
|
foreach ($this->tracks as $track) {
|
2016-07-11 13:43:10 +02:00
|
|
|
if ($track->isMasterLossy()) {
|
|
|
|
$hasLosslessTracksOnly = false;
|
2016-07-11 12:25:45 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $hasLosslessTracksOnly;
|
|
|
|
}
|
2016-07-11 13:43:10 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the filesize in bytes for a (@link Album) or (@link Playlist) based on a format.
|
|
|
|
*
|
|
|
|
* @param $format
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getFilesize($format) : int
|
|
|
|
{
|
|
|
|
$tracks = $this->tracks;
|
|
|
|
if (!count($tracks)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-30 00:26:31 +02:00
|
|
|
return Cache::remember($this->getCacheKey('filesize-'.$format), 1440, function () use ($tracks, $format) {
|
2016-07-11 13:43:10 +02:00
|
|
|
$size = 0;
|
|
|
|
|
|
|
|
// Check whether the format is lossless yet not all master files are lossless
|
2016-09-30 00:26:31 +02:00
|
|
|
$isLosslessFormatWithLossyTracks = in_array($format, Track::$LosslessFormats)
|
2016-07-11 13:43:10 +02:00
|
|
|
&& !$this->hasLosslessTracksOnly()
|
|
|
|
&& $this->hasLosslessTracks();
|
|
|
|
|
|
|
|
foreach ($tracks as $track) {
|
|
|
|
/** @var $track Track */
|
|
|
|
|
|
|
|
// Ensure that only downloadable tracks are added onto the file size
|
|
|
|
if (!$track->is_downloadable) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Get the file size corresponding to the losslessness of the track master file and format specified
|
|
|
|
if ($isLosslessFormatWithLossyTracks && $track->isMasterLossy()) {
|
|
|
|
$size += $track->getFilesize($track->getMasterFormatName());
|
|
|
|
} else {
|
|
|
|
$size += $track->getFilesize($format);
|
|
|
|
}
|
|
|
|
} catch (TrackFileNotFoundException $e) {
|
|
|
|
// do nothing - this track won't be included in the download
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $size;
|
|
|
|
});
|
|
|
|
}
|
2015-11-10 06:49:12 +01:00
|
|
|
}
|