| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- <?php
 
- namespace App\Tasks;
 
- @error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
 
- use App\Module\Base;
 
- use App\Module\Chat;
 
- use App\Module\Umeng;
 
- use App\Module\Users;
 
- use Cache;
 
- use DB;
 
- use Hhxsv5\LaravelS\Swoole\Task\Task;
 
- class NotificationTask extends Task
 
- {
 
-     private $contentId;
 
-     /**
 
-      * NotificationTask constructor.
 
-      * @param int $contentId
 
-      */
 
-     public function __construct($contentId)
 
-     {
 
-         $this->contentId = intval($contentId);
 
-     }
 
-     public function handle()
 
-     {
 
-         $row = Base::DBC2A(DB::table('chat_msg')->where('id', $this->contentId)->first());
 
-         if (empty($row)) {
 
-             return;
 
-         }
 
-         if ($row['roger']) {
 
-             return;
 
-         }
 
-         //
 
-         $receive = $row['receive'];
 
-         $username = $row['username'];
 
-         $message = Base::string2array($row['message']);
 
-         $lists = Base::DBC2A(DB::table('umeng')->where('username', $receive)->get());
 
-         foreach ($lists AS $item) {
 
-             Umeng::notification($item['platform'], $item['token'], Users::nickname($username), Chat::messageDesc($message), [
 
-                 'notifyType' => 'userMsg',
 
-                 'contentId' => $this->contentId,
 
-                 'username' => $username,
 
-             ]);
 
-             Cache::forever("ws::immediatelyNotify-" . $receive, "yes");
 
-         }
 
-     }
 
- }
 
 
  |