123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- namespace app\api\logic;
-
- use app\common\basics\Logic;
- use app\common\model\wechat\Wechat;
- use app\common\model\wechat\WechatReply;
- use app\common\server\WeChatServer;
- use EasyWeChat\Kernel\Exceptions\Exception;
- use EasyWeChat\Kernel\Messages\Text;
- use EasyWeChat\Factory;
-
- class WechatLogic extends Logic
- {
- public static function index($params)
- {
- // Token验证 将微信转过来的数据原样返回
- if(isset($params['echostr'])) {
- echo $params['echostr'];
- exit;
- }
-
- // 获取公众号配置
- $config = WechatServer::getOaConfig();
- $app = Factory::officialAccount($config);
-
- $app->server->push(function ($message) {
- switch ($message['MsgType']) { // 消息类型
- case WeChat::msg_type_event: // 回复事件
- switch ($message['Event']) {
- case WeChat::msg_event_subscribe: // 关注事件
- $reply_content = WechatReply::where(['reply_type' => WeChat::msg_event_subscribe, 'status' => 1, 'del' => 0])
- ->value('content');
- //关注回复空的话,找默认回复
- if (empty($reply_content)) {
- $reply_content = WechatReply::where(['reply_type' => WeChat::msg_type_default, 'status' => 1, 'del' => 0])
- ->value('content');
- }
- if ($reply_content) {
- $text = new Text($reply_content);
- return $text;
- }
- break;
- case WeChat::msg_event_click: // 点击事件
- $reply_content = self::getKeyWordContent($message['EventKey']);
- if ($reply_content) {
- $text = new Text($reply_content);
- return $text;
- }
- break;
- }
-
- case WeChat::msg_type_text://消息类型
- // 获取关键字内容
- $reply_content = self::getKeyWordContent($message['Content']);
- if (empty($reply_content)) {
- // 获取默认内容
- $reply_content = self::getDefaultReplyContent();
- }
-
- if ($reply_content) {
- $text = new Text($reply_content);
- return $text;
- }
- break;
- }
- });
- $response = $app->server->serve();
- $response->send();
- }
-
- /**
- * 获取微信配置
- * @param $url
- * @return array|string
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
- * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException
- * @throws \Psr\SimpleCache\InvalidArgumentException
- */
- public static function jsConfig($url)
- {
- $config = WeChatServer::getOaConfig();
- $app = Factory::officialAccount($config);
- $url = urldecode($url);
- $app->jssdk->setUrl($url);
- $apis = ['onMenuShareTimeline', 'onMenuShareAppMessage', 'onMenuShareQQ', 'onMenuShareWeibo', 'onMenuShareQZone', 'openLocation', 'getLocation', 'chooseWXPay', 'updateAppMessageShareData', 'updateTimelineShareData', 'openAddress'];
- try {
- $data = $app->jssdk->getConfigArray($apis, $debug = false, $beta = false);
- return data_success('', $data);
- } catch (Exception $e) {
- return data_error('公众号配置出错' . $e->getMessage());
- }
- }
-
-
- /**
- * @notes 获取关键词内容
- * @param $keyword
- * @return mixed|string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/8/3 17:51
- */
- public static function getKeyWordContent($keyword)
- {
- $reply_list = WechatReply::where(['reply_type' => WeChat::msg_type_text, 'status' => 1, 'del' => 0])
- ->order('sort asc')
- ->select();
- $reply_content = '';
- foreach ($reply_list as $reply) {
- switch ($reply['matching_type']) {
- case 1://全匹配
- $reply['keyword'] === $keyword && $reply_content = $reply['content'];
- break;
- case 2://模糊匹配
- stripos($reply['keyword'], $keyword) !== false && $reply_content = $reply['content'];
- break;
- }
- if($reply_content) {
- break; // 得到回复文本,中止循环
- }
- }
- return $reply_content;
- }
-
-
- /**
- * @notes 获取默认回复内容
- * @return mixed
- * @author 段誉
- * @date 2022/8/3 17:51
- */
- public static function getDefaultReplyContent()
- {
- return WechatReply::where(['reply_type' => WeChat::msg_type_default, 'status' => 1, 'del' => 0])
- ->value('content');
- }
-
- }
|