mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
fix: 同步更新常用插件代码
This commit is contained in:
parent
ff08376d9a
commit
327cffbe64
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller;
|
namespace app\wechat\controller;
|
||||||
|
|
||||||
use app\wechat\service\WechatService;
|
use app\wechat\service\WechatService;
|
||||||
@ -42,7 +44,7 @@ class Config extends Controller
|
|||||||
try {
|
try {
|
||||||
// 生成微信授权链接
|
// 生成微信授权链接
|
||||||
$source = enbase64url(sysuri('admin/index/index', [], false, true) . '#' . $this->request->url());
|
$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);
|
$this->authurl = str_replace('source=SOURCE', "source={$source}", $authurl);
|
||||||
// 授权成功后的参数保存
|
// 授权成功后的参数保存
|
||||||
if (input('?appid') && input('?appkey')) {
|
if (input('?appid') && input('?appkey')) {
|
||||||
@ -93,8 +95,8 @@ class Config extends Controller
|
|||||||
public function options_jsonrpc()
|
public function options_jsonrpc()
|
||||||
{
|
{
|
||||||
if ($this->request->isGet()) {
|
if ($this->request->isGet()) {
|
||||||
$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";
|
||||||
$jsonRpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/service/api.client/jsonrpc?token=TOKEN¬_init_session=1';
|
$jsonRpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/plugin-wechat-service/api.client/jsonrpc?token=TOKEN';
|
||||||
Builder::mk()
|
Builder::mk()
|
||||||
->addTextInput('auth_url', '公众号授权跳转入口', 'Getway', true, '进行微信授权时会跳转到这个页面,由微信管理员扫二维码进行授权。', '^https?://.*?auth.*?source=SOURCE')
|
->addTextInput('auth_url', '公众号授权跳转入口', 'Getway', true, '进行微信授权时会跳转到这个页面,由微信管理员扫二维码进行授权。', '^https?://.*?auth.*?source=SOURCE')
|
||||||
->addTextInput('json_rpc', '第三方服务平台接口', 'JsonRpc', true, '由应用插件 <a target="_blank" href="https://thinkadmin.top/plugin/think-plugs-wechat-service.html">ThinkPlugsWechatService</a> 提供的第三方服务平台 JSON-RPC 接口地址。', '^https?://.*?jsonrpc.*?token=TOKEN')
|
->addTextInput('json_rpc', '第三方服务平台接口', 'JsonRpc', true, '由应用插件 <a target="_blank" href="https://thinkadmin.top/plugin/think-plugs-wechat-service.html">ThinkPlugsWechatService</a> 提供的第三方服务平台 JSON-RPC 接口地址。', '^https?://.*?jsonrpc.*?token=TOKEN')
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller;
|
namespace app\wechat\controller;
|
||||||
|
|
||||||
use app\wechat\model\WechatFans;
|
use app\wechat\model\WechatFans;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller;
|
namespace app\wechat\controller;
|
||||||
|
|
||||||
use app\wechat\model\WechatKeys;
|
use app\wechat\model\WechatKeys;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller;
|
namespace app\wechat\controller;
|
||||||
|
|
||||||
use app\wechat\service\WechatService;
|
use app\wechat\service\WechatService;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller;
|
namespace app\wechat\controller;
|
||||||
|
|
||||||
use app\wechat\model\WechatNews;
|
use app\wechat\model\WechatNews;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller\api;
|
namespace app\wechat\controller\api;
|
||||||
|
|
||||||
use app\wechat\service\WechatService;
|
use app\wechat\service\WechatService;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller\api;
|
namespace app\wechat\controller\api;
|
||||||
|
|
||||||
use app\wechat\service\LoginService;
|
use app\wechat\service\LoginService;
|
||||||
|
@ -13,6 +13,8 @@
|
|||||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat
|
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller\api;
|
namespace app\wechat\controller\api;
|
||||||
|
|
||||||
use app\wechat\service\FansService;
|
use app\wechat\service\FansService;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller\api;
|
namespace app\wechat\controller\api;
|
||||||
|
|
||||||
use app\wechat\service\MediaService;
|
use app\wechat\service\MediaService;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\controller\api;
|
namespace app\wechat\controller\api;
|
||||||
|
|
||||||
use app\wechat\model\WechatNewsArticle;
|
use app\wechat\model\WechatNewsArticle;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
$extra = [];
|
$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['请选择微信对接方式,其中微信开放平台授权模式需要微信开放平台支持,还需要搭建第三方服务平台托管系统!'] = '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.';
|
$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.';
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use app\wechat\service\PaymentService;
|
use app\wechat\service\PaymentService;
|
||||||
@ -78,6 +80,10 @@ class WechatPaymentRecord extends Model
|
|||||||
return $value ? format_datetime($value) : '';
|
return $value ? format_datetime($value) : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转换数据类型
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
public function toArray(): array
|
public function toArray(): array
|
||||||
{
|
{
|
||||||
$data = parent::toArray();
|
$data = parent::toArray();
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\model;
|
namespace app\wechat\model;
|
||||||
|
|
||||||
use think\admin\Model;
|
use think\admin\Model;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\service;
|
namespace app\wechat\service;
|
||||||
|
|
||||||
use app\wechat\model\WechatAuto;
|
use app\wechat\model\WechatAuto;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\service;
|
namespace app\wechat\service;
|
||||||
|
|
||||||
use app\wechat\model\WechatFans;
|
use app\wechat\model\WechatFans;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\service;
|
namespace app\wechat\service;
|
||||||
|
|
||||||
use think\admin\Library;
|
use think\admin\Library;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
|
declare (strict_types=1);
|
||||||
|
|
||||||
namespace app\wechat\service;
|
namespace app\wechat\service;
|
||||||
|
|
||||||
use app\wechat\model\WechatMedia;
|
use app\wechat\model\WechatMedia;
|
||||||
|
@ -129,7 +129,7 @@ class WechatService extends Service
|
|||||||
$data['sign'] = md5("{$data['class']}#{$appid}#{$appkey}#{$data['time']}#{$data['nostr']}");
|
$data['sign'] = md5("{$data['class']}#{$appid}#{$appkey}#{$data['time']}#{$data['nostr']}");
|
||||||
// 创建远程连接,默认使用 JSON-RPC 方式调用接口
|
// 创建远程连接,默认使用 JSON-RPC 方式调用接口
|
||||||
$token = enbase64url(json_encode($data, JSON_UNESCAPED_UNICODE));
|
$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));
|
return new JsonRpcClient(str_replace('token=TOKEN', "token={$token}", $jsonrpc));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user