photo/app/Console/Commands/VideoImport.php

150 lines
3.3 KiB
PHP
Raw Normal View History

2016-07-04 06:00:33 +00:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
2018-01-11 12:59:53 +00:00
use Illuminate\Foundation\Bus\DispatchesJobs;
2019-12-15 12:34:42 +00:00
use App\Models\{Person,Video,Tag};
use App\Traits\Files;
2016-07-04 06:00:33 +00:00
class VideoImport extends Command
{
2018-01-11 12:59:53 +00:00
use DispatchesJobs;
2019-12-15 12:34:42 +00:00
use Files;
2016-07-04 06:00:33 +00:00
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'video:import
{--dir= : Directory to Parse}
{--file= : File to Import}
{--ignoredupe : Ignore duplicate files}
{--deletedupe : Delete duplicate files}
{--dumpid3 : Dump ID3 data}
{--people= : People to reference in video}
{--tags= : Add tag to video}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Import videos into the database';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2019-12-15 12:34:42 +00:00
$files = $this->getFiles([
'dir'=>$this->option('dir'),
'file'=>$this->option('file')
],'video');
2016-07-04 06:00:33 +00:00
if (! count($files))
exit;
// Show a progress bar
$bar = $this->output->createProgressBar(count($files));
$bar->setFormat("%current%/%max% [%bar%] %percent:3s%% (%memory%) (%remaining%) ");
$tags = NULL;
$t = $p = array();
// Tags
2019-12-15 12:34:42 +00:00
if ($this->option('tags')) {
2016-07-04 06:00:33 +00:00
$tags = explode(',',$this->option('tags'));
$t = Tag::whereIn('tag',$tags)->pluck('id')->toArray();
2019-12-15 12:34:42 +00:00
if (! $t OR count($t) != count($tags)) {
2016-07-04 06:00:33 +00:00
$this->error(sprintf('Tag [%s] dont exist',join('|',$tags)));
abort(501);
}
}
// People
2019-12-15 12:34:42 +00:00
if ($this->option('people')) {
2016-07-04 06:00:33 +00:00
$tags = explode(',',$this->option('people'));
$p = Person::whereIn('tag',$tags)->pluck('id')->toArray();
2019-12-15 12:34:42 +00:00
2016-07-04 06:00:33 +00:00
if (! $p OR count($p) != count($tags))
{
$this->error(sprintf('People [%s] dont exist',join('|',$tags)));
abort(501);
}
}
$c = 0;
2019-12-15 12:34:42 +00:00
foreach ($files as $file) {
2016-07-04 06:00:33 +00:00
$bar->advance();
2019-12-15 12:34:42 +00:00
if (preg_match('/@__thumb/',$file) OR preg_match('/\/._/',$file)) {
2016-07-04 06:00:33 +00:00
$this->warn(sprintf('Ignoring file [%s]',$file));
continue;
}
2019-12-15 12:34:42 +00:00
if (! in_array(strtolower(pathinfo($file,PATHINFO_EXTENSION)),config('video.import.accepted'))) {
2016-07-04 06:00:33 +00:00
$this->warn(sprintf('Ignoring [%s]',$file));
continue;
}
if ($this->option('verbose'))
$this->info(sprintf('Processing file [%s]',$file));
$c++;
2018-01-11 12:59:53 +00:00
$o = Video::where('filename',$file)->first();
2016-07-04 06:00:33 +00:00
2019-12-15 12:34:42 +00:00
// The video doesnt exist
if (is_null($o)) {
2018-01-11 12:59:53 +00:00
$o = new Video;
$o->filename = $file;
2016-07-04 06:00:33 +00:00
}
2019-12-15 12:34:42 +00:00
if ($o->exists)
$this->warn(sprintf('%s [%s] already in DB: %s',$o->objectType(),$file,$o->id));
// Make sure we can read the video.
if (! is_readable($o->file_path())) {
2018-01-11 12:59:53 +00:00
$this->warn(sprintf('Ignoring [%s], it is not readable',$o->file_path()));
2016-07-04 06:00:33 +00:00
continue;
}
2018-01-11 12:59:53 +00:00
$o->save();
2016-07-04 06:00:33 +00:00
2018-01-11 12:59:53 +00:00
if ($o->wasRecentlyCreated)
$this->info(sprintf('%s [%s] stored in DB: %s',$o->objectType(),$file,$o->id));
2016-07-04 06:00:33 +00:00
// Record our people and tags
if ($p)
2018-01-11 12:59:53 +00:00
$o->People()->sync($p);
2016-07-04 06:00:33 +00:00
if ($t)
2018-01-11 12:59:53 +00:00
$o->Tags()->sync($t);
$this->dispatch((new \App\Jobs\CatalogScan($o))->onQueue('scan'));
2016-07-04 06:00:33 +00:00
if ($this->option('dumpid3'))
2018-01-11 12:59:53 +00:00
dd($o->dump());
2016-07-04 06:00:33 +00:00
}
$bar->finish();
2018-01-11 12:59:53 +00:00
return $this->info(sprintf('Videos processed: %s',$c));
2016-07-04 06:00:33 +00:00
}
}