photo/app/Providers/AppServiceProvider.php

51 lines
1.2 KiB
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
namespace App\Providers;
2019-11-09 02:52:04 +00:00
use Illuminate\Support\Facades\Log;
2016-06-20 13:35:59 +00:00
use Illuminate\Support\ServiceProvider;
2019-11-08 12:08:34 +00:00
use Illuminate\Foundation\Bus\DispatchesJobs;
2019-11-08 12:51:47 +00:00
use App\Models\{Photo,Video};
use App\Jobs\{PhotoMove,VideoMove};
2016-06-20 13:35:59 +00:00
class AppServiceProvider extends ServiceProvider
{
2019-11-08 12:08:34 +00:00
use DispatchesJobs;
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
2016-06-29 04:04:02 +00:00
2016-06-20 13:35:59 +00:00
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
2019-11-09 02:52:04 +00:00
// Any photo saved, queue it to be moved.
Photo::saved(function($photo) {
if ($photo->scanned AND ! $photo->duplicate AND ! $photo->remove AND ($x=$photo->moveable()) === TRUE) {
Log::info(sprintf('%s: Need to Move [%s]',__METHOD__,$photo->id.'|'.serialize($x)));
$this->dispatch((new PhotoMove($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'));
}
});
2016-06-20 13:35:59 +00:00
}
2019-11-09 02:52:04 +00:00
}