From a1fed3738c38e986c608000baf3f7f72d1d2ea19 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Thu, 4 Jan 2024 18:59:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F=E8=A7=A6?= =?UTF-8?q?=E6=8E=A7socket=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/IndexController.php | 15 + app/view/index/view.html | 27 +- public/js/push.js | 746 +++++++++++++++++++++++++++++ 3 files changed, 786 insertions(+), 2 deletions(-) create mode 100644 public/js/push.js diff --git a/app/controller/IndexController.php b/app/controller/IndexController.php index ac23db5..8a06882 100644 --- a/app/controller/IndexController.php +++ b/app/controller/IndexController.php @@ -73,4 +73,19 @@ class IndexController } + public function dataviewTouchPush(Request $request){ + $parmas=$request->get(); + $api = new Api( + // webman下可以直接使用config获取配置,非webman环境需要手动写入相应配置 + 'http://127.0.0.1:3232', + config('plugin.webman.push.app.app_key'), + config('plugin.webman.push.app.app_secret') + ); + // 给订阅 user-2 的所有客户端推送 message 事件的消息 + $api->trigger('user-2', 'message', [ + 'from_uid' => 2, + 'content' => $parmas + ]); + return json(['code' => 0, 'msg' => 'ok', 'data'=>$parmas]); + } } diff --git a/app/view/index/view.html b/app/view/index/view.html index 67ebb26..90afcfd 100644 --- a/app/view/index/view.html +++ b/app/view/index/view.html @@ -6,9 +6,32 @@