snipe-it/app/Console/Commands/SendExpirationAlerts.php

76 lines
2.4 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
namespace App\Console\Commands;
2016-06-22 12:27:41 -07:00
2016-03-25 01:18:05 -07:00
use App\Models\Asset;
use App\Models\License;
use App\Models\Recipients\AlertRecipient;
2016-03-25 01:18:05 -07:00
use App\Models\Setting;
use App\Notifications\ExpiringAssetsNotification;
use App\Notifications\ExpiringLicenseNotification;
2016-03-25 01:18:05 -07:00
use Illuminate\Console\Command;
2016-06-22 12:27:41 -07:00
class SendExpirationAlerts extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'snipeit:expiring-alerts';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Check for expiring warrantees and service agreements, and sends out an alert email.';
/**
* Create a new command instance.
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
2016-06-22 12:27:41 -07:00
{
$settings = Setting::getSettings();
$threshold = $settings->alert_interval;
2016-06-22 12:27:41 -07:00
if (($settings->alert_email != '') && ($settings->alerts_enabled == 1)) {
2016-06-22 12:27:41 -07:00
// Send a rollup to the admin, if settings dictate
$recipients = collect(explode(',', $settings->alert_email))->map(function ($item, $key) {
return new AlertRecipient($item);
});
2016-03-25 01:18:05 -07:00
// Expiring Assets
$assets = Asset::getExpiringWarrantee($threshold);
if ($assets->count() > 0) {
$this->info(trans_choice('mail.assets_warrantee_alert', $assets->count(), ['count' => $assets->count(), 'threshold' => $threshold]));
\Notification::send($recipients, new ExpiringAssetsNotification($assets, $threshold));
2016-06-22 12:27:41 -07:00
}
2016-03-25 01:18:05 -07:00
// Expiring licenses
$licenses = License::getExpiringLicenses($threshold);
if ($licenses->count() > 0) {
$this->info(trans_choice('mail.license_expiring_alert', $licenses->count(), ['count' => $licenses->count(), 'threshold' => $threshold]));
\Notification::send($recipients, new ExpiringLicenseNotification($licenses, $threshold));
2016-06-22 12:27:41 -07:00
}
} else {
if ($settings->alert_email == '') {
$this->error('Could not send email. No alert email configured in settings');
} elseif (1 != $settings->alerts_enabled) {
$this->info('Alerts are disabled in the settings. No mail will be sent');
2016-06-22 12:27:41 -07:00
}
}
}
2016-03-25 01:18:05 -07:00
}