Pony.fm/app/models/Commands/UploadTrackCommand.php

84 lines
2.1 KiB
PHP
Raw Normal View History

2013-07-25 23:33:04 +02:00
<?php
namespace Commands;
use Entities\Track;
2013-07-28 19:45:21 +02:00
use Illuminate\Support\Facades\Log;
2013-07-25 23:33:04 +02:00
class UploadTrackCommand extends CommandBase {
/**
* @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|'
. 'audio_format:mp3,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)|'
. 'audio_channels:1,2|'
. 'sample_rate:44100,48000,88200,96000,176400,192000|'
. 'min_duration:30'
]);
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->save();
$destination = $track->getDirectory();
2013-07-27 02:15:07 +02:00
$track->ensureDirectoryExists();
2013-07-25 23:33:04 +02:00
$source = $trackFile->getPathname();
$index = 0;
2013-07-27 02:15:07 +02:00
$processes = [];
2013-07-25 23:33:04 +02:00
foreach (Track::$Formats as $name => $format) {
$target = $destination . '/' . $track->getFilenameFor($name);
$command = $format['command'];
$command = str_replace('{$source}', '"' . $source . '"', $command);
$command = str_replace('{$target}', '"' . $target . '"', $command);
2013-07-28 19:45:21 +02:00
Log::info('Encoding ' . $track->id . ' into ' . $target);
2013-07-25 23:33:04 +02:00
$this->notify('Encoding ' . $name, $index / count(Track::$Formats) * 100);
$pipes = [];
$proc = proc_open($command, [0 => ['pipe', 'r'], 1 => ['pipe', 'w'], 2 => ['pipe', 'a']], $pipes);
2013-07-27 02:15:07 +02:00
$processes[] = $proc;
2013-07-25 23:33:04 +02:00
}
2013-07-27 02:15:07 +02:00
foreach ($processes as $proc)
2013-07-25 23:33:04 +02:00
proc_close($proc);
2013-07-28 19:45:21 +02:00
$track->updateTags();
2013-07-25 23:33:04 +02:00
} catch (\Exception $e) {
$track->delete();
throw $e;
}
return CommandResponse::succeed([
'id' => $track->id,
'name' => $track->name
]);
}
}