Skip to content

Commit

Permalink
Refactor checkin alert
Browse files Browse the repository at this point in the history
Signed-off-by: snipe <snipe@snipe.net>
  • Loading branch information
snipe committed Apr 26, 2024
1 parent 103809b commit fe147ad
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions app/Console/Commands/SendExpectedCheckinAlerts.php
Expand Up @@ -42,26 +42,32 @@ public function __construct()
*/
public function handle()
{
$interval = $settings->audit_warning_days ?? 0;
$today = Carbon::now();
$interval_date = $today->copy()->addDays($interval);

$settings = Setting::getSettings();
$whenNotify = Carbon::now();
$assets = Asset::with('assignedTo')->whereNotNull('assigned_to')->whereNotNull('expected_checkin')->where('expected_checkin', '<=', $whenNotify)->get();
$assets = Asset::whereNull('deleted_at')->DueOrOverdueForCheckin($settings)->orderBy('assets.expected_checkin', 'desc')->get();

$this->info($assets->count().' assets must be checked in on or before '.$interval_date.' is deadline');

$this->info($whenNotify.' is deadline');
$this->info($assets->count().' assets');

foreach ($assets as $asset) {
if ($asset->assigned && $asset->checkedOutToUser()) {
Log::info('Sending ExpectedCheckinNotification to ' . $asset->assigned->email);
$asset->assigned->notify((new ExpectedCheckinNotification($asset)));
if ($asset->assignedTo && (isset($asset->assignedTo->email)) && ($asset->assignedTo->email!='') && $asset->checkedOutToUser()) {
$this->info('Sending User ExpectedCheckinNotification to: '.$asset->assignedTo->email);
$asset->assignedTo->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) {
$recipients = collect(explode(',', $settings->alert_email))->map(function ($item) {
return new AlertRecipient($item);
});

$this->info('Sending Admin ExpectedCheckinNotification to: '.$recipients);
\Notification::send($recipients, new ExpectedCheckinAdminNotification($assets));

}
}
}

0 comments on commit fe147ad

Please sign in to comment.