first commit

This commit is contained in:
云泽网
2025-07-27 21:42:34 +08:00
commit c1cce5ccb4
2779 changed files with 340042 additions and 0 deletions
@@ -0,0 +1,150 @@
<?php
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载:https://gitee.com/likeshop_gitee
// | github下载:https://github.com/likeshop-github
// | 访问官网:https://www.likeshop.cn
// | 访问社区:https://home.likeshop.cn
// | 访问手册:http://doc.likeshop.cn
// | 微信公众号:likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
namespace app\api\logic;
use app\common\model\WeChat;
use app\common\server\WeChatServer;
use EasyWeChat\Kernel\Exceptions\Exception;
use EasyWeChat\Kernel\Messages\Text;
use EasyWeChat\Factory;
use think\Db;
class WeChatLogic
{
/**
* 获取微信配置
* @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',
'scanQRCode'
];
try {
$data = $app->jssdk->getConfigArray($apis, $debug = false, $beta = false);
return data_success('', $data);
} catch (Exception $e) {
return data_error('公众号配置出错' . $e->getMessage());
}
}
public static function index($params)
{
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 = Db::name('wechat_reply')
->where(['reply_type' => WeChat::msg_event_subscribe, 'status' => 1, 'del' => 0])
->value('content');
//关注回复空的话,找默认回复
if (empty($reply_content)) {
$reply_content = Db::name('wechat_reply')
->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 = Db::name('wechat_reply')->where([
'reply_type' => WeChat::msg_type_text,
'status' => 1,
'del' => 0,
'keyword' => $message['EventKey']
])->value('content');
if (!empty($reply_content)) {
$text = new Text($reply_content);
return $text;
}
break;
}
case WeChat::msg_type_text://消息类型
$reply_list = Db::name('wechat_reply')
->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'] === $message['Content'] && $reply_content = $reply['content'];
break;
case 2://模糊匹配
stripos($reply['keyword'], $message['Content']) !== false && $reply_content = $reply['content'];
break;
}
}
//消息回复为空的话,找默认回复
if (empty($reply_content)) {
$reply_content = Db::name('wechat_reply')
->where(['reply_type' => WeChat::msg_type_default, 'status' => 1, 'del' => 0])
->value('content');
}
if ($reply_content) {
$text = new Text($reply_content);
return $text;
}
break;
}
});
$response = $app->server->serve();
$response->send();
}
}