EasemobJob.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\Jobs;
  3. use Illuminate\Bus\Queueable;
  4. use Illuminate\Contracts\Queue\ShouldQueue;
  5. use Illuminate\Foundation\Bus\Dispatchable;
  6. use Illuminate\Queue\InteractsWithQueue;
  7. use Illuminate\Queue\SerializesModels;
  8. use Illuminate\Support\Facades\DB;
  9. use App\Common\Library\Easemob;
  10. use Illuminate\Support\Facades\Log;
  11. class EasemobJob implements ShouldQueue
  12. {
  13. use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
  14. protected $msgid;
  15. /**
  16. * Create a new job instance.
  17. *
  18. * @return void
  19. */
  20. public function __construct($msgid)
  21. {
  22. //
  23. $this->msgid = $msgid;
  24. Log::info(date('Y-m-d H:i:d').':'.$msgid);
  25. }
  26. /**
  27. * Execute the job.
  28. *
  29. * @return void
  30. */
  31. public function handle()
  32. {
  33. //
  34. $info = DB::table('mt_message')->where('id',$this->msgid)->first();
  35. $easemob = new Easemob();
  36. $rs = $easemob->push_text($info->user_id,$info->title,$info->content);
  37. /*echo '<pre>';
  38. var_dump($rs);*/
  39. }
  40. }