. */ namespace Poniverse\Ponyfm\Commands; use Config; use Illuminate\Foundation\Bus\DispatchesJobs; use Poniverse\Ponyfm\Exceptions\InvalidEncodeOptionsException; use Poniverse\Ponyfm\Jobs\EncodeTrackFile; use Poniverse\Ponyfm\Track; use Poniverse\Ponyfm\TrackFile; use AudioCache; use File; use Illuminate\Support\Str; use Storage; class UploadTrackCommand extends CommandBase { use DispatchesJobs; private $_allowLossy; private $_allowShortTrack; private $_losslessFormats = [ 'flac', 'pcm_s16le ([1][0][0][0] / 0x0001)', 'pcm_s16be', 'adpcm_ms ([2][0][0][0] / 0x0002)', 'pcm_s24le ([1][0][0][0] / 0x0001)', 'pcm_s24be', 'pcm_f32le ([3][0][0][0] / 0x0003)', 'pcm_f32be (fl32 / 0x32336C66)' ]; public function __construct($allowLossy = false, $allowShortTrack = false) { $this->_allowLossy = $allowLossy; $this->_allowShortTrack = $allowShortTrack; } /** * @return bool */ public function authorize() { return \Auth::user() != null; } /** * @throws \Exception * @return CommandResponse */ public function execute() { $user = \Auth::user(); $trackFile = \Input::file('track'); $audio = \AudioCache::get($trackFile->getPathname()); $track = new Track(); $track->user_id = $user->id; $track->title = pathinfo($trackFile->getClientOriginalName(), PATHINFO_FILENAME); $track->duration = $audio->getDuration(); $track->is_listed = true; $track->save(); $track->ensureDirectoryExists(); Storage::makeDirectory(Config::get('ponyfm.files_directory') . '/queued-tracks', 0755, false, true); $trackFile = $trackFile->move(Config::get('ponyfm.files_directory').'/queued-tracks', $track->id); $validator = \Validator::make(['track' => $trackFile], [ 'track' => 'required|' . ($this->_allowLossy ? '' : 'audio_format:'. implode(',', $this->_losslessFormats).'|') . ($this->_allowShortTrack ? '' : 'min_duration:30|') . 'audio_channels:1,2' ]); if ($validator->fails()) { $track->delete(); return CommandResponse::fail($validator); } try { $source = $trackFile->getPathname(); // Lossy uploads need to be identified and set as the master file // without being re-encoded. $audioObject = AudioCache::get($source); $isLossyUpload = !in_array($audioObject->getAudioCodec(), $this->_losslessFormats); if ($isLossyUpload) { if ($audioObject->getAudioCodec() === 'mp3') { $masterFormat = 'MP3'; } else if (Str::startsWith($audioObject->getAudioCodec(), 'aac')) { $masterFormat = 'AAC'; } else if ($audioObject->getAudioCodec() === 'vorbis') { $masterFormat = 'OGG Vorbis'; } else { $validator->messages()->add('track', 'The track does not contain audio in a known lossy format.'); $track->delete(); return CommandResponse::fail($validator); } $trackFile = new TrackFile(); $trackFile->is_master = true; $trackFile->format = $masterFormat; $trackFile->track_id = $track->id; $trackFile->save(); // Lossy masters are copied into the datastore - no re-encoding involved. File::copy($source, $trackFile->getFile()); } $trackFiles = []; foreach (Track::$Formats as $name => $format) { // Don't bother with lossless transcodes of lossy uploads, and // don't re-encode the lossy master. if ($isLossyUpload && ($format['is_lossless'] || $name === $masterFormat)) { continue; } $trackFile = new TrackFile(); $trackFile->is_master = $name === 'FLAC' ? true : false; $trackFile->format = $name; $trackFile->status = TrackFile::STATUS_PROCESSING; if (in_array($name, Track::$CacheableFormats) && $trackFile->is_master == false) { $trackFile->is_cacheable = true; } else { $trackFile->is_cacheable = false; } $track->trackFiles()->save($trackFile); // All TrackFile records we need are synchronously created // before kicking off the encode jobs in order to avoid a race // condition with the "temporary" source file getting deleted. $trackFiles[] = $trackFile; } try { foreach($trackFiles as $trackFile) { $this->dispatch(new EncodeTrackFile($trackFile, false, true)); } } catch (InvalidEncodeOptionsException $e) { $track->delete(); return CommandResponse::fail(['track' => [$e->getMessage()]]); } } catch (\Exception $e) { $track->delete(); throw $e; } return CommandResponse::succeed([ 'id' => $track->id, 'name' => $track->name ]); } }