diff --git a/application/service/controller/Index.php b/application/service/controller/Index.php
index fb689fc39..6fd240089 100644
--- a/application/service/controller/Index.php
+++ b/application/service/controller/Index.php
@@ -79,9 +79,12 @@ class Index extends Controller
$where = ['authorizer_appid' => $appid, 'is_deleted' => '0', 'status' => '1'];
$author = Db::name('WechatServiceConfig')->where($where)->find();
empty($author) && $this->error('无效的授权信息,请同步其它公众号!');
- $info = Build::filter(Wechat::service()->getAuthorizerInfo($appid));
- $info['authorizer_appid'] = $appid;
- if (data_save('WechatServiceConfig', $info, 'authorizer_appid')) {
+ $data = Build::filter(Wechat::service()->getAuthorizerInfo($appid));
+ $data['authorizer_appid'] = $appid;
+ $where = ['authorizer_appid' => $data['authorizer_appid']];
+ $appkey = Db::name('WechatServiceConfig')->where($where)->value('appkey');
+ if (empty($appkey)) $data['appkey'] = md5(uniqid('', true));
+ if (data_save('WechatServiceConfig', $data, 'authorizer_appid')) {
$this->success('更新公众号授权信息成功!', '');
}
} catch (\think\exception\HttpResponseException $exception) {
@@ -105,6 +108,9 @@ class Index extends Controller
$data['authorizer_appid'] = $item['authorizer_appid'];
$data['authorizer_refresh_token'] = $item['refresh_token'];
$data['create_at'] = date('Y-m-d H:i:s', $item['auth_time']);
+ $where = ['authorizer_appid' => $data['authorizer_appid']];
+ $appkey = Db::name('WechatServiceConfig')->where($where)->value('appkey');
+ if (empty($appkey)) $data['appkey'] = md5(uniqid('', true));
if (!data_save('WechatServiceConfig', $data, 'authorizer_appid')) {
$this->error('获取授权信息失败,请稍候再试!', '');
}
diff --git a/application/wechat/view/config/payment.html b/application/wechat/view/config/payment.html
index cff63e314..3e978668a 100644
--- a/application/wechat/view/config/payment.html
+++ b/application/wechat/view/config/payment.html
@@ -9,7 +9,7 @@
diff --git a/vendor/autoload.php b/vendor/autoload.php
index b04511ef7..c8c4cb9fe 100644
--- a/vendor/autoload.php
+++ b/vendor/autoload.php
@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php';
-return ComposerAutoloaderInitdfa1d29ab4d9811dd97c96c297f778d6::getLoader();
+return ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239::getLoader();
diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php
index 67a3d1f38..ca968c24a 100644
--- a/vendor/composer/autoload_real.php
+++ b/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
-class ComposerAutoloaderInitdfa1d29ab4d9811dd97c96c297f778d6
+class ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239
{
private static $loader;
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitdfa1d29ab4d9811dd97c96c297f778d6
return self::$loader;
}
- spl_autoload_register(array('ComposerAutoloaderInitdfa1d29ab4d9811dd97c96c297f778d6', 'loadClassLoader'), true, true);
+ spl_autoload_register(array('ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
- spl_autoload_unregister(array('ComposerAutoloaderInitdfa1d29ab4d9811dd97c96c297f778d6', 'loadClassLoader'));
+ spl_autoload_unregister(array('ComposerAutoloaderInit369934dfb865b90eedef5b9c19990239', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
- call_user_func(\Composer\Autoload\ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6::getInitializer($loader));
+ call_user_func(\Composer\Autoload\ComposerStaticInit369934dfb865b90eedef5b9c19990239::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInitdfa1d29ab4d9811dd97c96c297f778d6
$loader->register(true);
if ($useStaticLoader) {
- $includeFiles = Composer\Autoload\ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6::$files;
+ $includeFiles = Composer\Autoload\ComposerStaticInit369934dfb865b90eedef5b9c19990239::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
- composerRequiredfa1d29ab4d9811dd97c96c297f778d6($fileIdentifier, $file);
+ composerRequire369934dfb865b90eedef5b9c19990239($fileIdentifier, $file);
}
return $loader;
}
}
-function composerRequiredfa1d29ab4d9811dd97c96c297f778d6($fileIdentifier, $file)
+function composerRequire369934dfb865b90eedef5b9c19990239($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;
diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
index 8800f9ec9..ad9a4168c 100644
--- a/vendor/composer/autoload_static.php
+++ b/vendor/composer/autoload_static.php
@@ -4,7 +4,7 @@
namespace Composer\Autoload;
-class ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6
+class ComposerStaticInit369934dfb865b90eedef5b9c19990239
{
public static $files = array (
'841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php',
@@ -345,9 +345,9 @@ class ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
- $loader->prefixLengthsPsr4 = ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6::$prefixLengthsPsr4;
- $loader->prefixDirsPsr4 = ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6::$prefixDirsPsr4;
- $loader->classMap = ComposerStaticInitdfa1d29ab4d9811dd97c96c297f778d6::$classMap;
+ $loader->prefixLengthsPsr4 = ComposerStaticInit369934dfb865b90eedef5b9c19990239::$prefixLengthsPsr4;
+ $loader->prefixDirsPsr4 = ComposerStaticInit369934dfb865b90eedef5b9c19990239::$prefixDirsPsr4;
+ $loader->classMap = ComposerStaticInit369934dfb865b90eedef5b9c19990239::$classMap;
}, null, ClassLoader::class);
}
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 25712428d..3ffebdd66 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -499,12 +499,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
- "reference": "52e88c23ee806257ca2e9d577b00dc03beb45a9f"
+ "reference": "0a52cf6cca88079e164ca101a2667d5539ee96b5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/52e88c23ee806257ca2e9d577b00dc03beb45a9f",
- "reference": "52e88c23ee806257ca2e9d577b00dc03beb45a9f",
+ "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/0a52cf6cca88079e164ca101a2667d5539ee96b5",
+ "reference": "0a52cf6cca88079e164ca101a2667d5539ee96b5",
"shasum": "",
"mirrors": [
{
@@ -523,7 +523,7 @@
"qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*"
},
- "time": "2019-04-18T05:12:51+00:00",
+ "time": "2019-04-18T15:29:48+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
diff --git a/vendor/zoujingli/think-library/common.php b/vendor/zoujingli/think-library/common.php
index 434c22d37..f4a3460f0 100644
--- a/vendor/zoujingli/think-library/common.php
+++ b/vendor/zoujingli/think-library/common.php
@@ -77,7 +77,7 @@ if (!function_exists('sysconf')) {
$data = \think\facade\Cache::tag('system')->get('_sysconf_', []);
if (empty($data)) {
$data = \think\Db::name('SystemConfig')->column('name,value');
- \think\facade\Cache::tag('system')->set('_sysconf_', $data, 3600);
+ \think\facade\Cache::tag('system')->set('_sysconf_', $data, 60);
}
}
return isset($data[$field]) ? (strtolower($raw) === 'raw' ? $data[$field] : htmlspecialchars($data[$field])) : '';
@@ -215,7 +215,7 @@ if (!function_exists('emoji_clear')) {
header('Access-Control-Expose-Headers:User-Token-Csrf');
header('Access-Control-Allow-Headers:Content-Type,X-Requested-With');
}
- return $request->isOptions() ? \think\facade\Response::create() : $next($request);
+ return $request->isOptions() ? response() : $next($request);
});
// 注册系统常用指令
diff --git a/vendor/zoujingli/think-library/src/command/Sess.php b/vendor/zoujingli/think-library/src/command/Sess.php
index 6a8fb490b..7d1c4733c 100644
--- a/vendor/zoujingli/think-library/src/command/Sess.php
+++ b/vendor/zoujingli/think-library/src/command/Sess.php
@@ -17,8 +17,8 @@ namespace library\command;
use think\console\Command;
/**
- * 清理无效的会话文件
- * Class Session
+ * 清理会话文件
+ * Class Sess
* @package library\command
*/
class Sess extends Command
diff --git a/vendor/zoujingli/think-library/src/command/Sync.php b/vendor/zoujingli/think-library/src/command/Sync.php
index bc9d3dda1..c822368d6 100644
--- a/vendor/zoujingli/think-library/src/command/Sync.php
+++ b/vendor/zoujingli/think-library/src/command/Sync.php
@@ -20,8 +20,8 @@ use think\console\Output;
/**
* 文件比对支持
- * Class update
- * @package app\admin\logic
+ * Class Sync
+ * @package library\command
*/
class Sync extends Command
{
diff --git a/vendor/zoujingli/think-library/src/command/sync/Admin.php b/vendor/zoujingli/think-library/src/command/sync/Admin.php
index 3ef555f3e..819819f0a 100644
--- a/vendor/zoujingli/think-library/src/command/sync/Admin.php
+++ b/vendor/zoujingli/think-library/src/command/sync/Admin.php
@@ -17,9 +17,8 @@ namespace library\command\sync;
use library\command\Sync;
/**
- * 系统模块更新指令
- * Class UpdateAdmin
- * @package app\admin\logic\update
+ * Class Admin
+ * @package library\command\sync
*/
class Admin extends Sync
{
diff --git a/vendor/zoujingli/think-library/src/command/sync/Config.php b/vendor/zoujingli/think-library/src/command/sync/Config.php
index 4036a3cb5..8aa0a015b 100644
--- a/vendor/zoujingli/think-library/src/command/sync/Config.php
+++ b/vendor/zoujingli/think-library/src/command/sync/Config.php
@@ -17,9 +17,8 @@ namespace library\command\sync;
use library\command\Sync;
/**
- * 更新系统配置指令
- * Class UpdateConfig
- * @package library\command\update
+ * Class Config
+ * @package library\command\sync
*/
class Config extends Sync
{
diff --git a/vendor/zoujingli/think-library/src/command/sync/Plugs.php b/vendor/zoujingli/think-library/src/command/sync/Plugs.php
index a47878462..ca8f6663b 100644
--- a/vendor/zoujingli/think-library/src/command/sync/Plugs.php
+++ b/vendor/zoujingli/think-library/src/command/sync/Plugs.php
@@ -17,9 +17,8 @@ namespace library\command\sync;
use library\command\Sync;
/**
- * 更新插件指令
- * Class UpdatePlugs
- * @package app\admin\logic\update
+ * Class Plugs
+ * @package library\command\sync
*/
class Plugs extends Sync
{
diff --git a/vendor/zoujingli/think-library/src/command/sync/Service.php b/vendor/zoujingli/think-library/src/command/sync/Service.php
index 907e982f7..527e0311b 100644
--- a/vendor/zoujingli/think-library/src/command/sync/Service.php
+++ b/vendor/zoujingli/think-library/src/command/sync/Service.php
@@ -17,8 +17,8 @@ namespace library\command\sync;
use library\command\Sync;
/**
- * Class UpdateService
- * @package app\admin\logic\update
+ * Class Service
+ * @package library\command\sync
*/
class Service extends Sync
{
diff --git a/vendor/zoujingli/think-library/src/command/sync/Wechat.php b/vendor/zoujingli/think-library/src/command/sync/Wechat.php
index fb47c9322..1153ad741 100644
--- a/vendor/zoujingli/think-library/src/command/sync/Wechat.php
+++ b/vendor/zoujingli/think-library/src/command/sync/Wechat.php
@@ -17,9 +17,8 @@ namespace library\command\sync;
use library\command\Sync;
/**
- * 更新微信模块指令
- * Class UpdateWechat
- * @package app\admin\logic\update
+ * Class Wechat
+ * @package library\command\sync
*/
class Wechat extends Sync
{
diff --git a/vendor/zoujingli/think-library/src/command/task/Reset.php b/vendor/zoujingli/think-library/src/command/task/Reset.php
index 0a859ab6a..7da0ceb24 100644
--- a/vendor/zoujingli/think-library/src/command/task/Reset.php
+++ b/vendor/zoujingli/think-library/src/command/task/Reset.php
@@ -17,8 +17,7 @@ namespace library\command\task;
use library\command\Task;
/**
- * 守护进程重启
- * Class TaskRestart
+ * Class Reset
* @package library\command\task
*/
class Reset extends Task
@@ -28,7 +27,7 @@ class Reset extends Task
{
$this->setName('xtask:reset')->setDescription('reset message queue daemon');
}
-
+
protected function execute(\think\console\Input $input, \think\console\Output $output)
{
if (($pid = $this->checkProcess()) > 0) {
diff --git a/vendor/zoujingli/think-library/src/command/task/Start.php b/vendor/zoujingli/think-library/src/command/task/Start.php
index 65a19e337..364b2e788 100644
--- a/vendor/zoujingli/think-library/src/command/task/Start.php
+++ b/vendor/zoujingli/think-library/src/command/task/Start.php
@@ -17,7 +17,7 @@ namespace library\command\task;
use library\command\Task;
/**
- * Class TaskStart
+ * Class Start
* @package library\command\task
*/
class Start extends Task
@@ -27,7 +27,7 @@ class Start extends Task
{
$this->setName('xtask:start')->setDescription('start message queue daemon');
}
-
+
protected function execute(\think\console\Input $input, \think\console\Output $output)
{
if (($pid = $this->checkProcess()) > 0) {
diff --git a/vendor/zoujingli/think-library/src/command/task/State.php b/vendor/zoujingli/think-library/src/command/task/State.php
index de1703f30..f9c9f189f 100644
--- a/vendor/zoujingli/think-library/src/command/task/State.php
+++ b/vendor/zoujingli/think-library/src/command/task/State.php
@@ -17,7 +17,7 @@ namespace library\command\task;
use library\command\Task;
/**
- * Class TaskState
+ * Class State
* @package library\command\task
*/
class State extends Task
@@ -27,7 +27,7 @@ class State extends Task
{
$this->setName('xtask:state')->setDescription('view message queue daemon');
}
-
+
protected function execute(\think\console\Input $input, \think\console\Output $output)
{
if (($pid = $this->checkProcess()) > 0) {
diff --git a/vendor/zoujingli/think-library/src/command/task/Stop.php b/vendor/zoujingli/think-library/src/command/task/Stop.php
index f5c29f74f..e838fe643 100644
--- a/vendor/zoujingli/think-library/src/command/task/Stop.php
+++ b/vendor/zoujingli/think-library/src/command/task/Stop.php
@@ -17,7 +17,7 @@ namespace library\command\task;
use library\command\Task;
/**
- * Class TaskStop
+ * Class Stop
* @package library\command\task
*/
class Stop extends Task