| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace App\Console\Commands;
- use App\Http\Api\Mq;
- use App\Tools\Tools;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\Log;
- class MqWbwAnalyses extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'mq:wbw.analyses';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return int
- */
- public function handle()
- {
- if (Tools::isStop()) {
- return 0;
- }
- $exchange = 'router';
- $queue = 'wbw-analyses';
- $this->info(" [*] Waiting for {$queue}. To exit press CTRL+C");
- Log::debug('mq:wbw.analyses start.');
- Mq::worker($exchange, $queue, function ($message) {
- $data = ['id' => implode(',', $message)];
- $ok = $this->call('upgrade:wbw.analyses', $data);
- if ($ok === 0) {
- $this->info('Received count='.count($message).' ok='.$ok);
- Log::debug('mq:wbw.analyses done count='.count($message));
- } else {
- Log::error('mq:wbw.analyses', $data);
- }
- return $ok;
- });
- return 0;
- }
- }
|