微信代码调整

This commit is contained in:
Anyon 2020-12-12 14:20:41 +08:00
parent 2322341602
commit 0c340143ca
4 changed files with 14 additions and 12 deletions

View File

@ -72,7 +72,7 @@ class Fans extends Command
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
protected function _list(string $next = '', int $done = 0) protected function _list(string $next = '', int $done = 0): string
{ {
$appid = WechatService::instance()->getAppid(); $appid = WechatService::instance()->getAppid();
$this->output->comment('开始获取微信用户数据'); $this->output->comment('开始获取微信用户数据');
@ -112,7 +112,7 @@ class Fans extends Command
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
*/ */
public function _black(string $next = '', int $done = 0) public function _black(string $next = '', int $done = 0): string
{ {
$wechat = WechatService::WeChatUser(); $wechat = WechatService::WeChatUser();
$this->output->comment('开始更新黑名单的微信用户'); $this->output->comment('开始更新黑名单的微信用户');
@ -148,7 +148,7 @@ class Fans extends Command
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function _tags(int $done = 0) public function _tags(int $done = 0): string
{ {
$appid = WechatService::instance()->getAppid(); $appid = WechatService::instance()->getAppid();
$this->output->comment('开始获取微信用户标签数据'); $this->output->comment('开始获取微信用户标签数据');

View File

@ -79,7 +79,7 @@ class Js extends Controller
* 生成授权内容 * 生成授权内容
* @return string * @return string
*/ */
private function _buildContent() private function _buildContent(): string
{ {
return <<<EOF return <<<EOF
if(typeof wx === 'object'){ if(typeof wx === 'object'){

View File

@ -29,16 +29,16 @@ class MediaService extends Service
/** /**
* 通过图文ID读取图文信息 * 通过图文ID读取图文信息
* @param mixed $id 本地图文ID * @param mixed $id 本地图文ID
* @param array $where 额外的查询条件 * @param array $map 额外的查询条件
* @return array * @return array
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function news($id, $where = []): array public function news($id, $map = []): array
{ {
// 文章主体数据 // 文章主体数据
$data = $this->app->db->name('WechatNews')->where(['id' => $id])->where($where)->find(); $data = $this->app->db->name('WechatNews')->where(['id' => $id])->where($map)->find();
if (empty($data)) return []; if (empty($data)) return [];
[$data['articles'], $articleIds] = [[], explode(',', $data['article_id'])]; [$data['articles'], $articleIds] = [[], explode(',', $data['article_id'])];
if (empty($data['article_id']) || empty($articleIds)) return $data; if (empty($data['article_id']) || empty($articleIds)) return $data;

View File

@ -122,7 +122,9 @@ class WechatService extends Service
} catch (\Exception $exception) { } catch (\Exception $exception) {
$exception = null; $exception = null;
} }
if ($exception instanceof \Exception) throw $exception; if ($exception instanceof \Exception) {
throw $exception;
}
return $client; return $client;
} }
} }
@ -145,13 +147,13 @@ class WechatService extends Service
/** /**
* 获取当前微信APPID * 获取当前微信APPID
* @return bool|string * @return string
* @throws \think\Exception * @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function getAppid() public function getAppid(): string
{ {
if ($this->getType() === 'api') { if ($this->getType() === 'api') {
return sysconf('wechat.appid'); return sysconf('wechat.appid');
@ -187,8 +189,8 @@ class WechatService extends Service
public function getConfig(): array public function getConfig(): array
{ {
$options = [ $options = [
'token' => sysconf('wechat.token'),
'appid' => $this->getAppid(), 'appid' => $this->getAppid(),
'token' => sysconf('wechat.token'),
'appsecret' => sysconf('wechat.appsecret'), 'appsecret' => sysconf('wechat.appsecret'),
'encodingaeskey' => sysconf('wechat.encodingaeskey'), 'encodingaeskey' => sysconf('wechat.encodingaeskey'),
'mch_id' => sysconf('wechat.mch_id'), 'mch_id' => sysconf('wechat.mch_id'),
@ -268,7 +270,7 @@ class WechatService extends Service
} }
/** /**
* 获取微信网页JSSDK * 获取微信网页JSSDK签名参数
* @param null|string $location 签名地址 * @param null|string $location 签名地址
* @return array * @return array
* @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\InvalidResponseException