photo/app/Providers/AppServiceProvider.php

42 lines
824 B
PHP
Raw Normal View History

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