2015-12-13 04:42:28 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
2016-02-04 15:37:12 +00:00
|
|
|
|
use App\Libraries\WatchRecord\InotifyWatchRecord;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
use App\Models\Setting;
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
use Media;
|
|
|
|
|
|
|
|
|
|
class SyncMedia extends Command
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The name and signature of the console command.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
2016-02-02 07:47:00 +00:00
|
|
|
|
protected $signature = 'koel:sync
|
2016-03-22 08:22:39 +00:00
|
|
|
|
{record? : A single watch record. Consult Wiki for more info.}
|
|
|
|
|
{--tags= : The comma-separated tags to sync into the database}
|
|
|
|
|
{--force : Force re-syncing even unchanged files}';
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
|
|
protected $ignored = 0;
|
|
|
|
|
protected $invalid = 0;
|
|
|
|
|
protected $synced = 0;
|
|
|
|
|
|
2016-08-17 14:26:07 +00:00
|
|
|
|
/**
|
|
|
|
|
* The progress bar.
|
|
|
|
|
*
|
|
|
|
|
* @var \Symfony\Component\Console\Helper\ProgressBar
|
|
|
|
|
*/
|
|
|
|
|
protected $bar;
|
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* The console command description.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $description = 'Sync songs found in configured directory against the database.';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Execute the console command.
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function handle()
|
|
|
|
|
{
|
|
|
|
|
if (!Setting::get('media_path')) {
|
|
|
|
|
$this->error("Media path hasn't been configured. Exiting.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-02 07:47:00 +00:00
|
|
|
|
if (!$record = $this->argument('record')) {
|
|
|
|
|
$this->syncAll();
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->syngle($record);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sync all files in the configured media path.
|
|
|
|
|
*/
|
|
|
|
|
protected function syncAll()
|
|
|
|
|
{
|
2016-08-17 14:26:07 +00:00
|
|
|
|
$this->info('Koel syncing started.'.PHP_EOL);
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
2016-03-22 08:22:39 +00:00
|
|
|
|
// Get the tags to sync.
|
|
|
|
|
// Notice that this is only meaningful for existing records.
|
|
|
|
|
// New records will have every applicable field sync'ed in.
|
|
|
|
|
$tags = $this->option('tags') ? explode(',', $this->option('tags')) : [];
|
|
|
|
|
|
|
|
|
|
Media::sync(null, $tags, $this->option('force'), $this);
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
2016-08-17 14:26:07 +00:00
|
|
|
|
$this->output->writeln(
|
|
|
|
|
PHP_EOL.PHP_EOL
|
|
|
|
|
."<info>Completed! {$this->synced} new or updated song(s)</info>, "
|
2015-12-13 04:42:28 +00:00
|
|
|
|
."{$this->ignored} unchanged song(s), "
|
2016-08-17 14:26:07 +00:00
|
|
|
|
."and <comment>{$this->invalid} invalid file(s)</comment>."
|
|
|
|
|
);
|
2015-12-13 04:42:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-02 07:47:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* SYNc a sinGLE file or directory. See my awesome pun?
|
|
|
|
|
*
|
2016-02-04 15:04:53 +00:00
|
|
|
|
* @param string $record The watch record.
|
|
|
|
|
* As of current we only support inotifywait.
|
|
|
|
|
* Some examples:
|
|
|
|
|
* - "DELETE /var/www/media/gone.mp3"
|
|
|
|
|
* - "CLOSE_WRITE,CLOSE /var/www/media/new.mp3"
|
|
|
|
|
* - "MOVED_TO /var/www/media/new_dir"
|
2016-02-02 07:47:00 +00:00
|
|
|
|
*
|
2016-02-15 16:39:13 +00:00
|
|
|
|
* @link http://man7.org/linux/man-pages/man1/inotifywait.1.html
|
2016-02-02 07:47:00 +00:00
|
|
|
|
*/
|
|
|
|
|
public function syngle($record)
|
|
|
|
|
{
|
2016-02-04 15:37:12 +00:00
|
|
|
|
Media::syncByWatchRecord(new InotifyWatchRecord($record), $this);
|
2016-02-02 07:47:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* Log a song's sync status to console.
|
2016-08-03 10:42:11 +00:00
|
|
|
|
*
|
|
|
|
|
* @param string $path
|
|
|
|
|
* @param mixed $result
|
2015-12-13 04:42:28 +00:00
|
|
|
|
*/
|
|
|
|
|
public function logToConsole($path, $result)
|
|
|
|
|
{
|
|
|
|
|
$name = basename($path);
|
|
|
|
|
|
|
|
|
|
if ($result === true) {
|
|
|
|
|
if ($this->option('verbose')) {
|
|
|
|
|
$this->line("$name has no changes – ignoring");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
++$this->ignored;
|
|
|
|
|
} elseif ($result === false) {
|
|
|
|
|
if ($this->option('verbose')) {
|
|
|
|
|
$this->error("$name is not a valid media file");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
++$this->invalid;
|
|
|
|
|
} else {
|
|
|
|
|
if ($this->option('verbose')) {
|
|
|
|
|
$this->info("$name synced");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
++$this->synced;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-17 14:26:07 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a progress bar.
|
|
|
|
|
*
|
2016-08-17 14:26:38 +00:00
|
|
|
|
* @param int $max Max steps
|
2016-08-17 14:26:07 +00:00
|
|
|
|
*/
|
|
|
|
|
public function createProgressBar($max)
|
|
|
|
|
{
|
|
|
|
|
$this->bar = $this->getOutput()->createProgressBar($max);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update the progress bar (advance by 1 step).
|
|
|
|
|
*/
|
|
|
|
|
public function updateProgressBar()
|
|
|
|
|
{
|
|
|
|
|
$this->bar->advance();
|
|
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
|
}
|