Files
huangjingfen/pro_v3.5.1_副本/app/controller/admin/PublicController.php

145 lines
6.4 KiB
PHP
Raw Normal View History

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
<?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\controller\admin;
use app\Request;
use app\services\other\CacheServices;
use app\services\system\attachment\SystemAttachmentServices;
use crmeb\services\CacheService;
use Psr\SimpleCache\InvalidArgumentException;
use think\facade\Db;
use think\Response;
use think\response\File;
class PublicController
{
/**
* 下载文件
* @param string $key
* @return Response|File
* @throws InvalidArgumentException
*/
public function download(string $key = '')
{
if (!$key || !is_string($key)) {
return Response::create()->code(500);
}
try {
$fileName = CacheService::get($key);
if (is_array($fileName) && isset($fileName['path']) && isset($fileName['fileName']) && $fileName['path'] && $fileName['fileName'] && file_exists($fileName['path'])) {
CacheService::delete($key);
return download($fileName['path'], $fileName['fileName']);
}
} catch (\Exception $e) {
return Response::create()->code(500);
}
return Response::create()->code(500);
}
/**
* 获取erp开关
* @return mixed
*/
public function getErpConfig()
{
return app('json')->success(['open_erp' => !!sys_config('erp_open')]);
}
/**扫码上传
* @param Request $request
* @param $upload_type
* @return \think\Response
*/
public function scanUpload(Request $request)
{
[$file, $upload_type, $cache, $uploadToken, $type, $relation_id, $pid] = $request->postMore([
['file', 'file'],
['upload_type', 0],
['cache', ''],
['uploadToken', ''],
['type', 0],
['relation_id', 0],
['pid', 0]
], true);
// 类型验证
if (!$cache || !is_string($cache) || !$uploadToken || !is_string($uploadToken)) {
return app('json')->fail('参数有误,无法上传!');
}
$cacheServices = app()->make(CacheServices::class);
$service = app()->make(SystemAttachmentServices::class);
try {
if ($cacheServices->getDbCache($cache, '') == '' || $cacheServices->getDbCache($cache, '') != $uploadToken) {
return app('json')->fail('请重新扫码上传!');
}
$service->storeUpload((int)$pid, $file, $relation_id, $type, $upload_type, $uploadToken);
return app('json')->success('上传成功!');
} catch (\Exception $e) {
return app('json')->fail('上传处理异常: ' . $e->getMessage());
}
}
/**
* 服务器信息
* @return \think\Response
* @author wuhaotian
* @email 442384644@qq.com
* @date 2024/9/24
*/
public function getSystemInfo()
{
$SERVER_SOFTWARE = isset($_SERVER['SERVER_SOFTWARE']) ? $_SERVER['SERVER_SOFTWARE'] : '无法获取';
$info['server'] = [
['name' => '服务器系统', 'require' => '类UNIX', 'value' => PHP_OS],
['name' => 'WEB环境', 'require' => 'Apache/Nginx/IIS', 'value' => $SERVER_SOFTWARE],
];
$gd_info = function_exists('gd_info') ? gd_info() : array();
$info['environment'] = [
['name' => 'PHP版本', 'require' => '8.0', 'value' => phpversion()],
['name' => 'MySql版本', 'require' => '5.7', 'value' => Db::query("SELECT VERSION()")[0]['VERSION()']],
['name' => 'MySqli', 'require' => '开启', 'value' => function_exists('mysqli_connect')],
['name' => 'Openssl', 'require' => '开启', 'value' => function_exists('openssl_encrypt')],
['name' => 'Session', 'require' => '开启', 'value' => function_exists('session_start')],
['name' => 'Safe_Mode', 'require' => '开启', 'value' => !ini_get('safe_mode')],
['name' => 'GD', 'require' => '开启', 'value' => !empty($gd_info['GD Version'])],
['name' => 'Curl', 'require' => '开启', 'value' => function_exists('curl_init')],
['name' => 'Bcmath', 'require' => '开启', 'value' => function_exists('bcadd')],
['name' => 'Upload', 'require' => '开启', 'value' => (bool)ini_get('file_uploads')],
];
$info['permissions'] = [
['name' => 'backup', 'require' => '读写', 'value' => is_readable(root_path('backup')) && is_writable(root_path('backup'))],
['name' => 'public', 'require' => '读写', 'value' => is_readable(root_path('public')) && is_writable(root_path('public'))],
['name' => 'runtime', 'require' => '读写', 'value' => is_readable(root_path('runtime')) && is_writable(root_path('runtime'))],
['name' => '.env', 'require' => '读写', 'value' => is_readable(root_path() . '.env') && is_writable(root_path() . '.env')],
['name' => '.version', 'require' => '读写', 'value' => is_readable(root_path() . '.version') && is_writable(root_path() . '.version')],
['name' => '.constant', 'require' => '读写', 'value' => is_readable(root_path() . '.constant') && is_writable(root_path() . '.constant')],
];
if (extension_loaded('swoole')) {
$info['process'] = [
['name' => '长链接', 'require' => '开启', 'value' => true],
['name' => '定时任务', 'require' => '开启', 'value' => true],
['name' => '消息队列', 'require' => '开启', 'value' => true],
];
} else {
$info['process'] = [
['name' => '长链接', 'require' => '开启', 'value' => false],
['name' => '定时任务', 'require' => '开启', 'value' => false],
['name' => '消息队列', 'require' => '开启', 'value' => false],
];
}
return app('json')->success($info);
}
}