mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
83 lines
2.4 KiB
PHP
83 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace app\data\service;
|
|
|
|
use think\admin\Service;
|
|
|
|
/**
|
|
* 会员数据服务
|
|
* Class MemberService
|
|
* @package app\store\service
|
|
*/
|
|
class MemberService extends Service
|
|
{
|
|
/**
|
|
* 绑定数据表
|
|
* @var string
|
|
*/
|
|
protected $table = 'DataMember';
|
|
|
|
/**
|
|
* 获取会员资料
|
|
* @param string $token 接口认证
|
|
* @param array $data 额外数据
|
|
* @return array
|
|
* @throws \think\Exception
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function get(string $token, array $data = []): array
|
|
{
|
|
$query = $this->app->db->name($this->table);
|
|
$query->where(['token' => $token, 'deleted' => 0]);
|
|
$member = $query->withoutField('status,deleted')->find();
|
|
if (empty($member)) throw new \think\Exception('会员查询失败');
|
|
if ($member['tokenv'] !== $this->buildTokenVerify()) {
|
|
throw new \think\Exception('请重新登录授权');
|
|
}
|
|
return array_merge($member, $data);
|
|
}
|
|
|
|
/**
|
|
* 刷新会员授权 TOKEN
|
|
* @param int $mid 会员MID
|
|
* @param array $data 额外数据
|
|
* @return array
|
|
* @throws \think\Exception
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function token(int $mid, array $data = []): array
|
|
{
|
|
do $up = ['token' => md5(uniqid("{$mid}#", true) . rand(100, 999))];
|
|
while ($this->app->db->name($this->table)->where($up)->count() > 0);
|
|
$count = $this->app->db->name($this->table)->where(['id' => $mid, 'deleted' => 0])->update([
|
|
'token' => $up['token'], 'tokenv' => $this->buildTokenVerify(),
|
|
]);
|
|
if ($count < 1) throw new \think\Exception('生成授权TOKEN失败');
|
|
return $this->get($up['token'], $data);
|
|
}
|
|
|
|
/**
|
|
* 获取会员数据统计
|
|
* @param int $mid 会员MID
|
|
* @return array
|
|
*/
|
|
public function total(int $mid): array
|
|
{
|
|
$query = $this->app->db->name($this->table);
|
|
return ['myinvited' => $query->where(['from' => $mid])->count()];
|
|
}
|
|
|
|
/**
|
|
* 获取认证信息编码
|
|
* @return string
|
|
*/
|
|
private function buildTokenVerify(): string
|
|
{
|
|
return md5($this->app->request->server('HTTP_USER_AGENT', '-'));
|
|
}
|
|
|
|
} |