Files
huangjingfen/pro_v3.5.1_副本/app/services/out/OutAccountServices.php
apple 434aa8c69d feat(fsgx): 完成全部24项开发任务 Phase1-7
Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods

Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口

Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则

Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)

Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口

Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单

Made-with: Cursor
2026-03-23 22:32:19 +08:00

259 lines
8.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\out;
use app\dao\out\OutAccountDao;
use crmeb\basic\BaseAuth;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
use crmeb\exceptions\AuthException;
use crmeb\services\CacheService;
use crmeb\services\HttpService;
use crmeb\utils\ApiErrorCode;
use crmeb\utils\JwtAuth;
use think\annotation\Inject;
use think\exception\ValidateException;
/**
* 获取token
* Class LoginServices
* @package app\services\kefu
* @mixin OutAccountDao
*/
class OutAccountServices extends BaseServices
{
const FEPAORPL = 'OSeCVa';
/**
* @var OutAccountDao
*/
#[Inject]
protected OutAccountDao $dao;
/**
* 账号密码登录
* @param string $appid
* @param string|null $appsecret
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function authLogin(string $appid, string $appsecret = null)
{
$autInfo = $this->dao->get(['appid' => $appid, 'is_del' => 0]);
if (!$autInfo) {
throw new ValidateException('没有此用户');
}
if ($appsecret && !password_verify($appsecret, $autInfo->appsecret)) {
throw new ValidateException('appid或appsecret错误');
}
if ($autInfo->status == 2) {
throw new ValidateException('您已被禁止登录');
}
$token = $this->createToken($autInfo->id, 'out', $autInfo->appsecret);
$data['last_time'] = time();
$data['ip'] = request()->ip();
$this->update($autInfo['id'], $data);
return [
'token' => $token['token'],
'exp_time' => $token['params']['exp'],
'autInfo' => $autInfo->hidden(['appsecret', 'ip', 'is_del', 'add_time', 'status', 'last_time'])->toArray()
];
}
/**
* 解析token
* @param string $token
* @return array
* @throws \Psr\SimpleCache\InvalidArgumentException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function parseToken(string $token)
{
/** @var BaseAuth $services */
$services = app()->make(BaseAuth::class);
$adminInfo = $services->parseToken($token, function ($id) {
return $this->dao->get($id);
});
if (isset($adminInfo->auth) && $adminInfo->auth !== md5($adminInfo->appsecret)) {
throw new AuthException(ApiErrorCode::ERR_LOGIN_INVALID);
}
return $adminInfo->hidden(['appsecret', 'ip', 'status']);
}
/**
* 获取一条
* @return array|\think\Model|null
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getOne($where = [])
{
$info = $this->dao->getOne($where);
return $info ? $info->toArray() : [];
}
/**
* 获取列表
* @param array $where
* @return array
*/
public function getList(array $where = [])
{
[$page, $limit] = $this->getPageValue();
$where['is_del'] = 0;
$list = $this->dao->getList((array)$where, (int)$page, (int)$limit);
$count = $this->dao->count($where);
if ($list) {
foreach ($list as &$item) {
$item['add_time'] = $item['add_time'] ? date('Y-m-d H:i:s', $item['add_time']) : '暂无';
$item['last_time'] = $item['last_time'] ? date('Y-m-d H:i:s', $item['last_time']) : '暂无';
$item['rules'] = is_null($item['rules']) ? [] : json_decode($item['rules'], true);
}
}
return compact('count', 'list');
}
/**
* 设置推送接口
* @param $id
* @param $data
* @return mixed
*/
public function outSetUpSave($id, $data)
{
return $this->dao->update($id, $data);
}
/**
* 测试获取token接口
* @param $data
* @return int[]|mixed
*/
public function textOutUrl($data)
{
if (!$data['push_account'] || !$data['push_password'] || !$data['push_token_url']) throw new AdminException(100100);
$param = ['push_account' => $data['push_account'], 'push_password' => $data['push_password']];
$res = HttpService::getRequest($data['push_token_url'], $param);
$res = $res ? json_decode($res, true) : ['status' => 400];
if ($res['status'] != 200) {
throw new AdminException('测试失败');
} else {
return $res['data'];
}
}
/**
* 刷新token
* @param string $token
* @return array
* @throws \Psr\SimpleCache\InvalidArgumentException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function refresh(string $token): array
{
/** @var CacheService $cacheService */
$cacheService = app()->make(CacheService::class);
/** @var JwtAuth $jwtAuth */
$jwtAuth = app()->make(JwtAuth::class);
//获取token信息
[$md5Token, $id, $type] = $this->verifyToken($token, $jwtAuth, $cacheService);
//获取对外账号
$authInfo = $this->dao->getOne(['id' => $id, 'is_del' => 0]);
$this->checkAuth($authInfo, $md5Token, $cacheService);
$cacheService->delete($md5Token);
$token = $jwtAuth->createToken($id, $type);
$data['last_time'] = time();
$data['ip'] = request()->ip();
$this->dao->update($id, $data);
return [
'access_token' => $token['token'],
'exp_time' => $token['params']['exp'],
];
}
/**
* 获取token
* @param string $token
* @param JwtAuth $jwtAuth
* @param CacheService $cacheService
* @return array
* @throws \Psr\SimpleCache\InvalidArgumentException
*/
protected function verifyToken(string $token, JwtAuth $jwtAuth, CacheService $cacheService): array
{
if (!$token || $token === 'undefined') {
throw new AuthException('登录失败');
}
$md5Token = md5($token);
if (!$cacheService->has($md5Token) || !($cacheToken = $cacheService->get($md5Token, '', NULL, 'out'))) {
throw new AuthException('登录已过期,请重新登录');
}
//解析token
[$id, $type] = $jwtAuth->parseToken($token);
if (!$id || $type != 'out') {
throw new AuthException('登录失败');
}
try {
$jwtAuth->verifyToken();
} catch (\Throwable $e) {
if (!request()->isCli()) {
$cacheService->delete($md5Token);
}
throw new AuthException('登录失败');
}
return [$md5Token, $id, $type];
}
/**
* 核对用户
* @param $authInfo
* @param string $md5Token
* @param CacheService $cacheService
* @return bool
*/
protected function checkAuth($authInfo, string $md5Token, CacheService $cacheService): bool
{
if (!$authInfo) {
if (!request()->isCli()) {
$cacheService->delete($md5Token);
}
throw new AuthException('登录已过期,请重新登录');
}
if ($authInfo->status == 2) {
if (!request()->isCli()) {
$cacheService->delete($md5Token);
}
throw new AuthException('您已被禁止登录');
}
return true;
}
}