diff --git a/app/wechat/controller/Config.php b/app/wechat/controller/Config.php index 02e31a337..e007fc97d 100644 --- a/app/wechat/controller/Config.php +++ b/app/wechat/controller/Config.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller; use app\wechat\service\WechatService; @@ -42,7 +44,7 @@ class Config extends Controller try { // 生成微信授权链接 $source = enbase64url(sysuri('admin/index/index', [], false, true) . '#' . $this->request->url()); - $authurl = sysconf('wechat.service_authurl|raw') ?: "https://open.cuci.cc/service/api.push/auth?source=SOURCE"; + $authurl = sysconf('wechat.service_authurl|raw') ?: "https://open.cuci.cc/plugin-wechat-service/api.push/auth?source=SOURCE"; $this->authurl = str_replace('source=SOURCE', "source={$source}", $authurl); // 授权成功后的参数保存 if (input('?appid') && input('?appkey')) { @@ -93,8 +95,8 @@ class Config extends Controller public function options_jsonrpc() { if ($this->request->isGet()) { - $authUrl = sysconf('wechat.service_authurl|raw') ?: "https://open.cuci.cc/service/api.push/auth?source=SOURCE"; - $jsonRpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/service/api.client/jsonrpc?token=TOKEN¬_init_session=1'; + $authUrl = sysconf('wechat.service_authurl|raw') ?: "https://open.cuci.cc/plugin-wechat-service/api.push/auth?source=SOURCE"; + $jsonRpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/plugin-wechat-service/api.client/jsonrpc?token=TOKEN'; Builder::mk() ->addTextInput('auth_url', '公众号授权跳转入口', 'Getway', true, '进行微信授权时会跳转到这个页面,由微信管理员扫二维码进行授权。', '^https?://.*?auth.*?source=SOURCE') ->addTextInput('json_rpc', '第三方服务平台接口', 'JsonRpc', true, '由应用插件 ThinkPlugsWechatService 提供的第三方服务平台 JSON-RPC 接口地址。', '^https?://.*?jsonrpc.*?token=TOKEN') diff --git a/app/wechat/controller/Fans.php b/app/wechat/controller/Fans.php index 67b708841..017c0844d 100644 --- a/app/wechat/controller/Fans.php +++ b/app/wechat/controller/Fans.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller; use app\wechat\model\WechatFans; diff --git a/app/wechat/controller/Keys.php b/app/wechat/controller/Keys.php index 92ef18cb9..8224396bf 100644 --- a/app/wechat/controller/Keys.php +++ b/app/wechat/controller/Keys.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller; use app\wechat\model\WechatKeys; diff --git a/app/wechat/controller/Menu.php b/app/wechat/controller/Menu.php index ff0a1f5b8..90494af1d 100644 --- a/app/wechat/controller/Menu.php +++ b/app/wechat/controller/Menu.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller; use app\wechat\service\WechatService; diff --git a/app/wechat/controller/News.php b/app/wechat/controller/News.php index 391943dfc..0c9774416 100644 --- a/app/wechat/controller/News.php +++ b/app/wechat/controller/News.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller; use app\wechat\model\WechatNews; diff --git a/app/wechat/controller/api/Js.php b/app/wechat/controller/api/Js.php index 7c629a27b..30c33be76 100644 --- a/app/wechat/controller/api/Js.php +++ b/app/wechat/controller/api/Js.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller\api; use app\wechat\service\WechatService; diff --git a/app/wechat/controller/api/Login.php b/app/wechat/controller/api/Login.php index 6b3c2797a..1098bc5a3 100644 --- a/app/wechat/controller/api/Login.php +++ b/app/wechat/controller/api/Login.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller\api; use app\wechat\service\LoginService; diff --git a/app/wechat/controller/api/Push.php b/app/wechat/controller/api/Push.php index 03fd5b532..3d23aebbe 100644 --- a/app/wechat/controller/api/Push.php +++ b/app/wechat/controller/api/Push.php @@ -13,6 +13,8 @@ // | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller\api; use app\wechat\service\FansService; diff --git a/app/wechat/controller/api/Test.php b/app/wechat/controller/api/Test.php index bcb453e64..405c1d386 100644 --- a/app/wechat/controller/api/Test.php +++ b/app/wechat/controller/api/Test.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller\api; use app\wechat\service\MediaService; diff --git a/app/wechat/controller/api/View.php b/app/wechat/controller/api/View.php index 347cda6e6..00557669e 100644 --- a/app/wechat/controller/api/View.php +++ b/app/wechat/controller/api/View.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\controller\api; use app\wechat\model\WechatNewsArticle; diff --git a/app/wechat/lang/en-us.php b/app/wechat/lang/en-us.php index 13d4c9f43..213f95acb 100644 --- a/app/wechat/lang/en-us.php +++ b/app/wechat/lang/en-us.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + $extra = []; $extra['请选择微信对接方式,其中微信开放平台授权模式需要微信开放平台支持,还需要搭建第三方服务平台托管系统!'] = 'Please select WeChat docking mode, of which WeChat Open platform authorization mode needs WeChat Open platform support, and a third-party service platform hosting system needs to be built!'; $extra['使用微信开放平台授权模式时,微信将授权给第三方服务平台托管系统,消息数据使用 %s 通信协议转发。'] = 'When using WeChat Open platform authorization mode, WeChat will authorize the third-party service platform hosting system, and the message data will be forwarded using %s communication protocol.'; diff --git a/app/wechat/model/WechatAuto.php b/app/wechat/model/WechatAuto.php index 122632a0d..50572afa7 100644 --- a/app/wechat/model/WechatAuto.php +++ b/app/wechat/model/WechatAuto.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatFans.php b/app/wechat/model/WechatFans.php index 6aa74272f..2015d9991 100644 --- a/app/wechat/model/WechatFans.php +++ b/app/wechat/model/WechatFans.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatFansTags.php b/app/wechat/model/WechatFansTags.php index d61604057..70f751ae6 100644 --- a/app/wechat/model/WechatFansTags.php +++ b/app/wechat/model/WechatFansTags.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatKeys.php b/app/wechat/model/WechatKeys.php index 23927543a..6e8076dbb 100644 --- a/app/wechat/model/WechatKeys.php +++ b/app/wechat/model/WechatKeys.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatMedia.php b/app/wechat/model/WechatMedia.php index 83f83968a..848c11d37 100644 --- a/app/wechat/model/WechatMedia.php +++ b/app/wechat/model/WechatMedia.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatNews.php b/app/wechat/model/WechatNews.php index 1370d9a27..1adf05aae 100644 --- a/app/wechat/model/WechatNews.php +++ b/app/wechat/model/WechatNews.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatNewsArticle.php b/app/wechat/model/WechatNewsArticle.php index 4b6db49ee..aae6343f0 100644 --- a/app/wechat/model/WechatNewsArticle.php +++ b/app/wechat/model/WechatNewsArticle.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/model/WechatPaymentRecord.php b/app/wechat/model/WechatPaymentRecord.php index 0e78f2576..f1cc2c2dc 100644 --- a/app/wechat/model/WechatPaymentRecord.php +++ b/app/wechat/model/WechatPaymentRecord.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use app\wechat\service\PaymentService; @@ -78,6 +80,10 @@ class WechatPaymentRecord extends Model return $value ? format_datetime($value) : ''; } + /** + * 转换数据类型 + * @return array + */ public function toArray(): array { $data = parent::toArray(); diff --git a/app/wechat/model/WechatPaymentRefund.php b/app/wechat/model/WechatPaymentRefund.php index 888e559a5..6d8f5c2b1 100644 --- a/app/wechat/model/WechatPaymentRefund.php +++ b/app/wechat/model/WechatPaymentRefund.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\model; use think\admin\Model; diff --git a/app/wechat/service/AutoService.php b/app/wechat/service/AutoService.php index 3d9181d8e..08a7f0381 100644 --- a/app/wechat/service/AutoService.php +++ b/app/wechat/service/AutoService.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\service; use app\wechat\model\WechatAuto; diff --git a/app/wechat/service/FansService.php b/app/wechat/service/FansService.php index ed041b615..fe3db83f6 100644 --- a/app/wechat/service/FansService.php +++ b/app/wechat/service/FansService.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\service; use app\wechat\model\WechatFans; diff --git a/app/wechat/service/LoginService.php b/app/wechat/service/LoginService.php index 8e76f576f..c990f4b77 100644 --- a/app/wechat/service/LoginService.php +++ b/app/wechat/service/LoginService.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\service; use think\admin\Library; diff --git a/app/wechat/service/MediaService.php b/app/wechat/service/MediaService.php index 07af890ae..4c9281fe0 100644 --- a/app/wechat/service/MediaService.php +++ b/app/wechat/service/MediaService.php @@ -14,6 +14,8 @@ // | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat // +---------------------------------------------------------------------- +declare (strict_types=1); + namespace app\wechat\service; use app\wechat\model\WechatMedia; diff --git a/app/wechat/service/WechatService.php b/app/wechat/service/WechatService.php index c1d961901..4cbd46941 100644 --- a/app/wechat/service/WechatService.php +++ b/app/wechat/service/WechatService.php @@ -129,7 +129,7 @@ class WechatService extends Service $data['sign'] = md5("{$data['class']}#{$appid}#{$appkey}#{$data['time']}#{$data['nostr']}"); // 创建远程连接,默认使用 JSON-RPC 方式调用接口 $token = enbase64url(json_encode($data, JSON_UNESCAPED_UNICODE)); - $jsonrpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/service/api.client/jsonrpc?not_init_session=1&token=TOKEN'; + $jsonrpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/plugin-wechat-service/api.client/jsonrpc?token=TOKEN'; return new JsonRpcClient(str_replace('token=TOKEN', "token={$token}", $jsonrpc)); } }