1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace App\Jobs;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Support\Facades\DB;
- use App\Common\Library\Easemob;
- use Illuminate\Support\Facades\Log;
- class EasemobJob implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- protected $msgid;
- /**
- * Create a new job instance.
- *
- * @return void
- */
- public function __construct($msgid)
- {
- //
- $this->msgid = $msgid;
- Log::info(date('Y-m-d H:i:d').':'.$msgid);
- }
- /**
- * Execute the job.
- *
- * @return void
- */
- public function handle()
- {
- //
- $info = DB::table('mt_message')->where('id',$this->msgid)->first();
- $easemob = new Easemob();
- $rs = $easemob->push_text($info->user_id,$info->title,$info->content);
- /*echo '<pre>';
- var_dump($rs);*/
- }
- }
|