Plantask.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. use App\Common\Library\Easemob;
  5. use Illuminate\Support\Facades\DB;
  6. use App\Jobs\EasemobJob;
  7. class Plantask extends Command
  8. {
  9. /**
  10. * The name and signature of the console command.
  11. *
  12. * @var string
  13. */
  14. protected $signature = 'command:Plantask';
  15. /**
  16. * The console command description.
  17. *
  18. * @var string
  19. */
  20. protected $description = 'Command description';
  21. /**
  22. * Create a new command instance.
  23. *
  24. * @return void
  25. */
  26. public function __construct()
  27. {
  28. parent::__construct();
  29. }
  30. /**
  31. * Execute the console command.
  32. *
  33. * @return int
  34. */
  35. public function handle()
  36. {
  37. $list = DB::table('mt_message')->where('dispatch_status',0)->orderBy('id','asc')->get()->toArray();
  38. //dd($list);
  39. //
  40. if(!empty($list)){
  41. foreach($list as $key => $val){
  42. $msg_id = $val->id;
  43. dispatch((new EasemobJob($msg_id))->delay(0));//加入队列
  44. }
  45. }
  46. //更新
  47. $ids = array_column($list,'id');
  48. $update = [
  49. 'dispatch_status' => 1,
  50. ];
  51. DB::table('mt_message')->whereIn('id',$ids)->update($update);
  52. return 0;
  53. }
  54. }