74 lines
3.2 KiB
PHP
74 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace app\expose\utils\wechat\modules;
|
|
|
|
use app\expose\enum\EventName;
|
|
use support\Redis;
|
|
use Webman\Event\Event as EventEvent;
|
|
|
|
trait Event
|
|
{
|
|
private function handleEvent($data)
|
|
{
|
|
switch ($data['Event']) {
|
|
// case 'subscribe':
|
|
// EventEvent::emit(EventName::WECHAT_OFFICIAL_ACCOUNT_SUBSCRLBE['value'],$data);
|
|
// return $this->replyText($data,'欢迎关注');
|
|
// case 'unsubscribe':
|
|
// EventEvent::emit(EventName::WECHAT_OFFICIAL_ACCOUNT_UNSUBSCRLBE['value'],$data);
|
|
// return $this->replyText($data,'路远,再会。');
|
|
case 'subscribe':
|
|
case 'unsubscribe':
|
|
case 'SCAN':
|
|
$scene = str_replace('qrscene_', '', $data['EventKey']);
|
|
$Scene = Redis::get($scene);
|
|
if ($Scene) {
|
|
$Scene = json_decode($Scene, true);
|
|
if (count($Scene) < 2) {
|
|
return $this->replyText($data, '二维码参数错误');
|
|
}
|
|
$class = $Scene[0];
|
|
$method = $Scene[1];
|
|
if (class_exists($class)) {
|
|
$class = new $class();
|
|
$class->FromUserName = $data['FromUserName'];
|
|
$class->ToUserName = $data['ToUserName'];
|
|
$class->MsgType = $data['MsgType'];
|
|
$class->Event = $data['Event'];
|
|
$class->EventKey = $scene;
|
|
$class->data = $data;
|
|
if (method_exists($class, $method)) {
|
|
$params = null;
|
|
if (isset($Scene[2])) {
|
|
$params = $Scene[2];
|
|
}
|
|
return $this->replyText($data, $class->$method($params));
|
|
}
|
|
}
|
|
return $this->replyText($data, '扫码成功,但未找到对应处理类或方法');
|
|
}
|
|
return $this->replyText($data, '二维码已过期');
|
|
case 'LOCATION':
|
|
return $this->replyText($data, '上报地理位置');
|
|
case 'CLICK':
|
|
return $this->replyText($data, '点击菜单');
|
|
case 'VIEW':
|
|
return $this->replyText($data, '点击菜单跳转链接');
|
|
case 'scancode_push':
|
|
return $this->replyText($data, '扫码推事件');
|
|
case 'scancode_waitmsg':
|
|
return $this->replyText($data, '扫码推事件且弹出“消息接收中”提示框');
|
|
case 'pic_sysphoto':
|
|
return $this->replyText($data, '弹出系统拍照发图');
|
|
case 'pic_photo_or_album':
|
|
return $this->replyText($data, '弹出拍照或者相册发图');
|
|
case 'pic_weixin':
|
|
return $this->replyText($data, '弹出微信相册发图器');
|
|
case 'location_select':
|
|
return $this->replyText($data, '弹出地理位置选择器');
|
|
case 'view_miniprogram':
|
|
return $this->replyText($data, '点击菜单跳转小程序');
|
|
}
|
|
}
|
|
}
|