mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
16e56646b8
* Fixed #5965: Allow multiple alert email addresses * Style changes based on PR feedback.
65 lines
1.8 KiB
PHP
65 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Asset;
|
|
use App\Models\Setting;
|
|
use App\Notifications\ExpectedCheckinAdminNotification;
|
|
use App\Notifications\ExpectedCheckinNotification;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Console\Command;
|
|
|
|
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.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$settings = Setting::getSettings();
|
|
$whenNotify = Carbon::now()->addDays(7);
|
|
$assets = Asset::with('assignedTo')->whereNotNull('assigned_to')->whereNotNull('expected_checkin')->where('expected_checkin', '<=', $whenNotify)->get();
|
|
|
|
$this->info($whenNotify . ' is deadline');
|
|
$this->info($assets->count() . ' assets');
|
|
|
|
foreach ($assets as $asset) {
|
|
if ($asset->assigned && $asset->checkedOutToUser()) {
|
|
$asset->assigned->notify((new ExpectedCheckinNotification($asset)));
|
|
}
|
|
}
|
|
|
|
if (($assets) && ($assets->count() > 0) && ($settings->alert_email != '')) {
|
|
// Send a rollup to the admin, if settings dictate
|
|
$recipients = collect(explode(',', $settings->alert_email))->map(function ($item, $key) {
|
|
return new AlertRecipient($item);
|
|
});
|
|
Notification::send($recipients, new ExpectedCheckinAdminNotification($assets));
|
|
}
|
|
}
|
|
}
|