2017-08-31 21:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
|
|
|
|
use App\Models\Asset;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use App\Notifications\ExpectedCheckinNotification;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
|
|
|
|
class SendExpectedCheckinAlerts extends Command
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command name.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $name = 'snipeit:expected-checkin';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Check for overdue or upcoming expected checkins.';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function fire()
|
|
|
|
{
|
|
|
|
|
|
|
|
$whenNotify = Carbon::now()->addDays(7);
|
2017-09-05 17:54:58 -07:00
|
|
|
$assets = Asset::with('assignedTo')->whereNotNull('expected_checkin')->where('expected_checkin', '<=', $whenNotify)->get();
|
2017-08-31 21:18:05 -07:00
|
|
|
|
|
|
|
$this->info($whenNotify.' is deadline');
|
|
|
|
$this->info($assets->count().' assets');
|
|
|
|
|
|
|
|
foreach ($assets as $asset) {
|
2017-09-05 17:54:58 -07:00
|
|
|
if ($asset->assignedTo && $asset->checkoutOutToUser()) {
|
|
|
|
$asset->assignedTo->notify((new ExpectedCheckinNotification($asset)));
|
2017-08-31 21:18:05 -07:00
|
|
|
//$this->info($asset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|