_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()); $validator = \Validator::make(['track' => $trackFile], [ 'track' => 'required|' . ($this->_allowLossy ? '' : 'audio_format:'. implode(',', $this->_losslessFormats).'|') . ($this->_allowShortTrack ? '' : 'min_duration:30|') . 'audio_channels:1,2|' . 'sample_rate:44100,48000,88200,96000,176400,192000' ]); if ($validator->fails()) return CommandResponse::fail($validator); $track = new Track(); try { $track->user_id = $user->id; $track->title = pathinfo($trackFile->getClientOriginalName(), PATHINFO_FILENAME); $track->duration = $audio->getDuration(); $track->is_listed = true; $track->save(); $destination = $track->getDirectory(); $track->ensureDirectoryExists(); $source = $trackFile->getPathname(); $index = 0; $processes = []; // 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 { $validator->messages()->add('track', 'The track does not contain audio in a known lossy format.'); 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()); } 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; $track->trackFiles()->save($trackFile); $target = $destination . '/' . $trackFile->getFilename(); //$track->getFilenameFor($name); $command = $format['command']; $command = str_replace('{$source}', '"' . $source . '"', $command); $command = str_replace('{$target}', '"' . $target . '"', $command); Log::info('Encoding ' . $track->id . ' into ' . $target); $this->notify('Encoding ' . $name, $index / count(Track::$Formats) * 100); $pipes = []; $proc = proc_open($command, [0 => ['pipe', 'r'], 1 => ['pipe', 'w'], 2 => ['pipe', 'a']], $pipes); $processes[] = $proc; } foreach ($processes as $proc) proc_close($proc); $track->updateTags(); } catch (\Exception $e) { $track->delete(); throw $e; } return CommandResponse::succeed([ 'id' => $track->id, 'name' => $track->name ]); } }