mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]微信网页授权
This commit is contained in:
parent
651074a92f
commit
2058bcadba
@ -34,7 +34,7 @@ class FansService extends Service
|
||||
* @throws \think\db\exception\DbException
|
||||
* @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'])) {
|
||||
$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;
|
||||
unset($user['privilege'], $user['groupid']);
|
||||
return data_save('WechatFans', $user, 'openid');
|
||||
return !!data_save('WechatFans', $user, 'openid');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取粉丝信息
|
||||
* @param string $openid
|
||||
* @return array|null
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @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() ?: [];
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -28,14 +28,14 @@ class MediaService extends Service
|
||||
{
|
||||
/**
|
||||
* 通过图文ID读取图文信息
|
||||
* @param integer $id 本地图文ID
|
||||
* @param mixed $id 本地图文ID
|
||||
* @param array $where 额外的查询条件
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @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();
|
||||
@ -61,7 +61,7 @@ class MediaService extends Service
|
||||
* @throws \think\db\exception\DbException
|
||||
* @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()];
|
||||
if (($mediaId = $this->app->db->name('WechatMedia')->where($map)->value('media_id'))) return $mediaId;
|
||||
@ -76,10 +76,10 @@ class MediaService extends Service
|
||||
/**
|
||||
* 创建 CURL 文件对象
|
||||
* @param string $local 文件路径或网络地址
|
||||
* @return string
|
||||
* @return MyCurlFile
|
||||
* @throws \WeChat\Exceptions\LocalCacheException
|
||||
*/
|
||||
private function _buildCurlFile(string $local)
|
||||
private function _buildCurlFile(string $local): MyCurlFile
|
||||
{
|
||||
if (file_exists($local)) {
|
||||
return new MyCurlFile($local);
|
||||
|
@ -132,7 +132,7 @@ class WechatService extends Service
|
||||
* @param string $name
|
||||
* @return array
|
||||
*/
|
||||
private static function paraseName(string $name)
|
||||
private static function paraseName(string $name): array
|
||||
{
|
||||
foreach (['WeChat', 'WeMini', 'WeOpen', 'WePay', 'ThinkService'] as $type) {
|
||||
if (strpos($name, $type) === 0) {
|
||||
@ -168,7 +168,7 @@ class WechatService extends Service
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function getType()
|
||||
public function getType(): string
|
||||
{
|
||||
$type = strtolower(sysconf('wechat.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\ModelNotFoundException
|
||||
*/
|
||||
public function getConfig()
|
||||
public function getConfig(): array
|
||||
{
|
||||
$options = [
|
||||
'token' => sysconf('wechat.token'),
|
||||
@ -278,7 +278,7 @@ class WechatService extends Service
|
||||
* @throws \think\db\exception\DbException
|
||||
* @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);
|
||||
if ($this->getType() === 'api') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user