Added system polling
This commit is contained in:
52
app/Console/Commands/MailSend.php
Normal file
52
app/Console/Commands/MailSend.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
use App\Jobs\MailSend as Job;
|
||||
|
||||
class MailSend extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'mail:send'
|
||||
.' {--T|type=normal : Send crash, normal or both mail}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Trigger a poll to each node with mail queued';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
switch ($this->option('type')) {
|
||||
case 'crash':
|
||||
Log::info('CML:- Triggering polls to send CRASH mail');
|
||||
Job::dispatchSync(TRUE);
|
||||
break;
|
||||
|
||||
case 'normal':
|
||||
Log::info('CML:- Triggering polls to send NORMAL mail');
|
||||
Job::dispatchSync(FALSE);
|
||||
break;
|
||||
|
||||
case 'all':
|
||||
Log::info('CML:- Triggering polls to send ALL mail');
|
||||
Job::dispatchSync(NULL);
|
||||
break;
|
||||
|
||||
default:
|
||||
$this->error('Specify -T crash, normal or all');
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user