. */ namespace Poniverse\Ponyfm\Jobs; use Carbon\Carbon; use Config; use DB; use File; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use Log; use Poniverse\Ponyfm\Exceptions\InvalidEncodeOptionsException; use Poniverse\Ponyfm\Models\Track; use Poniverse\Ponyfm\Models\TrackFile; use Symfony\Component\Process\Exception\ProcessFailedException; use Symfony\Component\Process\Process; class EncodeTrackFile extends Job implements ShouldQueue { use InteractsWithQueue, SerializesModels; /** * @var TrackFile */ protected $trackFile; /** * @var */ protected $isExpirable; /** * @var bool */ protected $autoPublishWhenComplete; /** * @var bool */ protected $isForUpload; /** * @var bool */ protected $isReplacingTrack; /** * Create a new job instance. * @param TrackFile $trackFile * @param bool $isExpirable * @param bool $autoPublish * @param bool $isForUpload indicates whether this encode job is for an upload * @param bool $isReplacingTrack */ public function __construct(TrackFile $trackFile, $isExpirable, $autoPublish = false, $isForUpload = false, $isReplacingTrack = false) { if ((!$isForUpload && $trackFile->is_master) || ($isForUpload && $trackFile->is_master && !$trackFile->getFormat()['is_lossless']) ) { throw new InvalidEncodeOptionsException("Master files cannot be encoded unless we're generating a lossless master file during the upload process."); } $this->trackFile = $trackFile; $this->isExpirable = $isExpirable; $this->autoPublishWhenComplete = $autoPublish; $this->isForUpload = $isForUpload; $this->isReplacingTrack = $isReplacingTrack; } /** * Execute the job. * * @return void */ public function handle() { $this->beforeHandle(); // Sanity check: was this file just generated, or is it already being processed? if ($this->trackFile->status === TrackFile::STATUS_PROCESSING) { Log::warning('Track file #'.$this->trackFile->id.' (track #'.$this->trackFile->track_id.') is already being processed!'); return; } elseif (!$this->trackFile->is_expired && File::exists($this->trackFile->getFile())) { Log::warning('Track file #'.$this->trackFile->id.' (track #'.$this->trackFile->track_id.') is still valid! No need to re-encode it.'); return; } // Start the job $this->trackFile->status = TrackFile::STATUS_PROCESSING; $this->trackFile->save(); // Use the track's master file as the source if ($this->isForUpload) { $source = $this->trackFile->track->getTemporarySourceFileForVersion($this->trackFile->version); } else { $source = TrackFile::where('track_id', $this->trackFile->track_id) ->where('is_master', true) ->where('version', $this->trackFile->version) ->first() ->getFile(); } // Assign the target $this->trackFile->track->ensureDirectoryExists(); $target = $this->trackFile->getFile(); // Prepare the command $format = Track::$Formats[$this->trackFile->format]; $command = $format['command']; $command = str_replace('{$source}', '"' . $source . '"', $command); $command = str_replace('{$target}', '"' . $target . '"', $command); Log::info('Encoding track file ' . $this->trackFile->id . ' into ' . $target); // Start a synchronous process to encode the file $process = new Process($command); try { $process->mustRun(); } catch (ProcessFailedException $e) { Log::error('An exception occured in the encoding process for track file ' . $this->trackFile->id . ' - ' . $e->getMessage()); Log::info($process->getOutput()); // Ensure queue fails throw $e; } // Update the tags of the track $this->trackFile->track->updateTags($this->trackFile->format); // Insert the expiration time for cached tracks if ($this->isExpirable && $this->trackFile->is_cacheable) { $this->trackFile->expires_at = Carbon::now()->addMinutes(Config::get('ponyfm.track_file_cache_duration')); $this->trackFile->save(); } // Update file size $this->trackFile->updateFilesize(); // Complete the job $this->trackFile->status = TrackFile::STATUS_NOT_BEING_PROCESSED; $this->trackFile->save(); if ($this->isForUpload || $this->isReplacingTrack) { if (!$this->trackFile->is_master && $this->trackFile->is_cacheable) { File::delete($this->trackFile->getFile()); } // This was the final TrackFile for this track! if ($this->trackFile->track->status === Track::STATUS_COMPLETE) { if ($this->autoPublishWhenComplete) { $this->trackFile->track->published_at = Carbon::now(); DB::table('tracks')->whereUserId($this->trackFile->track->user_id)->update(['is_latest' => false]); $this->trackFile->track->is_latest = true; $this->trackFile->track->save(); } if ($this->isReplacingTrack) { $oldVersion = $this->trackFile->track->current_version; // Update the version of the track being uploaded $this->trackFile->track->duration = \AudioCache::get($source)->getDuration(); $this->trackFile->track->current_version = $this->trackFile->version; $this->trackFile->track->version_upload_status = Track::STATUS_COMPLETE; $this->trackFile->track->update(); // Delete the non-master files for the old version if ($oldVersion !== $this->trackFile->version) { $trackFilesToDelete = $this->trackFile->track->trackFilesForVersion($oldVersion)->where('is_master', false)->get(); foreach ($trackFilesToDelete as $trackFileToDelete) { if (File::exists($trackFileToDelete->getFile())) { File::delete($trackFileToDelete->getFile()); } } } } if ($this->isForUpload) { File::delete($this->trackFile->track->getTemporarySourceFileForVersion($this->trackFile->version)); } } } } /** * Handle a job failure. * * @return void */ public function failed() { $this->trackFile->status = TrackFile::STATUS_PROCESSING_ERROR; $this->trackFile->expires_at = null; $this->trackFile->save(); if ($this->isReplacingTrack) { // If a new version is being uploaded to replace a file, yet the upload fails, // all track files for that version should be deleted as it would other clutter the version if ($this->isForUpload) { $trackFiles = $this->trackFile->track->trackFilesForVersion($this->trackFile->version)->get(); foreach ($trackFiles as $trackFile) { if (File::exists($trackFile->getFile())) { File::delete($trackFile->getFile()); } $trackFile->delete(); } } $this->trackFile->track->version_upload_status = Track::STATUS_ERROR; $this->trackFile->track->update(); } } }