Photo scan and move implemented, and remove redundant files
This commit is contained in:
parent
431ceec69f
commit
a3013078e0
@ -1,73 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Console\Commands;
|
|
||||||
|
|
||||||
use Illuminate\Console\Command;
|
|
||||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
||||||
|
|
||||||
use App\Jobs\{PhotoDelete,VideoDelete};
|
|
||||||
use App\Traits\Type;
|
|
||||||
|
|
||||||
class CatalogAutoDelete extends Command
|
|
||||||
{
|
|
||||||
use DispatchesJobs,Type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The name and signature of the console command.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $signature = 'catalog:autodelete {type : Photo | Video }';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The console command description.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $description = 'Auto Delete Catalog Items';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new command instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the console command.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
$class = $this->getModelType($this->argument('type'));
|
|
||||||
|
|
||||||
$class::where('remove',1)->each(function($o) {
|
|
||||||
foreach ($o->myduplicates()->get() as $oo) {
|
|
||||||
if (! $oo->signature OR ! $oo->file_signature)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if ($oo->signature == $o->signature AND $oo->file_signature == $o->file_signature) {
|
|
||||||
$this->info(sprintf('Removing: %s (%s)',$o->id,$o->filename));
|
|
||||||
|
|
||||||
// Dispatch Job to move file.
|
|
||||||
switch (strtolower($this->argument('type'))) {
|
|
||||||
case 'photo':
|
|
||||||
$this->dispatch((new PhotoDelete($o))->onQueue('delete'));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'video':
|
|
||||||
$this->dispatch((new VideoDelete($o))->onQueue('delete'));
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
$this->error('Dont know how to handle: ',$this->argument('type'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
@ -3,27 +3,29 @@
|
|||||||
namespace App\Console\Commands;
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
use Illuminate\Console\Command;
|
use Illuminate\Console\Command;
|
||||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
||||||
|
|
||||||
use App\Jobs\{PhotoMove,VideoMove};
|
use App\Jobs\CatalogMove as Job;
|
||||||
|
use App\Traits\Type;
|
||||||
|
|
||||||
class CatalogMove extends Command
|
class CatalogMove extends Command
|
||||||
{
|
{
|
||||||
use DispatchesJobs;
|
use Type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name and signature of the console command.
|
* The name and signature of the console command.
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $signature = 'catalog:move {type : Photo | Video }';
|
protected $signature = 'catalog:move'
|
||||||
|
.' {type : Photo | Video }'
|
||||||
|
.' {id : Photo ID}';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The console command description.
|
* The console command description.
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $description = 'Trigger Moves';
|
protected $description = 'Move Photo/Video based on their meta data';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the console command.
|
* Execute the console command.
|
||||||
@ -32,35 +34,10 @@ class CatalogMove extends Command
|
|||||||
*/
|
*/
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$class = 'App\Models\\'.$this->argument('type');
|
$class = $this->getModelType($this->argument('type'));
|
||||||
|
|
||||||
if (! class_exists($class))
|
$o = $class::findOrFail($this->argument('id'));
|
||||||
abort(500,sprintf('No class [%s]',$this->argument('type')));
|
|
||||||
|
|
||||||
foreach ($class::where('filename','LIKE','%INCOMING%')->get() as $o) {
|
return Job::dispatchSync($o);
|
||||||
// Catch any files that are already there.
|
|
||||||
if ($o->moveable() === 1) {
|
|
||||||
$o->duplicate = TRUE;
|
|
||||||
$o->save();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$x = NULL;
|
|
||||||
if (! $o->scanned OR $o->duplicate OR $o->remove OR ($x=$o->moveable()) !== TRUE) {
|
|
||||||
$this->warn(sprintf('Ignoring (%s)[%s]... [%s]',$o->id,$o->file_path(),$x));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (strtolower($this->argument('type'))) {
|
|
||||||
case 'photo':
|
|
||||||
$this->dispatch((new PhotoMove($o))->onQueue('move'));
|
|
||||||
break;
|
|
||||||
case 'video':
|
|
||||||
$this->dispatch((new VideoMove($o))->onQueue('move'));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$this->error('Dont know how to handle: ',$this->argument('type'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -16,10 +16,10 @@ class CatalogScan extends Command
|
|||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $signature = 'catalog:scan'.
|
protected $signature = 'catalog:scan'
|
||||||
' {type : Photo | Video }'.
|
.' {type : Photo | Video }'
|
||||||
' {id : Photo ID}'.
|
.' {id : Photo ID}'
|
||||||
' {--dirty : Show Dirty}';
|
.' {--dirty : Show Dirty}';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The console command description.
|
* The console command description.
|
||||||
|
@ -1,149 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Console\Commands;
|
|
||||||
|
|
||||||
use Illuminate\Console\Command;
|
|
||||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
||||||
|
|
||||||
use App\Models\{Person,Video,Tag};
|
|
||||||
use App\Traits\Files;
|
|
||||||
|
|
||||||
class VideoImport extends Command
|
|
||||||
{
|
|
||||||
use DispatchesJobs;
|
|
||||||
use Files;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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()
|
|
||||||
{
|
|
||||||
$files = $this->getFiles([
|
|
||||||
'dir'=>$this->option('dir'),
|
|
||||||
'file'=>$this->option('file')
|
|
||||||
],'video');
|
|
||||||
|
|
||||||
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
|
|
||||||
if ($this->option('tags')) {
|
|
||||||
$tags = explode(',',$this->option('tags'));
|
|
||||||
$t = Tag::whereIn('tag',$tags)->pluck('id')->toArray();
|
|
||||||
|
|
||||||
if (! $t OR count($t) != count($tags)) {
|
|
||||||
$this->error(sprintf('Tag [%s] dont exist',join('|',$tags)));
|
|
||||||
abort(501);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// People
|
|
||||||
if ($this->option('people')) {
|
|
||||||
$tags = explode(',',$this->option('people'));
|
|
||||||
$p = Person::whereIn('tag',$tags)->pluck('id')->toArray();
|
|
||||||
|
|
||||||
if (! $p OR count($p) != count($tags))
|
|
||||||
{
|
|
||||||
$this->error(sprintf('People [%s] dont exist',join('|',$tags)));
|
|
||||||
abort(501);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$c = 0;
|
|
||||||
foreach ($files as $file) {
|
|
||||||
$bar->advance();
|
|
||||||
|
|
||||||
if (preg_match('/@__thumb/',$file) OR preg_match('/\/._/',$file)) {
|
|
||||||
$this->warn(sprintf('Ignoring file [%s]',$file));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! in_array(strtolower(pathinfo($file,PATHINFO_EXTENSION)),config('video.import.accepted'))) {
|
|
||||||
$this->warn(sprintf('Ignoring [%s]',$file));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->option('verbose'))
|
|
||||||
$this->info(sprintf('Processing file [%s]',$file));
|
|
||||||
|
|
||||||
$c++;
|
|
||||||
|
|
||||||
$o = Video::where('filename',$file)->first();
|
|
||||||
|
|
||||||
// The video doesnt exist
|
|
||||||
if (is_null($o)) {
|
|
||||||
$o = new Video;
|
|
||||||
$o->filename = $file;
|
|
||||||
}
|
|
||||||
|
|
||||||
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())) {
|
|
||||||
$this->warn(sprintf('Ignoring [%s], it is not readable',$o->file_path()));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$o->save();
|
|
||||||
|
|
||||||
if ($o->wasRecentlyCreated)
|
|
||||||
$this->info(sprintf('%s [%s] stored in DB: %s',$o->objectType(),$file,$o->id));
|
|
||||||
|
|
||||||
// Record our people and tags
|
|
||||||
if ($p)
|
|
||||||
$o->People()->sync($p);
|
|
||||||
if ($t)
|
|
||||||
$o->Tags()->sync($t);
|
|
||||||
|
|
||||||
$this->dispatch((new \App\Jobs\CatalogScan($o))->onQueue('scan'));
|
|
||||||
|
|
||||||
if ($this->option('dumpid3'))
|
|
||||||
dd($o->properties());
|
|
||||||
}
|
|
||||||
|
|
||||||
$bar->finish();
|
|
||||||
|
|
||||||
return $this->info(sprintf('Videos processed: %s',$c));
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,102 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Console\Commands;
|
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use Illuminate\Console\Command;
|
|
||||||
|
|
||||||
use App\Traits\Files;
|
|
||||||
use App\Models\Video;
|
|
||||||
|
|
||||||
class VideoMove extends Command
|
|
||||||
{
|
|
||||||
use Files;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The name and signature of the console command.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $signature = 'video:move
|
|
||||||
{--file= : Video File}
|
|
||||||
{--id= : Video ID}';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The console command description.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $description = 'Moves Videos to their new location';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new command instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the console command.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
if ($this->option('file')) {
|
|
||||||
$vo = Video::notRemove()->notDuplicate()->where('filename',Video::path($this->option('file')));
|
|
||||||
|
|
||||||
} elseif ($this->option('id')) {
|
|
||||||
$vo = Video::notRemove()->notDuplicate()->where('id',$this->option('id'));
|
|
||||||
|
|
||||||
} else {
|
|
||||||
$vo = Video::notRemove()->notDuplicate();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $vo)
|
|
||||||
exit;
|
|
||||||
|
|
||||||
// Show a progress bar
|
|
||||||
$bar = $this->output->createProgressBar($vo->count());
|
|
||||||
$bar->setFormat("%current%/%max% [%bar%] %percent:3s%% (%memory%) (%remaining%) ");
|
|
||||||
$bar->setRedrawFrequency(100);
|
|
||||||
|
|
||||||
$vo->chunk(1,function($video) use ($bar) {
|
|
||||||
while ($o = $video->shift()) {
|
|
||||||
if (($x = $o->moveable()) === TRUE) {
|
|
||||||
Log::info(sprintf('%s: Moving (%s)[%s]',__METHOD__,$o->id,$o->filename));
|
|
||||||
|
|
||||||
if ($this->makeParentDir(dirname($o->file_path(FALSE,TRUE))) AND rename($o->file_path(),$o->file_path(FALSE,TRUE))) {
|
|
||||||
// Convert the path to a relative one.
|
|
||||||
$o->filename = $o->file_path(TRUE,TRUE);
|
|
||||||
|
|
||||||
// @todo If the DB update failed, move it back.
|
|
||||||
if (! $o->save()) # AND ! rename($path,$o->file_path()))
|
|
||||||
{
|
|
||||||
$this->error(sprintf('Save after rename failed for (%s)',$o->id));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
$this->error(sprintf('Rename failed for (%s)',$o->id));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
chmod($o->file_path(),0444);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
if ($x > 0) {
|
|
||||||
$this->warn(sprintf('Unable to move (%s) [%s] to [%s], movable returned (%s)',$o->id,$o->file_path(),$o->file_path(FALSE,TRUE),$x));
|
|
||||||
|
|
||||||
if ($x == 1 AND $v = Video::where('filename',$o->file_path(TRUE,TRUE))->first())
|
|
||||||
$this->warn(sprintf('File is id (%s) [%s]',$v->file_path(),$v->id));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$bar->advance();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
76
app/Jobs/CatalogMove.php
Normal file
76
app/Jobs/CatalogMove.php
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Jobs;
|
||||||
|
|
||||||
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Foundation\Queue\Queueable;
|
||||||
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
|
use App\Models\Abstracted\Catalog;
|
||||||
|
use Illuminate\Support\Facades\Storage;
|
||||||
|
|
||||||
|
class CatalogMove implements ShouldQueue,ShouldBeUnique
|
||||||
|
{
|
||||||
|
use InteractsWithQueue,Queueable,SerializesModels;
|
||||||
|
|
||||||
|
// Our object
|
||||||
|
private Catalog $o;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new job instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct(Catalog $o) {
|
||||||
|
$this->o = $o->withoutRelations();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function middleware(): array
|
||||||
|
{
|
||||||
|
return [new WithoutOverlapping($this->o->id)];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the job.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
* @throws \Exception
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$from = $this->o->file_name_rel(TRUE);
|
||||||
|
$to = $this->o->file_name_rel(FALSE);
|
||||||
|
|
||||||
|
Log::info(sprintf('%s: Moving [%s|%s] from [%s] to [%s]',
|
||||||
|
__METHOD__,
|
||||||
|
$this->o->objecttype(),
|
||||||
|
$this->o->id,
|
||||||
|
$from,
|
||||||
|
$to,
|
||||||
|
));
|
||||||
|
|
||||||
|
// If the move is successful, commit the transaction
|
||||||
|
if ($this->o->isMoveable()) {
|
||||||
|
// If our move fails, we'll abort the update
|
||||||
|
DB::beginTransaction();
|
||||||
|
$this->o->filename = $this->o->file_name();
|
||||||
|
$this->o->save();
|
||||||
|
|
||||||
|
if (Storage::disk($this->o::fs)->move($from,$to))
|
||||||
|
DB::commit();
|
||||||
|
else
|
||||||
|
Log::error(sprintf('%s: Move failed for file [%s]',__METHOD__,$from));
|
||||||
|
|
||||||
|
} else
|
||||||
|
Log::alert(sprintf('%s: Unable to move file [%s] with reason [%s]',
|
||||||
|
__METHOD__,
|
||||||
|
$from,
|
||||||
|
$this->o->isMoveableReason(),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
@ -30,11 +30,19 @@ class CatalogScan implements ShouldQueue, ShouldBeUnique
|
|||||||
$this->show_dirty = $show_dirty;
|
$this->show_dirty = $show_dirty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function xmiddleware(): array
|
public function middleware(): array
|
||||||
{
|
{
|
||||||
return [new WithoutOverlapping($this->o->id)];
|
return [new WithoutOverlapping($this->o->id)];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the unique ID for the job.
|
||||||
|
*/
|
||||||
|
public function uniqueId(): string
|
||||||
|
{
|
||||||
|
return $this->o->id;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the job.
|
* Execute the job.
|
||||||
*
|
*
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Jobs;
|
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use Illuminate\Queue\SerializesModels;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Support\Facades\Artisan;
|
|
||||||
|
|
||||||
use App\Models\Photo;
|
|
||||||
|
|
||||||
class PhotoMove extends Job implements ShouldQueue
|
|
||||||
{
|
|
||||||
use InteractsWithQueue,SerializesModels;
|
|
||||||
|
|
||||||
public $photo;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new job instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(Photo $o)
|
|
||||||
{
|
|
||||||
$this->photo = $o;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the job.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
Log::info(sprintf('%s: Moving [%s]',__METHOD__,$this->photo->id));
|
|
||||||
Artisan::call('photo:move',['--id' => $this->photo->id]);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Jobs;
|
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use Illuminate\Queue\SerializesModels;
|
|
||||||
use Illuminate\Queue\InteractsWithQueue;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Illuminate\Support\Facades\Artisan;
|
|
||||||
|
|
||||||
use App\Models\Video;
|
|
||||||
|
|
||||||
class VideoMove extends Job implements ShouldQueue
|
|
||||||
{
|
|
||||||
use InteractsWithQueue,SerializesModels;
|
|
||||||
|
|
||||||
public $video;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new job instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(Video $o)
|
|
||||||
{
|
|
||||||
$this->video = $o;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Execute the job.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
Log::info(sprintf('%s: Moving [%s]',__METHOD__,$this->video->id));
|
|
||||||
Artisan::call('video:move',['--id' => $this->video->id]);
|
|
||||||
}
|
|
||||||
}
|
|
@ -22,7 +22,7 @@ abstract class Catalog extends Model
|
|||||||
'thumbnail' => PostgresBytea::class,
|
'thumbnail' => PostgresBytea::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
protected const fs = 'nas';
|
public const fs = 'nas';
|
||||||
|
|
||||||
private ?string $move_reason;
|
private ?string $move_reason;
|
||||||
|
|
||||||
@ -271,7 +271,12 @@ abstract class Catalog extends Model
|
|||||||
|
|
||||||
} else
|
} else
|
||||||
return Storage::disk(self::fs)
|
return Storage::disk(self::fs)
|
||||||
->path(config(static::config.'.dir').DIRECTORY_SEPARATOR.$this->filename);
|
->path($this->file_name_rel());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function file_name_rel(bool $source=TRUE): string
|
||||||
|
{
|
||||||
|
return config(static::config.'.dir').DIRECTORY_SEPARATOR.($source ? $this->filename : $this->file_name());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -285,7 +290,7 @@ abstract class Catalog extends Model
|
|||||||
if ($new)
|
if ($new)
|
||||||
$file = $this->file_name(TRUE);
|
$file = $this->file_name(TRUE);
|
||||||
|
|
||||||
return (($short OR preg_match('/^\//',$file)) ? '' : config($this->type.'.dir').DIRECTORY_SEPARATOR).$file;
|
return (($short OR preg_match('/^\//',$file)) ? '' : config(static::config.'.dir').DIRECTORY_SEPARATOR).$file;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -507,18 +512,6 @@ abstract class Catalog extends Model
|
|||||||
return is_readable($this->file_name(FALSE));
|
return is_readable($this->file_name(FALSE));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine if a file is moveable
|
|
||||||
*
|
|
||||||
* useID boolean Determine if the path is based on the the ID or date
|
|
||||||
* @todo Change to boolean and rename isMoveable() Log any FALSE reason.
|
|
||||||
*/
|
|
||||||
public function moveable()
|
|
||||||
{
|
|
||||||
Log::alert(__METHOD__.' deprecated');
|
|
||||||
return $this->isMoveable();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the id of the next record
|
* Get the id of the next record
|
||||||
*/
|
*/
|
||||||
|
@ -4,9 +4,12 @@ namespace App\Models;
|
|||||||
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
|
use Illuminate\Support\Facades\Route;
|
||||||
use Illuminate\Support\Traits\ForwardsCalls;
|
use Illuminate\Support\Traits\ForwardsCalls;
|
||||||
use Imagick;
|
use Imagick;
|
||||||
|
|
||||||
|
use App\Jobs\CatalogMove;
|
||||||
|
|
||||||
class Photo extends Abstracted\Catalog
|
class Photo extends Abstracted\Catalog
|
||||||
{
|
{
|
||||||
use ForwardsCalls;
|
use ForwardsCalls;
|
||||||
@ -28,11 +31,26 @@ class Photo extends Abstracted\Catalog
|
|||||||
|
|
||||||
// How should the image be rotated, based on the value of orientation
|
// How should the image be rotated, based on the value of orientation
|
||||||
private array $_rotate = [
|
private array $_rotate = [
|
||||||
3=>180,
|
3 => 180,
|
||||||
6=>90,
|
6 => 90,
|
||||||
8=>-90,
|
8 => -90,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
public static function boot()
|
||||||
|
{
|
||||||
|
parent::boot();
|
||||||
|
|
||||||
|
// Any photo saved, queue it to be moved.
|
||||||
|
self::saved(function($item) {
|
||||||
|
if ($item->scanned && (! $item->duplicate) && (! $item->remove) && ($x=$item->shouldMove()) === TRUE) {
|
||||||
|
Log::info(sprintf('%s: Need to Move [%s]','Photo',$item->id.'|'.serialize($x)));
|
||||||
|
|
||||||
|
CatalogMove::dispatch($item)
|
||||||
|
->onQueue('move');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calculate the GPS coordinates
|
* Calculate the GPS coordinates
|
||||||
*/
|
*/
|
||||||
|
@ -2,13 +2,11 @@
|
|||||||
|
|
||||||
namespace App\Providers;
|
namespace App\Providers;
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Log;
|
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
||||||
|
|
||||||
use App\Models\{Photo,Video};
|
use App\Models\{Photo,Video};
|
||||||
use App\Jobs\{PhotoMove,VideoMove};
|
|
||||||
|
|
||||||
class AppServiceProvider extends ServiceProvider
|
class AppServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
@ -32,23 +30,6 @@ class AppServiceProvider extends ServiceProvider
|
|||||||
public function boot(): void
|
public function boot(): void
|
||||||
{
|
{
|
||||||
Route::model('po',Photo::class);
|
Route::model('po',Photo::class);
|
||||||
|
Route::model('vo',Video::class);
|
||||||
// Any photo saved, queue it to be moved.
|
|
||||||
Photo::saved(function($photo) {
|
|
||||||
if ($photo->scanned && (! $photo->duplicate) && (! $photo->remove) && ($x=$photo->moveable()) === TRUE) {
|
|
||||||
Log::info(sprintf('%s: Need to Move [%s]',__METHOD__,$photo->id.'|'.serialize($x)));
|
|
||||||
|
|
||||||
PhotoMove::dispatch($photo)->onQueue('move');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Any video saved, queue it to be moved.
|
|
||||||
Video::saved(function($video) {
|
|
||||||
if ($video->scanned AND ! $video->duplicate AND ! $video->remove AND ($x=$video->moveable()) === TRUE) {
|
|
||||||
Log::info(sprintf('%s: Need to Move [%s]',__METHOD__,$video->id.'|'.serialize($x)));
|
|
||||||
|
|
||||||
$this->dispatch((new VideoMove($video))->onQueue('move'));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -40,6 +40,7 @@ return [
|
|||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'root' => storage_path('nas'),
|
'root' => storage_path('nas'),
|
||||||
'throw' => false,
|
'throw' => false,
|
||||||
|
'visibility' => 'public',
|
||||||
],
|
],
|
||||||
|
|
||||||
'public' => [
|
'public' => [
|
||||||
|
Loading…
Reference in New Issue
Block a user