[更新]微信网页授权

This commit is contained in:
Anyon 2020-12-08 13:57:58 +08:00
parent 651074a92f
commit 2058bcadba
3 changed files with 14 additions and 14 deletions

View File

@ -34,7 +34,7 @@ class FansService extends Service
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function set(array $user, string $appid = '') public function set(array $user, string $appid = ''): bool
{ {
if (isset($user['subscribe_time'])) { if (isset($user['subscribe_time'])) {
$user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']); $user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
@ -44,20 +44,20 @@ class FansService extends Service
} }
if ($appid !== '') $user['appid'] = $appid; if ($appid !== '') $user['appid'] = $appid;
unset($user['privilege'], $user['groupid']); unset($user['privilege'], $user['groupid']);
return data_save('WechatFans', $user, 'openid'); return !!data_save('WechatFans', $user, 'openid');
} }
/** /**
* 获取粉丝信息 * 获取粉丝信息
* @param string $openid * @param string $openid
* @return array|null * @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 get(string $openid) public function get(string $openid): array
{ {
return $this->app->db->name('WechatFans')->where(['openid' => $openid])->find(); return $this->app->db->name('WechatFans')->where(['openid' => $openid])->find() ?: [];
} }
} }

View File

@ -28,14 +28,14 @@ class MediaService extends Service
{ {
/** /**
* 通过图文ID读取图文信息 * 通过图文ID读取图文信息
* @param integer $id 本地图文ID * @param mixed $id 本地图文ID
* @param array $where 额外的查询条件 * @param array $where 额外的查询条件
* @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 = []) public function news($id, $where = []): array
{ {
// 文章主体数据 // 文章主体数据
$data = $this->app->db->name('WechatNews')->where(['id' => $id])->where($where)->find(); $data = $this->app->db->name('WechatNews')->where(['id' => $id])->where($where)->find();
@ -61,7 +61,7 @@ class MediaService extends Service
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function upload(string $url, string $type = 'image', array $video = []) public function upload(string $url, string $type = 'image', array $video = []): string
{ {
$map = ['md5' => md5($url), 'appid' => WechatService::instance()->getAppid()]; $map = ['md5' => md5($url), 'appid' => WechatService::instance()->getAppid()];
if (($mediaId = $this->app->db->name('WechatMedia')->where($map)->value('media_id'))) return $mediaId; if (($mediaId = $this->app->db->name('WechatMedia')->where($map)->value('media_id'))) return $mediaId;
@ -76,10 +76,10 @@ class MediaService extends Service
/** /**
* 创建 CURL 文件对象 * 创建 CURL 文件对象
* @param string $local 文件路径或网络地址 * @param string $local 文件路径或网络地址
* @return string * @return MyCurlFile
* @throws \WeChat\Exceptions\LocalCacheException * @throws \WeChat\Exceptions\LocalCacheException
*/ */
private function _buildCurlFile(string $local) private function _buildCurlFile(string $local): MyCurlFile
{ {
if (file_exists($local)) { if (file_exists($local)) {
return new MyCurlFile($local); return new MyCurlFile($local);

View File

@ -132,7 +132,7 @@ class WechatService extends Service
* @param string $name * @param string $name
* @return array * @return array
*/ */
private static function paraseName(string $name) private static function paraseName(string $name): array
{ {
foreach (['WeChat', 'WeMini', 'WeOpen', 'WePay', 'ThinkService'] as $type) { foreach (['WeChat', 'WeMini', 'WeOpen', 'WePay', 'ThinkService'] as $type) {
if (strpos($name, $type) === 0) { if (strpos($name, $type) === 0) {
@ -168,7 +168,7 @@ class WechatService extends Service
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function getType() public function getType(): string
{ {
$type = strtolower(sysconf('wechat.type')); $type = strtolower(sysconf('wechat.type'));
if (in_array($type, ['api', 'thr'])) return $type; if (in_array($type, ['api', 'thr'])) return $type;
@ -184,7 +184,7 @@ class WechatService extends Service
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function getConfig() public function getConfig(): array
{ {
$options = [ $options = [
'token' => sysconf('wechat.token'), 'token' => sysconf('wechat.token'),
@ -278,7 +278,7 @@ class WechatService extends Service
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function getWebJssdkSign(?string $location = null) public function getWebJssdkSign(?string $location = null): array
{ {
$location = $location ?: $this->app->request->url(true); $location = $location ?: $this->app->request->url(true);
if ($this->getType() === 'api') { if ($this->getType() === 'api') {