This commit is contained in:
全栈小学生 2025-04-19 10:46:34 +08:00
parent a943c22556
commit 8e4464ccea
80 changed files with 3227 additions and 1706 deletions

View File

@ -0,0 +1,125 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\adminapi\controller\addon;
use app\service\admin\upgrade\BackupRecordsService;
use core\base\BaseAdminController;
use think\Response;
class Backup extends BaseAdminController
{
/**
* 获取升级记录分页列表
* @return Response
*/
public function getRecords()
{
$data = $this->request->params([
[ "content", "" ],
]);
return success(( new BackupRecordsService() )->getPage($data));
}
/**
* 修改备注
* @return Response
*/
public function modifyRemark()
{
$data = $this->request->params([
[ "id", "" ],
[ 'remark', '' ]
]);
( new BackupRecordsService() )->modifyRemark($data);
return success('MODIFY_SUCCESS');
}
/**
* 恢复前检测文件是否存在
* @return Response
*/
public function checkDirExist()
{
$data = $this->request->params([
[ "id", 0 ],
]);
return success(( new BackupRecordsService() )->checkDirExist($data[ 'id' ]));
}
/**
* 检测目录权限
* @return Response
*/
public function checkPermission()
{
return success(( new BackupRecordsService() )->checkPermission());
}
/**
* 恢复备份
* @return Response
*/
public function restoreBackup()
{
$data = $this->request->params([
[ 'id', 0 ],
[ 'task', '' ]
]);
$res = ( new BackupRecordsService() )->restore($data);
return $res;
}
/**
* 删除升级记录
* @return Response
*/
public function deleteRecords()
{
$data = $this->request->params([
[ "ids", [] ],
]);
( new BackupRecordsService() )->del($data[ 'ids' ]);
return success('DELETE_SUCCESS');
}
/**
* 手动备份
* @return Response
*/
public function manualBackup()
{
$data = $this->request->params([
[ 'task', '' ]
]);
$res = ( new BackupRecordsService() )->manualBackup($data);
return $res;
}
/**
* 获取正在进行的恢复任务
* @return Response
*/
public function getRestoreTask()
{
return success(( new BackupRecordsService() )->getRestoreTask());
}
/**
* 获取正在进行的备份任务
* @return Response
*/
public function getBackupTask()
{
return success(( new BackupRecordsService() )->getBackupTask());
}
}

View File

@ -11,6 +11,7 @@
namespace app\adminapi\controller\addon; namespace app\adminapi\controller\addon;
use app\service\admin\upgrade\UpgradeRecordsService;
use app\service\admin\upgrade\UpgradeService; use app\service\admin\upgrade\UpgradeService;
use core\base\BaseAdminController; use core\base\BaseAdminController;
use think\Response; use think\Response;
@ -32,7 +33,7 @@ class Upgrade extends BaseAdminController
* @param $app_key * @param $app_key
* @return Response * @return Response
*/ */
public function execute($addon = '') public function execute()
{ {
return success(data: ( new UpgradeService() )->execute()); return success(data: ( new UpgradeService() )->execute());
} }
@ -74,4 +75,21 @@ class Upgrade extends BaseAdminController
{ {
return success(data: ( new UpgradeService() )->clearUpgradeTask()); return success(data: ( new UpgradeService() )->clearUpgradeTask());
} }
public function operate($operate) {
return success(( new UpgradeService() )->operate($operate));
}
/**
* 获取升级记录分页列表
* @return Response
*/
public function getRecords()
{
$data = $this->request->params([
[ "name", "" ],
]);
return success(( new UpgradeRecordsService() )->getPage($data));
}
} }

View File

@ -49,8 +49,7 @@ class Diy extends BaseAdminController
*/ */
public function getPageByCarouselSearch() public function getPageByCarouselSearch()
{ {
$data = $this->request->params([]); return success(( new DiyService() )->getPageByCarouselSearch());
return success(( new DiyService() )->getPageByCarouselSearch($data));
} }
/** /**

View File

@ -370,16 +370,4 @@ class DiyForm extends BaseAdminController
return success(( new DiyFormRecordsService() )->getFieldStatList($data)); return success(( new DiyFormRecordsService() )->getFieldStatList($data));
} }
/**
* 获取万能表单微信小程序二维码
* @return Response
*/
public function getQrcode()
{
$data = $this->request->params([
[ "form_id", '' ],
]);
return success(( new DiyFormService() )->getQrcode($data[ 'form_id' ]));
}
} }

View File

@ -152,6 +152,7 @@ class Member extends BaseAdminController
{ {
$data = $this->request->params([ $data = $this->request->params([
['keyword', ''], ['keyword', ''],
['member_ids', []],
]); ]);
return success((new MemberService())->getList($data)); return success((new MemberService())->getList($data));
} }

View File

@ -49,7 +49,8 @@ class Module extends BaseAdminController
* @return Response * @return Response
* @throws \GuzzleHttp\Exception\GuzzleException * @throws \GuzzleHttp\Exception\GuzzleException
*/ */
public function getFrameworkLastVersion() { public function getFrameworkLastVersion()
{
return success(data: ( new NiucloudService() )->getFrameworkLastVersion()); return success(data: ( new NiucloudService() )->getFrameworkLastVersion());
} }
@ -58,7 +59,20 @@ class Module extends BaseAdminController
* @return Response * @return Response
* @throws \GuzzleHttp\Exception\GuzzleException * @throws \GuzzleHttp\Exception\GuzzleException
*/ */
public function getFrameworkVersionList() { public function getFrameworkVersionList()
{
return success(data: ( new NiucloudService() )->getFrameworkVersionList()); return success(data: ( new NiucloudService() )->getFrameworkVersionList());
} }
/**
* 获取应用/插件的版本更新记录
* @return Response
*/
public function getAppVersionList()
{
$data = $this->request->params([
[ 'app_key', '' ],
]);
return success(data: ( new NiucloudService() )->getAppVersionList($data[ 'app_key' ]));
}
} }

View File

@ -17,6 +17,13 @@ use core\base\BaseAdminController;
class PayRefund extends BaseAdminController class PayRefund extends BaseAdminController
{ {
/**
* @return \think\Response
*/
public function getStatus()
{
return success(RefundDict::getStatus());
}
/** /**
* 退款列表 * 退款列表
* @return \think\Response * @return \think\Response

View File

@ -57,6 +57,8 @@ class Config extends BaseAdminController
$service_data = $this->request->params([ $service_data = $this->request->params([
[ "wechat_code", "" ], [ "wechat_code", "" ],
[ "enterprise_wechat", "" ], [ "enterprise_wechat", "" ],
[ "site_login_logo", "" ],
[ "site_login_bg_img", "" ],
[ "tel", "" ], [ "tel", "" ],
]); ]);
( new ConfigService() )->setService($service_data); ( new ConfigService() )->setService($service_data);

View File

@ -91,4 +91,19 @@ class System extends BaseAdminController
{ {
return success(['app_debug' => env('app_debug', false)]); return success(['app_debug' => env('app_debug', false)]);
} }
/**
* 获取推广二维码
* @return Response
*/
public function getSpreadQrcode()
{
$params = $this->request->params([
['form_id', ''],
['folder',''],
['page',''],
['params',[]]
]);
return success((new SystemService())->getQrcode($params));
}
} }

View File

@ -36,6 +36,16 @@ class Verifier extends BaseAdminController
return success(data: ( new VerifierService() )->getList()); return success(data: ( new VerifierService() )->getList());
} }
/**
* 获取核销员信息
* @param int $order_id
* @return Response
*/
public function detail($id)
{
return success(data: ( new VerifierService() )->getDetail($id));
}
/** /**
* 添加核销员 * 添加核销员
* @param int $order_id * @param int $order_id
@ -50,6 +60,20 @@ class Verifier extends BaseAdminController
return success(data: ( new VerifierService() )->add($data)); return success(data: ( new VerifierService() )->add($data));
} }
/**
* 添加核销员
* @param int $order_id
* @return Response
*/
public function edit($id)
{
$data = $this->request->params([
[ 'verify_type', '' ],
]);
( new VerifierService() )->edit($id,$data);
return success('EDIT_SUCCESS');
}
/** /**
* 删除核销员 * 删除核销员
*/ */

View File

@ -22,10 +22,19 @@ class WeappVersion extends BaseAdminController
* @return Response * @return Response
*/ */
public function weappCommit() { public function weappCommit() {
(new WeappVersionService())->add(); $data = $this->request->params([
['site_group_id', ""]
]);
$data['is_all'] = empty($data['site_group_id']) ? 1 : 0;
(new WeappVersionService())->add($data);
return success(); return success();
} }
public function getSiteGroupCommitRecord() {
return success(data:(new WeappVersionService())->getSiteGroupCommitRecord());
}
/** /**
* 获取最后一次提交记录 * 获取最后一次提交记录
* @return Response * @return Response
@ -35,7 +44,10 @@ class WeappVersion extends BaseAdminController
} }
public function commitRecord() { public function commitRecord() {
return success(data:(new WeappVersionService())->getPage()); $data = $this->request->params([
['site_group_id', ""]
]);
return success(data:(new WeappVersionService())->getPage($data));
} }
/** /**

View File

@ -42,6 +42,9 @@ Route::group('niucloud', function () {
// 获取框架版本更新记录 // 获取框架版本更新记录
Route::get('framework/version/list', 'niucloud.Module/getFrameworkVersionList'); Route::get('framework/version/list', 'niucloud.Module/getFrameworkVersionList');
// 获取应用/插件的版本更新记录
Route::get('app_version/list', 'niucloud.Module/getAppVersionList');
// 云编译 // 云编译
Route::post('build', 'niucloud.Cloud/build'); Route::post('build', 'niucloud.Cloud/build');
// 获取编译任务 // 获取编译任务

View File

@ -43,6 +43,7 @@ Route::group('pay', function () {
//退款列表 //退款列表
Route::get('refund', 'pay.PayRefund/pages'); Route::get('refund', 'pay.PayRefund/pages');
//退款详情 //退款详情
Route::get('refund/status', 'pay.PayRefund/getStatus');
Route::get('refund/:refund_no', 'pay.PayRefund/detail'); Route::get('refund/:refund_no', 'pay.PayRefund/detail');
//退款方式 //退款方式
Route::get('refund/type', 'pay.PayRefund/getRefundType'); Route::get('refund/type', 'pay.PayRefund/getRefundType');

View File

@ -23,6 +23,7 @@ Route::group('sys', function() {
//系统信息 //系统信息
Route::get('info', 'sys.System/info'); Route::get('info', 'sys.System/info');
Route::get('url', 'sys.System/url'); Route::get('url', 'sys.System/url');
Route::get('qrcode', 'sys.System/getSpreadQrcode');
/***************************************************** 用户组 ****************************************************/ /***************************************************** 用户组 ****************************************************/
//用户组列表 //用户组列表
Route::get('role', 'sys.Role/lists'); Route::get('role', 'sys.Role/lists');

View File

@ -19,18 +19,56 @@ use think\facade\Route;
* 路由 * 路由
*/ */
Route::group('', function () { Route::group('', function () {
// 获取正在进行的升级任务 // 获取正在进行的升级任务
Route::get('upgrade/task', 'addon.Upgrade/getUpgradeTask'); Route::get('upgrade/task', 'addon.Upgrade/getUpgradeTask');
// 执行升级 // 执行升级
Route::post('upgrade/execute', 'addon.Upgrade/execute'); Route::post('upgrade/execute', 'addon.Upgrade/execute');
// 清除升级任务 // 清除升级任务
Route::post('upgrade/clear', 'addon.Upgrade/clearUpgradeTask'); Route::post('upgrade/clear', 'addon.Upgrade/clearUpgradeTask');
// 升级环境检测 // 升级环境检测
Route::get('upgrade/check/[:addon]', 'addon.Upgrade/upgradePreCheck'); Route::get('upgrade/check/[:addon]', 'addon.Upgrade/upgradePreCheck');
// 升级 // 升级
Route::post('upgrade/[:addon]', 'addon.Upgrade/upgrade'); Route::post('upgrade/[:addon]', 'addon.Upgrade/upgrade');
// 获取升级内容 // 获取升级内容
Route::get('upgrade/[:addon]', 'addon.Upgrade/getUpgradeContent'); Route::get('upgrade/[:addon]', 'addon.Upgrade/getUpgradeContent');
Route::post('upgrade/operate/:operate', 'addon.Upgrade/operate');
// 升级记录分页列表
Route::get('upgrade/records', 'addon.Upgrade/getRecords');
// 备份记录分页列表
Route::get('backup/records', 'addon.Backup/getRecords');
// 修改备注
Route::put('backup/remark', 'addon.Backup/modifyRemark');
// 恢复前检测文件是否存在,备份
Route::post('backup/check_dir', 'addon.Backup/checkDirExist');
// 检测目录权限
Route::post('backup/check_permission', 'addon.Backup/checkPermission');
// 恢复升级备份
Route::post('backup/restore', 'addon.Backup/restoreBackup');
// 删除升级记录
Route::post('backup/delete', 'addon.Backup/deleteRecords');
// 手动备份
Route::post('backup/manual', 'addon.Backup/manualBackup');
// 获取进行中的恢复
Route::get('backup/restore_task', 'addon.Backup/getRestoreTask');
// 获取进行中的备份
Route::get('backup/task', 'addon.Backup/getBackupTask');
})->middleware([ })->middleware([
AdminCheckToken::class, AdminCheckToken::class,
AdminCheckRole::class, AdminCheckRole::class,

View File

@ -28,6 +28,8 @@ Route::group('verify', function () {
/***************************************************** 核销员相关接口 ****************************************************/ /***************************************************** 核销员相关接口 ****************************************************/
// 添加核销员 // 添加核销员
Route::post('verifier', 'verify.Verifier/add'); Route::post('verifier', 'verify.Verifier/add');
Route::post('verifier/:id', 'verify.Verifier/edit');
Route::get('verifier/:id', 'verify.Verifier/detail');
// 获取核销员列表 // 获取核销员列表
Route::get('verifier', 'verify.Verifier/lists'); Route::get('verifier', 'verify.Verifier/lists');
// 获取核销员列表 // 获取核销员列表

View File

@ -38,6 +38,8 @@ Route::group('wxoplatform', function () {
Route::get('weapp/commit', 'wxoplatform.WeappVersion/commitRecord'); Route::get('weapp/commit', 'wxoplatform.WeappVersion/commitRecord');
// 站点小程序提交审核 // 站点小程序提交审核
Route::post('site/weapp/commit', 'wxoplatform.WeappVersion/siteWeappCommit'); Route::post('site/weapp/commit', 'wxoplatform.WeappVersion/siteWeappCommit');
// 按站点套餐获取提交记录
Route::get('sitegroup/commit', 'wxoplatform.WeappVersion/getSiteGroupCommitRecord');
})->middleware([ })->middleware([
AdminCheckToken::class, AdminCheckToken::class,
AdminCheckRole::class, AdminCheckRole::class,

View File

@ -22,7 +22,8 @@ class Verify extends BaseApiController
* 获取验证码 * 获取验证码
* @return Response * @return Response
*/ */
public function getVerifyCode(){ public function getVerifyCode()
{
$data = $this->request->params([ $data = $this->request->params([
[ 'data', [] ], [ 'data', [] ],
[ 'type', '' ] [ 'type', '' ]
@ -34,25 +35,30 @@ class Verify extends BaseApiController
* 获取核销码信息 * 获取核销码信息
* @return Response * @return Response
*/ */
public function getInfoByCode(){ public function getInfoByCode()
{
$data = $this->request->params([ $data = $this->request->params([
[ 'code', '' ], [ 'code', '' ],
]); ]);
return success(data: ( new VerifyService() )->getInfoByCode($data[ 'code' ])); return success(data: ( new VerifyService() )->getInfoByCode($data[ 'code' ]));
} }
/** /**
* 核销 * 核销
* @param $code * @param $code
* @return Response * @return Response
*/ */
public function verify($code){ public function verify($code)
{
return success(data: ( new VerifyService() )->verify($code)); return success(data: ( new VerifyService() )->verify($code));
} }
/** /**
* 校验是否是核销员 * 校验是否是核销员
* @return Response * @return Response
*/ */
public function checkVerifier(){ public function checkVerifier()
{
return success(data: ( new VerifyService() )->checkVerifier()); return success(data: ( new VerifyService() )->checkVerifier());
} }
@ -60,7 +66,8 @@ class Verify extends BaseApiController
* 核销记录 * 核销记录
* @return void * @return void
*/ */
public function records(){ public function records()
{
$data = $this->request->params([ $data = $this->request->params([
[ 'relate_tag', 0 ], [ 'relate_tag', 0 ],
[ 'type', '' ], [ 'type', '' ],
@ -76,7 +83,8 @@ class Verify extends BaseApiController
* @param $code * @param $code
* @return Response * @return Response
*/ */
public function detail(string|int $code){ public function detail(string|int $code)
{
return success(data: ( new VerifyService() )->getRecordsDetailByVerifier($code)); return success(data: ( new VerifyService() )->getRecordsDetailByVerifier($code));
} }

View File

@ -556,7 +556,7 @@ function dir_copy(string $src = '', string $dst = '', &$files = [], $exclude_dir
if (is_dir($src . '/' . $file)) { if (is_dir($src . '/' . $file)) {
// 排除目录 // 排除目录
if (count($exclude_dirs) && in_array($file, $exclude_dirs)) continue; if (count($exclude_dirs) && in_array($file, $exclude_dirs)) continue;
dir_copy($src . '/' . $file, $dst . '/' . $file, $files); dir_copy($src . '/' . $file, $dst . '/' . $file, $files, $exclude_dirs, $exclude_files);
} else { } else {
// 排除文件 // 排除文件
if (count($exclude_files) && in_array($file, $exclude_files)) continue; if (count($exclude_files) && in_array($file, $exclude_files)) continue;
@ -1025,10 +1025,13 @@ function get_last_time($time = null)
/** /**
* 检查目录及其子目录的权限 * 检查目录及其子目录的权限
* @param string $dir 要检查的目录路径 * @param $dir 要检查的目录路径
* @return void * @param $data
* @param $exclude_dir 排除排除无需检测的的文件夹
* @return array|array[]|mixed
*/ */
function checkDirPermissions($dir, $data = []) { function checkDirPermissions($dir, $data = [], $exclude_dir = [])
{
if (!is_dir($dir)) { if (!is_dir($dir)) {
throw new \RuntimeException(sprintf('指定的路径 "%s" 不是一个有效的目录', $dir)); throw new \RuntimeException(sprintf('指定的路径 "%s" 不是一个有效的目录', $dir));
} }
@ -1054,9 +1057,21 @@ function checkDirPermissions($dir, $data = []) {
continue; continue;
} }
$fullPath = $dir . DIRECTORY_SEPARATOR . $file; $fullPath = $dir . DIRECTORY_SEPARATOR . $file;
// 忽略指定目录
$is_exclude = false;
foreach ($exclude_dir as $k => $item) {
if (strpos($fullPath, $item)) {
$is_exclude = true;
break;
}
}
if ($is_exclude) continue;
// 判断是否为目录,如果是则递归调用 // 判断是否为目录,如果是则递归调用
if (is_dir($fullPath)) { if (is_dir($fullPath)) {
$data = checkDirPermissions($fullPath, $data); // 递归调用自身来检查子目录 $data = checkDirPermissions($fullPath, $data, $exclude_dir); // 递归调用自身来检查子目录
} else { } else {
// 如果是文件,则检查其读写权限 // 如果是文件,则检查其读写权限
if (!is_readable($fullPath)) $data[ 'unreadable' ][] = $fullPath; if (!is_readable($fullPath)) $data[ 'unreadable' ][] = $fullPath;
@ -1072,3 +1087,41 @@ function checkDirPermissions($dir, $data = []) {
return $data; return $data;
} }
} }
/**
* 下载网络图片
* @param $img_url 图片URL
* @param $file_name 本地保存位置
* @return bool
*/
function downloadImage($img_url, $file_name)
{
// 初始化 cURL 会话
$ch = curl_init($img_url);
// 打开本地文件以写入模式
$fp = fopen($file_name, 'wb');
// 设置 cURL 选项
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
// 跳过 SSL 验证
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
// 执行 cURL 会话
curl_exec($ch);
// 检查是否有错误发生
if (curl_errno($ch)) {
// echo 'Curl error: ' . curl_error($ch);
return false;
}
// 关闭 cURL 会话和文件句柄
curl_close($ch);
fclose($fp);
return true;
}

View File

@ -460,6 +460,7 @@ class ComponentDict
// 'default' => '', // 默认值 存储数据类型不同,各组件自行处理 // 'default' => '', // 默认值 存储数据类型不同,各组件自行处理
// 'value' => '', // 字段值 存储数据类型不同,各组件自行处理 // 'value' => '', // 字段值 存储数据类型不同,各组件自行处理
// ], // ],
// 'placeholder' => '请输入', // 提示语
// "fontSize" => 14, // "fontSize" => 14,
// "fontWeight" => "normal", // "fontWeight" => "normal",
// ] // ]
@ -683,7 +684,17 @@ class ComponentDict
// 'max' => 0 // 最多填写 N 项 // 'max' => 0 // 最多填写 N 项
// ], // ],
// 'btnText' => '新增一组' // 'btnText' => '新增一组'
// ] // ],
// // 渲染值
// 'render' => function($data) {
// // todo 处理业务数据
// return '';
// },
// // 转换类型
// 'convert' => function($data) {
// // todo 处理业务数据
// return $data;
// }
// ], // ],
'FormDate' => [ 'FormDate' => [
'title' => '日期', 'title' => '日期',
@ -727,7 +738,7 @@ class ComponentDict
'unique' => false, // 内容不可重复提交 truefalse 'unique' => false, // 内容不可重复提交 truefalse
'autofill' => false, // 自动填充上次填写的内容 true开启false关闭 'autofill' => false, // 自动填充上次填写的内容 true开启false关闭
'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理 'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理
'cache' => false, // 开启本地数据缓存 true开启false关闭 'cache' => true, // 开启本地数据缓存 true开启false关闭
'default' => [ // 默认值 存储数据类型不同,各组件自行处理 'default' => [ // 默认值 存储数据类型不同,各组件自行处理
'date' => '', // 例2024-12-27 'date' => '', // 例2024-12-27
'timestamp' => 0, // 例1735290511 'timestamp' => 0, // 例1735290511
@ -799,7 +810,7 @@ class ComponentDict
'unique' => false, // 内容不可重复提交 truefalse 'unique' => false, // 内容不可重复提交 truefalse
'autofill' => false, // 自动填充上次填写的内容 true开启false关闭 'autofill' => false, // 自动填充上次填写的内容 true开启false关闭
'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理 'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理
'cache' => false, // 开启本地数据缓存 true开启false关闭 'cache' => true, // 开启本地数据缓存 true开启false关闭
// 默认值 存储数据类型不同,各组件自行处理 // 默认值 存储数据类型不同,各组件自行处理
'default' => [ 'default' => [
// todo 在做的过程中可能会再调整字段名称 // todo 在做的过程中可能会再调整字段名称
@ -894,7 +905,7 @@ class ComponentDict
'unique' => false, // 内容不可重复提交 truefalse 'unique' => false, // 内容不可重复提交 truefalse
'autofill' => false, // 自动填充上次填写的内容 true开启false关闭 'autofill' => false, // 自动填充上次填写的内容 true开启false关闭
'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理 'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理
'cache' => false, // 开启本地数据缓存 true开启false关闭 'cache' => true, // 开启本地数据缓存 true开启false关闭
'default' => '', // 默认值 存储数据类型不同,各组件自行处理 'default' => '', // 默认值 存储数据类型不同,各组件自行处理
'value' => '', // 字段值 存储数据类型不同,各组件自行处理 'value' => '', // 字段值 存储数据类型不同,各组件自行处理
], ],
@ -946,7 +957,7 @@ class ComponentDict
'unique' => false, // 内容不可重复提交 truefalse 'unique' => false, // 内容不可重复提交 truefalse
'autofill' => false, // 自动填充上次填写的内容 true开启false关闭 'autofill' => false, // 自动填充上次填写的内容 true开启false关闭
'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理 'privacyProtection' => false, // 隐私保护 true开启false关闭隐藏逻辑各组件自行处理
'cache' => false, // 开启本地数据缓存 true开启false关闭 'cache' => true, // 开启本地数据缓存 true开启false关闭
// 默认值 存储数据类型不同,各组件自行处理 // 默认值 存储数据类型不同,各组件自行处理
'default' => [ 'default' => [
'start' => [ 'start' => [

View File

@ -381,7 +381,7 @@ class TemplateDict
"unique" => false, "unique" => false,
"autofill" => false, "autofill" => false,
"privacyProtection" => false, "privacyProtection" => false,
'cache' => false, 'cache' => true,
"default" => [ "default" => [
"date" => "", "date" => "",
"timestamp" => 0 "timestamp" => 0
@ -576,7 +576,7 @@ class TemplateDict
"unique" => false, "unique" => false,
"autofill" => false, "autofill" => false,
"privacyProtection" => false, "privacyProtection" => false,
'cache' => false, 'cache' => true,
"default" => [ "default" => [
"start" => [ "start" => [
"date" => "", "date" => "",

View File

@ -1167,7 +1167,21 @@ return [
'router_path' => 'tools/code', 'router_path' => 'tools/code',
'view_path' => 'tools/code/index', 'view_path' => 'tools/code/index',
'methods' => 'get', 'methods' => 'get',
'sort' => '100', 'sort' => '109',
'status' => '1',
'is_show' => '1',
],
[
'menu_name' => '更新缓存',
'menu_key' => 'update_cache',
'menu_short_name' => '更新缓存',
'menu_type' => '1',
'icon' => 'nc-iconfont nc-icon-qingliV6xx',
'api_url' => 'sys/schema/clear',
'router_path' => 'tools/update_cache',
'view_path' => 'tools/updatecache',
'methods' => 'post',
'sort' => '108',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
], ],
@ -1181,7 +1195,7 @@ return [
'router_path' => 'tools/code/edit', 'router_path' => 'tools/code/edit',
'view_path' => 'tools/code/edit', 'view_path' => 'tools/code/edit',
'methods' => '', 'methods' => '',
'sort' => '99', 'sort' => '100',
'status' => '1', 'status' => '1',
'is_show' => '0', 'is_show' => '0',
'children' => [ 'children' => [
@ -1253,7 +1267,7 @@ return [
'router_path' => 'tools/addon_edit', 'router_path' => 'tools/addon_edit',
'view_path' => 'tools/addon/edit', 'view_path' => 'tools/addon/edit',
'methods' => 'get', 'methods' => 'get',
'sort' => '90', 'sort' => '100',
'status' => '1', 'status' => '1',
'is_show' => '0', 'is_show' => '0',
'children' => [ 'children' => [
@ -1297,7 +1311,7 @@ return [
'router_path' => 'tools/list', 'router_path' => 'tools/list',
'view_path' => 'dict/list', 'view_path' => 'dict/list',
'methods' => 'get', 'methods' => 'get',
'sort' => '90', 'sort' => '107',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
'children' => [ 'children' => [
@ -1355,7 +1369,7 @@ return [
'router_path' => 'tools/detection', 'router_path' => 'tools/detection',
'view_path' => 'tools/detection', 'view_path' => 'tools/detection',
'methods' => '', 'methods' => '',
'sort' => '50', 'sort' => '106',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
], ],
@ -1369,7 +1383,7 @@ return [
'router_path' => 'tools/admin_menu', 'router_path' => 'tools/admin_menu',
'view_path' => 'auth/menu', 'view_path' => 'auth/menu',
'methods' => 'get', 'methods' => 'get',
'sort' => '49', 'sort' => '105',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
'children' => [ 'children' => [
@ -1441,7 +1455,7 @@ return [
'router_path' => 'tools/site_menu', 'router_path' => 'tools/site_menu',
'view_path' => 'auth/site_menu', 'view_path' => 'auth/site_menu',
'methods' => 'get', 'methods' => 'get',
'sort' => '48', 'sort' => '104',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
'children' => [ 'children' => [
@ -1513,7 +1527,7 @@ return [
'router_path' => 'tools/schedule', 'router_path' => 'tools/schedule',
'view_path' => 'tools/schedule', 'view_path' => 'tools/schedule',
'methods' => '', 'methods' => '',
'sort' => '40', 'sort' => '103',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
'children' => [ 'children' => [
@ -1585,7 +1599,7 @@ return [
'router_path' => 'tools/schedule_log', 'router_path' => 'tools/schedule_log',
'view_path' => 'tools/schedule_log', 'view_path' => 'tools/schedule_log',
'methods' => '', 'methods' => '',
'sort' => '40', 'sort' => '100',
'status' => '1', 'status' => '1',
'is_show' => '0' 'is_show' => '0'
], ],
@ -1599,24 +1613,10 @@ return [
'router_path' => 'tools/authorize', 'router_path' => 'tools/authorize',
'view_path' => 'app/authorize', 'view_path' => 'app/authorize',
'methods' => '', 'methods' => '',
'sort' => '30', 'sort' => '102',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
'children' => [ 'children' => [
[
'menu_name' => '系统升级',
'menu_key' => 'system_upgrade',
'menu_short_name' => '系统升级',
'menu_type' => '2',
'icon' => '',
'api_url' => 'upgrade',
'router_path' => '',
'view_path' => '',
'methods' => 'post',
'sort' => '100',
'status' => '1',
'is_show' => '1',
],
[ [
'menu_name' => '绑定授权信息', 'menu_name' => '绑定授权信息',
'menu_key' => 'bind_app_auth', 'menu_key' => 'bind_app_auth',
@ -1633,6 +1633,62 @@ return [
] ]
] ]
], ],
[
'menu_name' => '系统更新',
'menu_key' => 'system_upgrade',
'menu_short_name' => '系统更新',
'menu_type' => '1',
'icon' => 'iconfont iconxitonggengxin',
'api_url' => '',
'router_path' => 'tools/upgrade',
'view_path' => 'app/upgrade',
'methods' => '',
'sort' => '101',
'status' => '1',
'is_show' => '1',
],
[
'menu_name' => '升级记录',
'menu_key' => 'upgrade_records',
'menu_short_name' => '升级记录',
'menu_type' => '1',
'icon' => 'iconfont iconshengjijilu',
'api_url' => 'upgrade/records',
'router_path' => 'tools/upgrade_records',
'view_path' => 'tools/upgrade_records',
'methods' => 'post',
'sort' => '100',
'status' => '1',
'is_show' => '1',
],
[
'menu_name' => '备份记录',
'menu_key' => 'backup_records',
'menu_short_name' => '备份记录',
'menu_type' => '1',
'icon' => 'iconfont iconbeifenjiluV6xx',
'api_url' => 'backup/records',
'router_path' => 'tools/backup_records',
'view_path' => 'tools/backup_records',
'methods' => 'post',
'sort' => '99',
'status' => '1',
'is_show' => '1',
],
[
'menu_name' => '云编译',
'menu_key' => 'cloud_compile',
'menu_short_name' => '云编译',
'menu_type' => '1',
'icon' => 'iconfont iconyun2',
'api_url' => '',
'router_path' => 'tools/cloud_compile',
'view_path' => 'tools/cloud_compile',
'methods' => 'post',
'sort' => '98',
'status' => '1',
'is_show' => '1',
],
[ [
'menu_name' => '开发者key', 'menu_name' => '开发者key',
'menu_key' => 'developer_token', 'menu_key' => 'developer_token',
@ -1643,7 +1699,7 @@ return [
'router_path' => 'tools/developer_token', 'router_path' => 'tools/developer_token',
'view_path' => 'setting/developer_token', 'view_path' => 'setting/developer_token',
'methods' => 'get', 'methods' => 'get',
'sort' => '20', 'sort' => '97',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
'children' => [ 'children' => [
@ -1663,20 +1719,6 @@ return [
] ]
] ]
], ],
[
'menu_name' => '更新缓存',
'menu_key' => 'update_cache',
'menu_short_name' => '更新缓存',
'menu_type' => '1',
'icon' => 'nc-iconfont nc-icon-qingliV6xx',
'api_url' => 'sys/schema/clear',
'router_path' => 'tools/update_cache',
'view_path' => 'tools/updatecache',
'methods' => 'post',
'sort' => '100',
'status' => '1',
'is_show' => '1',
]
], ],
], ],

View File

@ -936,6 +936,20 @@ return [
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '1',
], ],
[
'menu_name' => '编辑核销员',
'menu_key' => 'edit_verifier',
'menu_short_name' => '编辑核销员',
'menu_type' => '2',
'icon' => '',
'api_url' => 'verify/verifier/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'post',
'sort' => '100',
'status' => '1',
'is_show' => '1',
],
[ [
'menu_name' => '删除核销员', 'menu_name' => '删除核销员',
'menu_key' => 'delete_verifier', 'menu_key' => 'delete_verifier',
@ -1102,7 +1116,7 @@ return [
'methods' => 'get', 'methods' => 'get',
'sort' => '100', 'sort' => '100',
'status' => '1', 'status' => '1',
'is_show' => '1', 'is_show' => '',
'children' => [ 'children' => [
[ [
'menu_name' => '保存', 'menu_name' => '保存',
@ -2217,122 +2231,6 @@ return [
], ],
], ],
], ],
[
'menu_name' => '小票打印',
'menu_key' => 'printer_management',
'menu_short_name' => '小票打印',
'menu_type' => '1',
'icon' => 'element FolderChecked',
'api_url' => 'printer',
'router_path' => 'printer/list',
'view_path' => 'printer/list',
'methods' => 'get',
'sort' => '30',
'status' => '1',
'is_show' => '1',
'children' => [
[
'menu_name' => '删除打印机',
'menu_key' => 'delete_printer',
'menu_short_name' => '删除打印机',
'menu_type' => '2',
'icon' => '',
'api_url' => 'printer/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'delete',
'sort' => '100',
'status' => '1',
'is_show' => '1',
]
]
],
[
'menu_name' => '添加打印机',
'menu_key' => 'printer_add',
'menu_short_name' => '添加打印机',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer',
'router_path' => 'printer/add',
'view_path' => 'printer/edit',
'methods' => 'post',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[
'menu_name' => '编辑打印机',
'menu_key' => 'printer_edit',
'menu_short_name' => '添加打印机',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer/<id>',
'router_path' => 'printer/edit',
'view_path' => 'printer/edit',
'methods' => 'put',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[
'menu_name' => '小票打印模板',
'menu_key' => 'printer_template_management',
'menu_short_name' => '小票打印模板',
'menu_type' => '1',
'icon' => 'element FolderChecked',
'api_url' => 'printer/template',
'router_path' => 'printer/template/list',
'view_path' => 'printer/template_list',
'methods' => 'get',
'sort' => '96',
'status' => '1',
'is_show' => '0',
'children' => [
[
'menu_name' => '删除打印模板',
'menu_key' => 'delete_printer_template',
'menu_short_name' => '删除打印模板',
'menu_type' => '2',
'icon' => '',
'api_url' => 'printer/template/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'delete',
'sort' => '100',
'status' => '1',
'is_show' => '1',
]
]
],
[
'menu_name' => '添加打印模板',
'menu_key' => 'printer_template_add',
'menu_short_name' => '添加打印模板',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer/template',
'router_path' => 'printer/template/add',
'view_path' => 'printer/template_edit',
'methods' => 'post',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[
'menu_name' => '编辑打印模板',
'menu_key' => 'printer_template_edit',
'menu_short_name' => '编辑打印模板',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer/template/<id>',
'router_path' => 'printer/template/edit',
'view_path' => 'printer/template_edit',
'methods' => 'put',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[ [
'menu_name' => '系统工具', 'menu_name' => '系统工具',
'menu_key' => 'setting_tool', 'menu_key' => 'setting_tool',
@ -2479,36 +2377,7 @@ return [
] ]
] ]
], ],
[
'menu_name' => '数据导出',
'menu_key' => 'setting_export',
'menu_short_name' => '数据导出',
'menu_type' => '1',
'icon' => 'element FolderChecked',
'api_url' => 'sys/export',
'router_path' => 'setting/export',
'view_path' => 'setting/export',
'methods' => 'get',
'sort' => '98',
'status' => '1',
'is_show' => '1',
'children' => [
[
'menu_name' => '删除报表',
'menu_key' => 'delete_export',
'menu_short_name' => '删除报表',
'menu_type' => '2',
'icon' => '',
'api_url' => 'sys/export/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'delete',
'sort' => '100',
'status' => '1',
'is_show' => '1',
]
]
],
] ]
], ],
@ -2638,5 +2507,188 @@ return [
], ],
], ],
] ]
],
[
'menu_name' => '数据导出',
'menu_key' => 'setting_export',
'menu_short_name' => '数据导出',
'menu_type' => '0',
'icon' => 'element Files',
'api_url' => '',
'router_path' => '',
'view_path' => '',
'methods' => '',
'sort' => '0',
'status' => '1',
'is_show' => '1',
'menu_attr' => 'setting_export',
'children' => [
[
'menu_name' => '数据导出列表',
'menu_key' => 'setting_export_list',
'menu_short_name' => '数据导出列表',
'menu_type' => '1',
'icon' => 'element FolderChecked',
'api_url' => 'sys/export',
'router_path' => 'setting/export',
'view_path' => 'setting/export',
'methods' => 'get',
'sort' => '98',
'status' => '1',
'is_show' => '1',
'menu_attr' => 'setting_export',
'children' => [
[
'menu_name' => '删除报表',
'menu_key' => 'delete_export',
'menu_short_name' => '删除报表',
'menu_type' => '2',
'icon' => '',
'api_url' => 'sys/export/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'delete',
'sort' => '100',
'status' => '1',
'is_show' => '1',
'menu_attr' => 'setting_export',
] ]
]
],
]
],
[
'menu_name' => '打印管理',
'menu_key' => 'printer_management',
'menu_short_name' => '打印管理',
'menu_type' => '0',
'icon' => 'element Files',
'api_url' => '',
'router_path' => '',
'view_path' => '',
'methods' => '',
'sort' => '0',
'status' => '1',
'is_show' => '1',
'menu_attr' => 'printer_management',
'children' => [
[
'menu_name' => '小票打印',
'menu_key' => 'printer_management_list',
'menu_short_name' => '小票打印',
'menu_type' => '1',
'icon' => 'element FolderChecked',
'api_url' => 'printer',
'router_path' => 'printer/list',
'view_path' => 'printer/list',
'methods' => 'get',
'sort' => '30',
'status' => '1',
'is_show' => '1',
'menu_attr' => 'printer_management',
'children' => [
[
'menu_name' => '删除打印机',
'menu_key' => 'delete_printer',
'menu_short_name' => '删除打印机',
'menu_type' => '2',
'icon' => '',
'api_url' => 'printer/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'delete',
'sort' => '100',
'status' => '1',
'is_show' => '1',
]
]
],
[
'menu_name' => '添加打印机',
'menu_key' => 'printer_add',
'menu_short_name' => '添加打印机',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer',
'router_path' => 'printer/add',
'view_path' => 'printer/edit',
'methods' => 'post',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[
'menu_name' => '编辑打印机',
'menu_key' => 'printer_edit',
'menu_short_name' => '添加打印机',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer/<id>',
'router_path' => 'printer/edit',
'view_path' => 'printer/edit',
'methods' => 'put',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[
'menu_name' => '小票打印模板',
'menu_key' => 'printer_template_management',
'menu_short_name' => '小票打印模板',
'menu_type' => '1',
'icon' => 'element FolderChecked',
'api_url' => 'printer/template',
'router_path' => 'printer/template/list',
'view_path' => 'printer/template_list',
'methods' => 'get',
'sort' => '96',
'status' => '1',
'is_show' => '0',
'children' => [
[
'menu_name' => '删除打印模板',
'menu_key' => 'delete_printer_template',
'menu_short_name' => '删除打印模板',
'menu_type' => '2',
'icon' => '',
'api_url' => 'printer/template/<id>',
'router_path' => '',
'view_path' => '',
'methods' => 'delete',
'sort' => '100',
'status' => '1',
'is_show' => '1',
]
]
],
[
'menu_name' => '添加打印模板',
'menu_key' => 'printer_template_add',
'menu_short_name' => '添加打印模板',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer/template',
'router_path' => 'printer/template/add',
'view_path' => 'printer/template_edit',
'methods' => 'post',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
[
'menu_name' => '编辑打印模板',
'menu_key' => 'printer_template_edit',
'menu_short_name' => '编辑打印模板',
'menu_type' => '1',
'icon' => '',
'api_url' => 'printer/template/<id>',
'router_path' => 'printer/template/edit',
'view_path' => 'printer/template_edit',
'methods' => 'put',
'sort' => '0',
'status' => '1',
'is_show' => '0',
],
]
],
]; ];

View File

@ -25,7 +25,19 @@ return [
'class' => 'app\job\schedule\SiteExpireClose', 'class' => 'app\job\schedule\SiteExpireClose',
'function' => '' 'function' => ''
], ],
[
'key' => 'auto_clear_schedule_log',
'name' => '定时清理计划任务日志表',
'desc' => '',
'time' => [
'type' => 'day',
'day' => 1,
'hour' => 1,
'min' => 1
],
'class' => 'app\job\schedule\AutoClearScheduleLog',
'function' => ''
],
[ [
'key' => 'transfer_check_finish', 'key' => 'transfer_check_finish',
'name' => '检验在线转账是否处理完毕', 'name' => '检验在线转账是否处理完毕',
@ -37,6 +49,17 @@ return [
'class' => 'app\job\transfer\schedule\CheckFinish', 'class' => 'app\job\transfer\schedule\CheckFinish',
'function' => '' 'function' => ''
], ],
[
'key' => 'auto_clear_upgrade_records',
'name' => '定时清理升级/备份记录表',
'desc' => '',
'time' => [
'type' => 'min',
'min' => 1
],
'class' => 'app\job\upgrade\AutoClearUpgradeRecords',
'function' => ''
],
// [ // [
// 'key' => 'site_stat', // 'key' => 'site_stat',
// 'name' => '站点统计', // 'name' => '站点统计',

View File

@ -0,0 +1,34 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\dict\sys;
/**
* 备份记录字典
*/
class BackupDict
{
const STATUS_READY = 'ready'; //准备执行
const STATUS_COMPLETE = 'complete'; // 完成
const STATUS_FAIL = 'fail'; // 失败
public static function getStatus($status)
{
$status_list = [
self::STATUS_READY => get_lang('dict_backup.ready'),
self::STATUS_COMPLETE => get_lang('dict_backup.complete'),
self::STATUS_FAIL => get_lang('dict_backup.fail'),
];
return $status_list[ $status ] ?? '';
}
}

View File

@ -28,7 +28,7 @@ class CloudDict
const APPLET_AUDIT_FAIL = -2; const APPLET_AUDIT_FAIL = -2;
public static function getAppletUploadSatus($status) { public static function getAppletUploadStatus($status) {
$status_list = [ $status_list = [
self::APPLET_UPLOADING => get_lang('dict_cloud_applet.uploading'), self::APPLET_UPLOADING => get_lang('dict_cloud_applet.uploading'),
self::APPLET_UPLOAD_SUCCESS => get_lang('dict_cloud_applet.upload_success'), self::APPLET_UPLOAD_SUCCESS => get_lang('dict_cloud_applet.upload_success'),

View File

@ -0,0 +1,37 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\dict\sys;
/**
* 升级记录字典
* Class UpgradeRecordsDict
* @package app\dict\sys
*
*/
class UpgradeDict
{
const STATUS_READY = 'ready'; //准备执行
const STATUS_COMPLETE = 'complete'; // 完成
const STATUS_FAIL = 'fail'; // 失败
public static function getStatus($status)
{
$status_list = [
self::STATUS_READY => get_lang('dict_upgrade.ready'),
self::STATUS_COMPLETE => get_lang('dict_upgrade.complete'),
self::STATUS_FAIL => get_lang('dict_upgrade.fail'),
];
return $status_list[ $status ] ?? '';
}
}

View File

@ -150,7 +150,7 @@ CREATE TABLE `diy_form_submit_config` (
`site_id` INT(11) NOT NULL DEFAULT 0 COMMENT '站点id', `site_id` INT(11) NOT NULL DEFAULT 0 COMMENT '站点id',
`form_id` INT(11) NOT NULL DEFAULT 0 COMMENT '所属万能表单id', `form_id` INT(11) NOT NULL DEFAULT 0 COMMENT '所属万能表单id',
`submit_after_action` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '填表人提交后操作text文字信息voucher核销凭证', `submit_after_action` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '填表人提交后操作text文字信息voucher核销凭证',
`tips_type` VARCHAR(255) NOT NULL COMMENT '提示内容类型default默认提示diy自定义提示', `tips_type` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '提示内容类型default默认提示diy自定义提示',
`tips_text` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '自定义提示内容', `tips_text` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '自定义提示内容',
`time_limit_type` VARCHAR(255) NOT NULL DEFAULT '0' COMMENT '核销凭证有效期限制类型no_limit不限制specify_time指定固定开始结束时间submission_time按提交时间设置有效期', `time_limit_type` VARCHAR(255) NOT NULL DEFAULT '0' COMMENT '核销凭证有效期限制类型no_limit不限制specify_time指定固定开始结束时间submission_time按提交时间设置有效期',
`time_limit_rule` TEXT DEFAULT NULL COMMENT '核销凭证时间限制规则json格式', `time_limit_rule` TEXT DEFAULT NULL COMMENT '核销凭证时间限制规则json格式',
@ -290,7 +290,7 @@ CREATE TABLE `generate_table` (
DROP TABLE IF EXISTS `jobs`; DROP TABLE IF EXISTS `jobs`;
CREATE TABLE `jobs` ( CREATE TABLE `jobs` (
`id` int(11) NOT NULL AUTO_INCREMENT, `id` int(11) NOT NULL AUTO_INCREMENT,
`queue` varchar(255) NOT NULL, `queue` varchar(255) NOT NULL DEFAULT '',
`payload` longtext NOT NULL, `payload` longtext NOT NULL,
`attempts` tinyint(4) UNSIGNED NOT NULL DEFAULT 0, `attempts` tinyint(4) UNSIGNED NOT NULL DEFAULT 0,
`reserve_time` int(11) UNSIGNED NULL DEFAULT 0, `reserve_time` int(11) UNSIGNED NULL DEFAULT 0,
@ -514,7 +514,7 @@ CREATE TABLE `pay` (
`trade_id` int(11) NOT NULL DEFAULT 0 COMMENT '业务id', `trade_id` int(11) NOT NULL DEFAULT 0 COMMENT '业务id',
`trade_no` varchar(255) NOT NULL DEFAULT '' COMMENT '交易单号', `trade_no` varchar(255) NOT NULL DEFAULT '' COMMENT '交易单号',
`body` varchar(1000) NOT NULL DEFAULT '' COMMENT '支付主体', `body` varchar(1000) NOT NULL DEFAULT '' COMMENT '支付主体',
`money` decimal(10, 2) NOT NULL COMMENT '支付金额', `money` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '支付金额',
`voucher` varchar(255) NOT NULL DEFAULT '' COMMENT '支付票据', `voucher` varchar(255) NOT NULL DEFAULT '' COMMENT '支付票据',
`status` int(11) NOT NULL DEFAULT 0 COMMENT '支付状态0.待支付 1. 支付中 2. 已支付 -1已取消', `status` int(11) NOT NULL DEFAULT 0 COMMENT '支付状态0.待支付 1. 支付中 2. 已支付 -1已取消',
`json` varchar(255) NOT NULL DEFAULT '' COMMENT '支付扩展用支付信息', `json` varchar(255) NOT NULL DEFAULT '' COMMENT '支付扩展用支付信息',
@ -599,7 +599,7 @@ CREATE TABLE `pay_transfer` (
`transfer_payee` VARCHAR(500) NOT NULL DEFAULT '' COMMENT '在线转账数据(json)', `transfer_payee` VARCHAR(500) NOT NULL DEFAULT '' COMMENT '在线转账数据(json)',
`out_batch_no` VARCHAR(500) NOT NULL DEFAULT '' COMMENT '扩展数据,主要用于记录接收到线上打款的业务数据编号', `out_batch_no` VARCHAR(500) NOT NULL DEFAULT '' COMMENT '扩展数据,主要用于记录接收到线上打款的业务数据编号',
`package_info` VARCHAR(1000) NOT NULL DEFAULT '' COMMENT '跳转领取页面的package信息', `package_info` VARCHAR(1000) NOT NULL DEFAULT '' COMMENT '跳转领取页面的package信息',
`extra` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '扩展信息', `extra` VARCHAR(1000) NOT NULL DEFAULT '' COMMENT '扩展信息',
PRIMARY KEY (`id`) USING BTREE PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '转账表' ROW_FORMAT = Dynamic; ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '转账表' ROW_FORMAT = Dynamic;
@ -618,7 +618,7 @@ CREATE TABLE `pay_transfer_scene` (
DROP TABLE IF EXISTS `site`; DROP TABLE IF EXISTS `site`;
CREATE TABLE `site` ( CREATE TABLE `site` (
`site_id` int(11) NOT NULL AUTO_INCREMENT, `site_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`site_name` varchar(50) NOT NULL DEFAULT '' COMMENT '站点名称', `site_name` varchar(50) NOT NULL DEFAULT '' COMMENT '站点名称',
`group_id` int(11) NOT NULL DEFAULT 0 COMMENT '分组ID(0:不限制)', `group_id` int(11) NOT NULL DEFAULT 0 COMMENT '分组ID(0:不限制)',
`keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字', `keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '关键字',
@ -775,6 +775,22 @@ CREATE TABLE `sys_attachment_category` (
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '附件分类表' ROW_FORMAT = Dynamic; ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '附件分类表' ROW_FORMAT = Dynamic;
DROP TABLE IF EXISTS `sys_backup_records`;
CREATE TABLE `sys_backup_records`
(
`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '备份版本号',
`backup_key` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '备份标识',
`content` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '备份内容',
`status` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '状态',
`fail_reason` LONGTEXT DEFAULT NULL COMMENT '失败原因',
`remark` VARCHAR(500) NOT NULL DEFAULT '' COMMENT '备注',
`create_time` INT(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
`complete_time` INT(11) NOT NULL DEFAULT 0 COMMENT '完成时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci COMMENT='备份记录表';
DROP TABLE IF EXISTS `sys_config`; DROP TABLE IF EXISTS `sys_config`;
CREATE TABLE `sys_config` ( CREATE TABLE `sys_config` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键', `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
@ -1053,6 +1069,24 @@ CREATE TABLE `sys_schedule_log` (
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '计划任务执行记录' ROW_FORMAT = Dynamic; ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '计划任务执行记录' ROW_FORMAT = Dynamic;
DROP TABLE IF EXISTS `sys_upgrade_records`;
CREATE TABLE `sys_upgrade_records`
(
`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`upgrade_key` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '升级标识',
`app_key` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '插件标识',
`name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '升级名称',
`content` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '升级内容',
`prev_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '前一版本',
`current_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '当前版本',
`status` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '状态',
`fail_reason` LONGTEXT DEFAULT NULL COMMENT '失败原因',
`create_time` INT(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
`complete_time` INT(11) NOT NULL DEFAULT 0 COMMENT '完成时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci COMMENT='升级记录表';
DROP TABLE IF EXISTS `sys_user`; DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` ( CREATE TABLE `sys_user` (
`uid` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '系统用户ID', `uid` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '系统用户ID',

View File

@ -0,0 +1,47 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\job\schedule;
use app\model\sys\SysScheduleLog;
use core\base\BaseJob;
use think\facade\Log;
/**
* 队列异步调用定时任务
*/
class AutoClearScheduleLog extends BaseJob
{
/****执行成功的数据记录留存时间***/
const SUCCESS_SAVE_DAY = 3;
/***执行失败的数据记录留存时间***/
const ERROR_SAVE_DAY = 7;
public function doJob()
{
Log::write('AutoClearScheduleLog 定时清除schedule_log数据' . date('Y-m-d h:i:s'));
try {
( new SysScheduleLog() )->where([
[ 'execute_time', '<', time() - self::SUCCESS_SAVE_DAY * 86400 ],
[ 'status', '=', 'success' ],
])->delete();
( new SysScheduleLog() )->where([
[ 'execute_time', '<', time() - self::ERROR_SAVE_DAY * 86400 ],
[ 'status', '=', 'error' ],
])->delete();
return true;
} catch (\Exception $e) {
Log::write('AutoClearScheduleLog 定时清除schedule_log数据失败' . date('Y-m-d h:i:s') . $e->getMessage() . $e->getFile() . $e->getLine());
return false;
}
}
}

View File

@ -0,0 +1,54 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\job\upgrade;
use app\dict\sys\BackupDict;
use app\dict\sys\UpgradeDict;
use app\model\sys\SysUpgradeRecords;
use app\service\admin\upgrade\BackupRecordsService;
use core\base\BaseJob;
use think\facade\Log;
/**
* 队列异步调用定时任务
*/
class AutoClearUpgradeRecords extends BaseJob
{
const DAY = 7; // 清除7天前的数据
public function doJob()
{
Log::write('AutoClearUpgradeRecords 定时清除升级记录、备份记录数据' . date('Y-m-d h:i:s'));
try {
// 清除7天前的升级记录数据
( new SysUpgradeRecords() )->where([
[ 'create_time', '<', time() - self::DAY * 86400 ],
[ 'status', 'in', [ UpgradeDict::STATUS_READY, UpgradeDict::STATUS_FAIL ] ]
])->delete();
// 清除7天前的备份记录数据
$backup_records_service = new BackupRecordsService();
$backup_records = $backup_records_service->getList([
[ 'create_time', '<', time() - self::DAY * 86400 ],
[ 'status', 'in', [ BackupDict::STATUS_READY, BackupDict::STATUS_FAIL ] ]
], 'id');
$backup_records_service->del(array_column($backup_records, 'id'));
return true;
} catch (\Exception $e) {
Log::write('AutoClearScheduleLog 定时清除升级记录、备份记录数据失败' . date('Y-m-d h:i:s') . $e->getMessage() . $e->getFile() . $e->getLine());
return false;
}
}
}

View File

@ -25,9 +25,9 @@ class GetVersionUploadResult extends BaseJob
* @param $data * @param $data
* @return true * @return true
*/ */
protected function doJob($task_key) protected function doJob($task_key, $is_all)
{ {
WeappVersionService::getVersionUploadResult($task_key); WeappVersionService::getVersionUploadResult($task_key, $is_all);
return true; return true;
} }

View File

@ -25,9 +25,9 @@ class VersionUploadSuccess extends BaseJob
* @param $data * @param $data
* @return true * @return true
*/ */
protected function doJob($task_key) protected function doJob($task_key, $is_all)
{ {
WeappVersionService::uploadSuccess($task_key); WeappVersionService::uploadSuccess($task_key, $is_all);
return true; return true;
} }

View File

@ -37,6 +37,7 @@ return [
'SERVER_CROSS_REQUEST_FAIL' => '服务器跨域请求异常', 'SERVER_CROSS_REQUEST_FAIL' => '服务器跨域请求异常',
'ADDON_INSTALL_NOT_EXIST' => '未找到插件安装任务', 'ADDON_INSTALL_NOT_EXIST' => '未找到插件安装任务',
'ADDON_INSTALL_EXECUTED' => '插件安装任务已执行', 'ADDON_INSTALL_EXECUTED' => '插件安装任务已执行',
'ADDON_INSTALLING' => '插件安装中',
'INSTALL_CHECK_NOT_PASS' => '安装校验未通过', 'INSTALL_CHECK_NOT_PASS' => '安装校验未通过',
'SITE_INDEX_VIEW_PATH_NOT_EXIST' => '当前首页路径不存在', 'SITE_INDEX_VIEW_PATH_NOT_EXIST' => '当前首页路径不存在',
'ADMIN_INDEX_VIEW_PATH_NOT_EXIST' => '当前首页路径不存在', 'ADMIN_INDEX_VIEW_PATH_NOT_EXIST' => '当前首页路径不存在',
@ -59,6 +60,9 @@ return [
'ADDON_ZIP_ERROR' => '插件压缩失败', 'ADDON_ZIP_ERROR' => '插件压缩失败',
'PHP_SCRIPT_RUNNING_OUT_OF_MEMORY' => 'PHP脚本运行内存不足, 具体操作方法<a style="text-decoration: underline;" href="https://www.kancloud.cn/niushop/niushop_v6/3248604" target="blank">点击查看相关手册</a>', 'PHP_SCRIPT_RUNNING_OUT_OF_MEMORY' => 'PHP脚本运行内存不足, 具体操作方法<a style="text-decoration: underline;" href="https://www.kancloud.cn/niushop/niushop_v6/3248604" target="blank">点击查看相关手册</a>',
'BEFORE_UPGRADING_NEED_UPGRADE_FRAMEWORK' => '升级插件前需要先升级框架', 'BEFORE_UPGRADING_NEED_UPGRADE_FRAMEWORK' => '升级插件前需要先升级框架',
'UPGRADE_RECORD_NOT_EXIST' => '升级记录不存在',
'UPGRADE_BACKUP_CODE_NOT_FOUND' => '未找到备份的源码文件',
'UPGRADE_BACKUP_SQL_NOT_FOUND' => '未找到备份的数据库文件',
//登录注册重置账号.... //登录注册重置账号....
'LOGIN_SUCCESS' => '登录成功', 'LOGIN_SUCCESS' => '登录成功',
@ -308,6 +312,8 @@ return [
'VERIFY_TYPE_ERROR' => '核销类型错误', 'VERIFY_TYPE_ERROR' => '核销类型错误',
'VERIFY_CODE_EXPIRED' => '当前核销码已核销或已失效', 'VERIFY_CODE_EXPIRED' => '当前核销码已核销或已失效',
'VERIFIER_NOT_EXIST' => '核销员不存在', 'VERIFIER_NOT_EXIST' => '核销员不存在',
'VERIFIER_EXIST'=>'核销员已存在',
'VERIFIER_NOT_AUTH' => '该核销员没有权限',
//签到相关 //签到相关
'SIGN_NOT_USE' => '签到未开启', 'SIGN_NOT_USE' => '签到未开启',

View File

@ -410,5 +410,15 @@ return [
// 打印机品牌 // 打印机品牌
'dict_printer' => [ 'dict_printer' => [
'yilianyun' => '易联云打印机' 'yilianyun' => '易联云打印机'
],
'dict_upgrade' => [
'ready' => '准备执行',
'complete' => '完成',
'fail' => '失败'
],
'dict_backup' => [
'ready' => '准备执行',
'complete' => '完成',
'fail' => '失败'
] ]
]; ];

View File

@ -37,13 +37,20 @@ class ShowAppListener
'key' => 'diy_form', 'key' => 'diy_form',
'url' => '/diy_form/list', 'url' => '/diy_form/list',
], ],
// [ [
// 'title' => '万能a表单', 'title' => '小票打印',
// 'desc' => '万能a表单', 'desc' => '支持打印机添加,便捷创建小票打印模板',
// 'icon' => 'static/resource/images/diy_form/icon.png', 'icon' => 'static/resource/images/tool/printer_icon.png',
// 'key' => 'diy_faorm', 'key' => 'printer_management',
// 'url' => '/diy_faorm/list', 'url' => '/printer/list',
// ] ],
[
'title' => '数据导出',
'desc' => '展示导出文件,支持删除与下载',
'icon' => 'static/resource/images/tool/export_icon.png',
'key' => 'setting_export',
'url' => '/setting/export',
],
], ],
// 营销 // 营销
'promotion' => [ 'promotion' => [

View File

@ -202,9 +202,16 @@ class Member extends BaseModel
*/ */
public function searchMemberLabelAttr(Query $query, $value, $data) public function searchMemberLabelAttr(Query $query, $value, $data)
{ {
if ($value) { if ($value) {
$query->whereLike('member_label', '%"' . $value . '"%'); if (is_array($value)) {
$temp_where = array_map(function($item) { return '%"' . $item . '"%'; }, $value);
} else {
$temp_where = [ '%"' . $value . '"%' ];
} }
$query->where('member_label', 'like', $temp_where, 'or');
}
} }
/** /**

View File

@ -0,0 +1,112 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\model\sys;
use app\dict\sys\UpgradeDict;
use core\base\BaseModel;
/**
* 备份记录表模型
*/
class SysBackupRecords extends BaseModel
{
/**
* 数据表主键
* @var string
*
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'sys_backup_records';
protected $type = [
'create_time' => 'timestamp',
'complete_time' => 'timestamp'
];
// 设置json类型字段
protected $json = [ 'fail_reason' ];
// 设置JSON数据返回数组
protected $jsonAssoc = true;
/**
* 状态字段转化
* @param $value
* @param $data
* @return mixed
*/
public function getStatusNameAttr($value, $data)
{
if (empty($data[ 'status' ])) return '';
return UpgradeDict::getStatus($data[ 'status' ]);
}
/**
* 备份目录
* @param $value
* @param $data
* @return string
*/
public function getBackupDirAttr($value, $data)
{
if (empty($data[ 'backup_key' ])) return '';
return 'upgrade' . DIRECTORY_SEPARATOR . $data[ 'backup_key' ];
}
/**
* 备份源码目录
* @param $value
* @param $data
* @return string
*/
public function getBackupCodeDirAttr($value, $data)
{
if (empty($data[ 'backup_key' ])) return '';
$root_path = dirname(root_path()) . DIRECTORY_SEPARATOR;
$upgrade_dir = $root_path . 'upgrade' . DIRECTORY_SEPARATOR;
return $upgrade_dir . $data[ 'backup_key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR;
}
/**
* 备份数据库目录
* @param $value
* @param $data
* @return string
*/
public function getBackupSqlDirAttr($value, $data)
{
if (empty($data[ 'backup_key' ])) return '';
$root_path = dirname(root_path()) . DIRECTORY_SEPARATOR;
$upgrade_dir = $root_path . 'upgrade' . DIRECTORY_SEPARATOR;
return $upgrade_dir . $data[ 'backup_key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR;
}
/**
* 搜索器:备份内容
* @param $query
* @param $value
* @param $data
*/
public function searchContentAttr($query, $value, $data)
{
if ($value != '') {
$query->where("content", 'like', '%' . $this->handelSpecialCharacter($value) . '%');
}
}
}

View File

@ -0,0 +1,120 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\model\sys;
use app\dict\sys\UpgradeDict;
use core\base\BaseModel;
/**
* 升级记录表模型
*/
class SysUpgradeRecords extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'sys_upgrade_records';
protected $type = [
'create_time' => 'timestamp',
'complete_time' => 'timestamp'
];
// 设置json类型字段
protected $json = [ 'fail_reason' ];
// 设置JSON数据返回数组
protected $jsonAssoc = true;
/**
* 状态字段转化
* @param $value
* @param $data
* @return mixed
*/
public function getStatusNameAttr($value, $data)
{
if (empty($data[ 'status' ])) return '';
return UpgradeDict::getStatus($data[ 'status' ]);
}
/**
* 备份目录
* @param $value
* @param $data
* @return string
*/
public function getBackupDirAttr($value, $data)
{
if (empty($data[ 'upgrade_key' ])) return '';
return 'upgrade' . DIRECTORY_SEPARATOR . $data[ 'upgrade_key' ];
}
/**
* 备份源码目录
* @param $value
* @param $data
* @return string
*/
public function getBackupCodeDirAttr($value, $data)
{
if (empty($data[ 'upgrade_key' ])) return '';
$root_path = dirname(root_path()) . DIRECTORY_SEPARATOR;
$upgrade_dir = $root_path . 'upgrade' . DIRECTORY_SEPARATOR;
return $upgrade_dir . $data[ 'upgrade_key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR;
}
/**
* 备份数据库目录
* @param $value
* @param $data
* @return string
*/
public function getBackupSqlDirAttr($value, $data)
{
if (empty($data[ 'upgrade_key' ])) return '';
$root_path = dirname(root_path()) . DIRECTORY_SEPARATOR;
$upgrade_dir = $root_path . 'upgrade' . DIRECTORY_SEPARATOR;
return $upgrade_dir . $data[ 'upgrade_key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR;
}
/**
* 搜索器:升级名称
* @param $query
* @param $value
* @param $data
*/
public function searchNameAttr($query, $value, $data)
{
if ($value != '') {
$query->where("name", 'like', '%' . $this->handelSpecialCharacter($value) . '%');
}
}
/**
* 关联备份记录
* @return \think\model\relation\HasOne
*/
public function backupRecord()
{
return $this->hasOne(SysBackupRecords::class, 'backup_key', 'upgrade_key');
}
}

View File

@ -46,6 +46,18 @@ class WxOplatfromWeappVersion extends BaseModel
public function getStatusNameAttr($value, $data) public function getStatusNameAttr($value, $data)
{ {
if (!isset($data['status'])) return ''; if (!isset($data['status'])) return '';
return CloudDict::getAppletUploadSatus($data['status']); return CloudDict::getAppletUploadStatus($data['status']);
}
/**
* @param $query
* @param $value
* @param $data
* @return void
*/
public function searchSiteGroupIdAttr($query, $value, $data) {
if (!empty($value)) {
$query->where('site_group_id', '=', $value);
}
} }
} }

View File

@ -18,8 +18,6 @@ use think\db\Query;
/** /**
* 核销记录模型 * 核销记录模型
* Class Poster
* @package app\model\verify
*/ */
class Verify extends BaseModel class Verify extends BaseModel
{ {
@ -42,7 +40,8 @@ class Verify extends BaseModel
// 设置JSON数据返回数组 // 设置JSON数据返回数组
protected $jsonAssoc = true; protected $jsonAssoc = true;
public function member() { public function member()
{
return $this->hasOne(Member::class, 'member_id', 'verifier_member_id'); return $this->hasOne(Member::class, 'member_id', 'verifier_member_id');
} }
@ -85,6 +84,7 @@ class Verify extends BaseModel
$query->where('relate_tag', '=', $value); $query->where('relate_tag', '=', $value);
} }
} }
/** /**
* 核销员 * 核销员
* @param $query * @param $query
@ -136,7 +136,8 @@ class Verify extends BaseModel
* @param $value * @param $value
* @return void * @return void
*/ */
public function getTypeNameAttr($value, $data) { public function getTypeNameAttr($value, $data)
{
if (empty($data[ 'type' ])) if (empty($data[ 'type' ]))
return ''; return '';
return VerifyDict::getType()[ $data[ 'type' ] ][ 'name' ] ?? ''; return VerifyDict::getType()[ $data[ 'type' ] ][ 'name' ] ?? '';

View File

@ -35,6 +35,6 @@ class WeappVersion extends BaseModel
protected $name = 'weapp_version'; protected $name = 'weapp_version';
public function getStatusNameAttr($value, $data) { public function getStatusNameAttr($value, $data) {
if (isset($data['status'])) return CloudDict::getAppletUploadSatus($data['status']); if (isset($data['status'])) return CloudDict::getAppletUploadStatus($data['status']);
} }
} }

View File

@ -21,7 +21,6 @@ use app\model\diy\Diy;
use app\model\diy\DiyTheme; use app\model\diy\DiyTheme;
use app\service\admin\sys\SystemService; use app\service\admin\sys\SystemService;
use app\service\core\diy\CoreDiyConfigService; use app\service\core\diy\CoreDiyConfigService;
use app\service\core\diy\CoreDiyService;
use app\service\core\site\CoreSiteService; use app\service\core\site\CoreSiteService;
use core\base\BaseAdminService; use core\base\BaseAdminService;
use core\exception\AdminException; use core\exception\AdminException;
@ -66,9 +65,8 @@ class DiyService extends BaseAdminService
* @param array $where * @param array $where
* @return array * @return array
*/ */
public function getPageByCarouselSearch(array $where = []) public function getPageByCarouselSearch()
{ {
$where[] = [ 'site_id', '=', $this->site_id ];
$field = 'id,site_id,title,page_title,name,template,type,mode,is_default,share,visit_count,create_time,update_time,value'; $field = 'id,site_id,title,page_title,name,template,type,mode,is_default,share,visit_count,create_time,update_time,value';
$order = "update_time desc"; $order = "update_time desc";
$search_model = $this->model->whereOr([ $search_model = $this->model->whereOr([
@ -833,13 +831,15 @@ class DiyService extends BaseAdminService
$data = []; $data = [];
foreach ($site_addon[ 'apps' ] as $value) { foreach ($site_addon[ 'apps' ] as $value) {
$addon_theme = array_values(array_filter(event('ThemeColor', [ 'key' => $value[ 'key' ] ])))[ 0 ] ?? []; $addon_theme = array_values(array_filter(event('ThemeColor', [ 'key' => $value[ 'key' ] ])))[ 0 ] ?? [];
if (!empty($addon_theme) && !empty($addon_theme[ 'theme_color' ])) {
$data[ $value[ 'key' ] ][ 'id' ] = $theme_data[ $value[ 'key' ] ][ 'id' ] ?? ''; $data[ $value[ 'key' ] ][ 'id' ] = $theme_data[ $value[ 'key' ] ][ 'id' ] ?? '';
$data[ $value[ 'key' ] ][ 'icon' ] = $value[ 'icon' ] ?? ''; $data[ $value[ 'key' ] ][ 'icon' ] = $value[ 'icon' ] ?? '';
$data[ $value[ 'key' ] ][ 'addon_title' ] = $value[ 'title' ] ?? ''; $data[ $value[ 'key' ] ][ 'addon_title' ] = $value[ 'title' ] ?? '';
$data[$value['key']]['title'] = $theme_data[$value['key']]['title'] ?? (!empty($addon_theme) ? $addon_theme['theme_color'][0][ 'title' ] : ''); $data[ $value[ 'key' ] ][ 'title' ] = $theme_data[ $value[ 'key' ] ][ 'title' ] ?? $addon_theme[ 'theme_color' ][ 0 ][ 'title' ];
$data[$value['key']]['theme'] = $theme_data[$value['key']]['theme'] ?? (!empty($addon_theme) ? $addon_theme['theme_color'][0][ 'theme' ] : ''); $data[ $value[ 'key' ] ][ 'theme' ] = $theme_data[ $value[ 'key' ] ][ 'theme' ] ?? $addon_theme[ 'theme_color' ][ 0 ][ 'theme' ];
} }
if (count($site_addon[ 'apps' ]) > 1) {// 应用数量大于1时展示系统主题色设置只有一个应用时不展示系统主题色设置 }
if (empty($data) || count($site_addon[ 'apps' ]) > 1) {// 应用数量大于1时展示系统主题色设置只有一个应用时不展示系统主题色设置
$data = array_merge($app_theme, $data); $data = array_merge($app_theme, $data);
} }

View File

@ -639,39 +639,6 @@ class DiyFormService extends BaseAdminService
return ( new DiyFormFields() )->where([ [ 'site_id', '=', $this->site_id ] ])->withSearch([ 'form_id' ], $where)->field($field)->order($order)->select()->toArray(); return ( new DiyFormFields() )->where([ [ 'site_id', '=', $this->site_id ] ])->withSearch([ 'form_id' ], $where)->field($field)->order($order)->select()->toArray();
} }
/**
* 获取万能表单微信小程序二维码
* @param $form_id
* @return array
*/
public function getQrcode($form_id)
{
if (empty($form_id)) {
throw new AdminException('缺少参考form_id');
}
$page = 'app/pages/index/diy_form';
$data = [
[
'key' => 'form_id',
'value' => $form_id
],
];
$dir = 'upload/' . $this->site_id . '/diy_form_qrcode';
$path = '';
try {
$path = qrcode('', $page, $data, $this->site_id, $dir, 'weapp');
} catch (\Exception $e) {
Log::write('万能表单微信小程序二维码生成error' . $e->getMessage() . $e->getFile() . $e->getLine());
}
return [
'path' => $path
];
}
/** /**
* 检测表单名称唯一性 * 检测表单名称唯一性
* @param array $data * @param array $data

View File

@ -1,5 +1,5 @@
<el-form-item :label="t('{LCASE_COLUMN_NAME}')" prop="{COLUMN_NAME}"> <el-form-item :label="t('{LCASE_COLUMN_NAME}')" prop="{COLUMN_NAME}">
<el-select class="" v-model="{LCASE_CLASS_NAME}Table.searchParam.{COLUMN_NAME}" clearable :placeholder="t('{LCASE_COLUMN_NAME}Placeholder')"> <el-select v-model="{LCASE_CLASS_NAME}Table.searchParam.{COLUMN_NAME}" clearable :placeholder="t('{LCASE_COLUMN_NAME}Placeholder')">
<el-option label="全部" value=""></el-option> <el-option label="全部" value=""></el-option>
</el-select> </el-select>

View File

@ -65,7 +65,11 @@ class MemberService extends BaseAdminService
public function getList(array $where = []) public function getList(array $where = [])
{ {
$field = 'member_id, nickname, headimg'; $field = 'member_id, nickname, headimg';
return $this->model->where([['site_id', '=', $this->site_id]])->withSearch(['keyword'],$where)->field($field)->order('member_id desc')->limit($this->getPageParam()['limit'] ?? 0)->select()->toArray(); $temp_where[] = ['site_id', '=', $this->site_id];
if (!empty($where['member_ids'])){
$temp_where[] = ['member_id', 'in', implode(',',$where['member_ids'])];
}
return $this->model->where($temp_where)->withSearch(['keyword'],$where)->field($field)->order('member_id desc')->limit($this->getPageParam()['limit'] ?? 0)->select()->toArray();
} }
/** /**
* 会员详情 * 会员详情

View File

@ -80,4 +80,11 @@ class NiucloudService extends BaseAdminService
public function getFrameworkVersionList() { public function getFrameworkVersionList() {
return (new CoreModuleService())->getFrameworkVersionList(); return (new CoreModuleService())->getFrameworkVersionList();
} }
/**
* 获取应用/插件的版本更新记录
*/
public function getAppVersionList($app_key) {
return (new CoreModuleService())->getAppVersionList($app_key);
}
} }

View File

@ -11,13 +11,11 @@
namespace app\service\admin\sys; namespace app\service\admin\sys;
use app\model\site\Site;
use app\service\admin\site\SiteService; use app\service\admin\site\SiteService;
use app\service\core\channel\CoreH5Service; use app\service\core\channel\CoreH5Service;
use app\service\core\sys\CoreConfigService; use app\service\core\sys\CoreConfigService;
use app\service\core\sys\CoreSysConfigService; use app\service\core\sys\CoreSysConfigService;
use core\base\BaseAdminService; use core\base\BaseAdminService;
use core\exception\AdminException;
/** /**
* 配置服务层 * 配置服务层
@ -70,7 +68,11 @@ class ConfigService extends BaseAdminService
*/ */
public function getWebSite() public function getWebSite()
{ {
return ( new SiteService() )->getInfo($this->site_id); $info = ( new SiteService() )->getInfo($this->site_id);
$service_info = $this->getService();
$info['site_login_logo'] = $service_info[ 'site_login_logo' ];
$info['site_login_bg_img'] = $service_info[ 'site_login_bg_img' ];
return $info;
} }
@ -80,9 +82,7 @@ class ConfigService extends BaseAdminService
*/ */
public function setWebSite($data) public function setWebSite($data)
{ {
return ( new SiteService() )->edit($this->site_id, $data); return ( new SiteService() )->edit($this->site_id, $data);
} }
/** /**
@ -100,17 +100,15 @@ class ConfigService extends BaseAdminService
*/ */
public function getService() public function getService()
{ {
$info = ( new CoreConfigService() )->getConfig(0, 'SERVICE_INFO'); $info = ( new CoreConfigService() )->getConfig(0, 'SERVICE_INFO')[ 'value' ] ?? [];
if (empty($info)) { return [
$info = []; 'wechat_code' => $info[ 'wechat_code' ] ?? '',
$info[ 'value' ] = [ 'enterprise_wechat' => $info[ 'enterprise_wechat' ] ?? '',
'wechat_code' => '', 'site_login_logo' => $info[ 'site_login_logo' ] ?? '',
'enterprise_wechat' => '', 'site_login_bg_img' => $info[ 'site_login_bg_img' ] ?? 'static/resource/images/site/login_bg.jpg',
'tel' => '', 'tel' => $info[ 'tel' ] ?? ''
]; ];
} }
return $info[ 'value' ];
}
/** /**
* 设置服务信息 * 设置服务信息
@ -121,6 +119,8 @@ class ConfigService extends BaseAdminService
{ {
$data = [ $data = [
"wechat_code" => $value[ 'wechat_code' ], "wechat_code" => $value[ 'wechat_code' ],
"site_login_logo" => $value[ 'site_login_logo' ],
"site_login_bg_img" => $value[ 'site_login_bg_img' ],
"enterprise_wechat" => $value[ 'enterprise_wechat' ], "enterprise_wechat" => $value[ 'enterprise_wechat' ],
"tel" => $value[ 'tel' ] "tel" => $value[ 'tel' ]
]; ];
@ -154,7 +154,7 @@ class ConfigService extends BaseAdminService
if (empty($info)) { if (empty($info)) {
$info = []; $info = [];
$info[ 'value' ] = [ $info[ 'value' ] = [
'key' => 'IZQBZ-3UHEU-WTCVD-2464U-I5N4V-ZFFU3', 'key' => '',
'is_open' => 1, // 是否开启定位 'is_open' => 1, // 是否开启定位
'valid_time' => 5 // 定位有效期/分钟过期后将重新获取定位信息0为不过期 'valid_time' => 5 // 定位有效期/分钟过期后将重新获取定位信息0为不过期
]; ];

View File

@ -12,11 +12,12 @@
namespace app\service\admin\sys; namespace app\service\admin\sys;
use app\job\sys\CheckJob; use app\job\sys\CheckJob;
use app\service\core\site\CoreSiteService;
use app\service\core\sys\CoreSysConfigService; use app\service\core\sys\CoreSysConfigService;
use core\base\BaseAdminService; use core\base\BaseAdminService;
use core\exception\AdminException;
use think\facade\Cache; use think\facade\Cache;
use think\facade\Db; use think\facade\Db;
use think\facade\Log;
use Throwable; use Throwable;
/** /**
@ -180,4 +181,37 @@ class SystemService extends BaseAdminService
} }
return false; return false;
} }
/**
* 获取二维码
* @param $data
* @return array
*/
public function getQrcode($data)
{
$page = $data[ 'page' ];//'app/pages/index/diy_form';
$qrcode_data = [];
foreach ($data[ 'params' ] as $item) {
$qrcode_data[] = [
'key' => $item[ 'column_name' ],
'value' => $item[ 'column_value' ]
];
}
$dir = 'upload/' . $this->site_id . '/' . $data[ 'folder' ] . '_qrcode';
try {
// h5
//$h5_path = qrcode('', $page, $data, $this->site_id, $dir);
// 微信小程序
$weapp_path = qrcode('', $page, $qrcode_data, $this->site_id, $dir, 'weapp');
return [
'h5_path' => '',
'weapp_path' => $weapp_path
];
} catch (AdminException $e) {
Log::write('获取推广微信小程序二维码error' . $e->getMessage() . $e->getFile() . $e->getLine() . 'params:' . json_encode($data, 256));
throw new AdminException($e->getMessage() . $e->getFile() . $e->getLine() . 'params:' . json_encode($data, 256));
}
}
} }

View File

@ -0,0 +1,650 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\service\admin\upgrade;
use app\dict\sys\AppTypeDict;
use app\dict\sys\BackupDict;
use app\model\site\Site;
use app\model\sys\SysBackupRecords;
use app\service\admin\sys\SystemService;
use core\base\BaseAdminService;
use core\exception\AdminException;
use core\exception\CommonException;
use core\util\DbBackup;
use think\facade\Cache;
use think\facade\Db;
/**
* 备份记录表服务层
*/
class BackupRecordsService extends BaseAdminService
{
protected $upgrade_dir;
protected $root_path;
protected $cache_key = 'backup'; // 手动备份
protected $cache_restore_key = 'restore'; // 恢复
public function __construct()
{
parent::__construct();
$this->model = new SysBackupRecords();
$this->root_path = dirname(root_path()) . DIRECTORY_SEPARATOR;
$this->upgrade_dir = $this->root_path . 'upgrade' . DIRECTORY_SEPARATOR;
}
/**
* 添加备份记录
* @param array $data
* @return mixed
*/
public function add(array $data)
{
$data[ 'status' ] = BackupDict::STATUS_READY;
$data[ 'create_time' ] = time();
$res = $this->model->create($data);
return $res->id;
}
/**
* 编辑备份记录
* @param array $condition
* @param array $data
* @return true
*/
public function edit($condition, array $data)
{
$this->model->where($condition)->update($data);
return true;
}
/**
* 修改备注
* @param $params
* @return true
*/
public function modifyRemark($params)
{
return $this->edit([
[ 'id', '=', $params[ 'id' ] ]
], [ 'remark' => $params[ 'remark' ] ]);
}
/**
* 执行完成,更新备份记录的状态
* @param $backup_key
* @return void
*/
public function complete($backup_key)
{
$this->model->where([
[ 'backup_key', '=', $backup_key ],
])->update([
'status' => BackupDict::STATUS_COMPLETE,
'complete_time' => time()
]);
}
/**
* 执行失败,更新备份记录的状态
* @param $backup_key
* @return void
*/
public function failed($backup_key)
{
$info = $this->getInfo([
[ 'backup_key', '=', $backup_key ]
], 'id,backup_key');
if (!empty($info)) {
$this->del($info[ 'id' ]);
}
}
/**
* 删除备份记录
* @param $ids
* @return true
*/
public function del($ids)
{
$list = $this->model->field('id,backup_key')->where([ [ 'id', 'in', $ids ] ])->select()->toArray();
if (empty($list)) {
throw new AdminException('UPGRADE_RECORD_NOT_EXIST');
}
try {
Db::startTrans();
foreach ($list as $k => $v) {
// 删除备份文件
$upgrade_dir = project_path() . 'upgrade' . DIRECTORY_SEPARATOR . $v[ 'backup_key' ] . DIRECTORY_SEPARATOR;
if (is_dir($upgrade_dir)) {
del_target_dir($upgrade_dir, true);
}
}
$this->model->where([ [ 'id', 'in', $ids ] ])->delete();
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
throw new CommonException($e->getMessage());
}
}
/**
* 恢复前检测文件是否存在
* @param $id
* @return void
*/
public function checkDirExist($id)
{
$field = 'id, version, backup_key';
$info = $this->model->where([
[ 'id', '=', $id ],
[ 'status', '=', BackupDict::STATUS_COMPLETE ]
])->field($field)->append([ 'backup_dir', 'backup_code_dir', 'backup_sql_dir' ])->findOrEmpty()->toArray();
if (empty($info)) {
throw new AdminException('UPGRADE_RECORD_NOT_EXIST');
}
// 检测源码目录是否存在
if (!is_dir($info[ 'backup_code_dir' ])) {
throw new AdminException('UPGRADE_BACKUP_CODE_NOT_FOUND');
}
// 检测数据库目录是否存在
if (!is_dir($info[ 'backup_sql_dir' ])) {
throw new AdminException('UPGRADE_BACKUP_SQL_NOT_FOUND');
}
}
/**
* 检测目录权限
* @return void
*/
public function checkPermission()
{
$niucloud_dir = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR;
$admin_dir = $this->root_path . 'admin' . DIRECTORY_SEPARATOR;
$web_dir = $this->root_path . 'web' . DIRECTORY_SEPARATOR;
$wap_dir = $this->root_path . 'uni-app' . DIRECTORY_SEPARATOR;
if (!is_dir($admin_dir)) throw new CommonException('ADMIN_DIR_NOT_EXIST');
if (!is_dir($web_dir)) throw new CommonException('WEB_DIR_NOT_EXIST');
if (!is_dir($wap_dir)) throw new CommonException('UNIAPP_DIR_NOT_EXIST');
$data = [
// 目录检测
'dir' => [
// 要求可读权限
'is_readable' => [],
// 要求可写权限
'is_write' => []
]
];
$data[ 'dir' ][ 'is_readable' ][] = [ 'dir' => str_replace(project_path(), '', $niucloud_dir), 'status' => is_readable($niucloud_dir) ];
$data[ 'dir' ][ 'is_readable' ][] = [ 'dir' => str_replace(project_path(), '', $admin_dir), 'status' => is_readable($admin_dir) ];
$data[ 'dir' ][ 'is_readable' ][] = [ 'dir' => str_replace(project_path(), '', $web_dir), 'status' => is_readable($web_dir) ];
$data[ 'dir' ][ 'is_readable' ][] = [ 'dir' => str_replace(project_path(), '', $wap_dir), 'status' => is_readable($wap_dir) ];
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $niucloud_dir), 'status' => is_write($niucloud_dir) ];
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $admin_dir), 'status' => is_write($admin_dir) ];
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $web_dir), 'status' => is_write($web_dir) ];
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $wap_dir), 'status' => is_write($wap_dir) ];
// 检测全部目录及文件是否可读可写,忽略指定目录
// 忽略指定目录admin
$exclude_admin_dir = [ 'dist', 'node_modules' ];
$check_res = checkDirPermissions(project_path() . 'admin', [], $exclude_admin_dir);
// 忽略指定目录uni-app
$exclude_uniapp_dir = [ 'dist', 'node_modules' ];
$check_res = array_merge2($check_res, checkDirPermissions(project_path() . 'uni-app', [], $exclude_uniapp_dir));
// 忽略指定目录web
$exclude_web_dir = [ '.nuxt', '.output', 'dist', 'node_modules' ];
$check_res = array_merge2($check_res, checkDirPermissions(project_path() . 'web', [], $exclude_web_dir));
// 忽略指定目录niucloud
$exclude_niucloud_dir = [
'public' . DIRECTORY_SEPARATOR . 'admin',
'public' . DIRECTORY_SEPARATOR . 'wap',
'public' . DIRECTORY_SEPARATOR . 'web',
'public' . DIRECTORY_SEPARATOR . 'upload',
'public' . DIRECTORY_SEPARATOR . 'file',
'runtime',
'vendor'
];
$check_res = array_merge2($check_res, checkDirPermissions(project_path() . 'niucloud', [], $exclude_niucloud_dir));
if (!empty($check_res[ 'unreadable' ])) {
foreach ($check_res[ 'unreadable' ] as $item) {
$data[ 'dir' ][ 'is_readable' ][] = [ 'dir' => str_replace(project_path(), '', $item), 'status' => false ];
}
}
if (!empty($check_res[ 'not_writable' ])) {
foreach ($check_res[ 'not_writable' ] as $item) {
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $item), 'status' => false ];
}
}
$check_res = array_merge(
array_column($data[ 'dir' ][ 'is_readable' ], 'status'),
array_column($data[ 'dir' ][ 'is_write' ], 'status')
);
// 是否通过校验
$data[ 'is_pass' ] = !in_array(false, $check_res);
return $data;
}
/**
* 备份恢复
* @param $data
* @return array
*/
public function restore($data)
{
$field = 'id, version, backup_key';
$info = $this->model->where([
[ 'id', '=', $data[ 'id' ] ],
[ 'status', '=', BackupDict::STATUS_COMPLETE ]
])->field($field)->append([ 'backup_dir', 'backup_code_dir', 'backup_sql_dir' ])->findOrEmpty()->toArray();
if (empty($info)) {
throw new AdminException('UPGRADE_RECORD_NOT_EXIST');
}
// 恢复源码备份
if (!is_dir($info[ 'backup_code_dir' ])) {
throw new AdminException('UPGRADE_BACKUP_CODE_NOT_FOUND');
}
// 恢复数据库备份
if (!is_dir($info[ 'backup_sql_dir' ])) {
throw new AdminException('UPGRADE_BACKUP_SQL_NOT_FOUND');
}
$res = [ 'code' => 1, 'data' => [], 'msg' => '' ];
$cache_data = Cache::get($this->cache_restore_key);
if (!empty($cache_data)) {
$key = $cache_data[ 'key' ];
} else {
$key = uniqid();
}
try {
if ($data[ 'task' ] == '') {
$key = uniqid();
$res[ 'data' ] = [
'content' => '开始恢复备份',
'task' => 'backupCode'
];
$temp = [
'key' => $key,
'data' => [ $res[ 'data' ] ]
];
Cache::set($this->cache_key, null);
Cache::set($this->cache_restore_key, $temp);
// 添加恢复日志
$this->add([
'backup_key' => $key,
'content' => "自动备份",
'version' => $info[ 'version' ]
]);
} elseif ($data[ 'task' ] == 'backupCode') {
$res[ 'data' ] = [
'content' => '备份源码',
'task' => 'backupSql'
];
$temp = Cache::get($this->cache_restore_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_restore_key, $temp);
//备份源码
$this->backupCode($key);
} elseif ($data[ 'task' ] == 'backupSql') {
//备份数据库
$res[ 'data' ] = [
'content' => '备份数据库',
'task' => 'restoreCode'
];
$temp = Cache::get($this->cache_restore_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_restore_key, $temp);
$this->backupSql($key);
} elseif ($data[ 'task' ] == 'restoreCode') {
$res[ 'data' ] = [
'content' => '恢复源码备份',
'task' => 'restoreSql'
];
$temp = Cache::get($this->cache_restore_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_restore_key, $temp);
// 恢复源码备份
$root_path = dirname(root_path()) . DIRECTORY_SEPARATOR;
dir_copy($info[ 'backup_code_dir' ], rtrim($root_path, DIRECTORY_SEPARATOR));
} elseif ($data[ 'task' ] == 'restoreSql') {
$res[ 'data' ] = [
'content' => '恢复数据库备份',
'task' => 'restoreData'
];
$temp = Cache::get($this->cache_restore_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_restore_key, $temp);
// 恢复数据库备份
$db = new DbBackup($info[ 'backup_sql_dir' ]);
$db->restoreDatabase();
} elseif ($data[ 'task' ] == 'restoreData') {
$res[ 'data' ] = [
'content' => '恢复数据',
'task' => 'restoreComplete'
];
$temp = Cache::get($this->cache_restore_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_restore_key, $temp);
// 恢复数据
$site_model = new Site();
$site_model->where([
[ 'site_id', '<>', 0 ],
[ 'app_type', '=', AppTypeDict::ADMIN ]
])->update([ 'site_id' => 0 ]);
} elseif ($data[ 'task' ] == 'restoreComplete') {
$res[ 'data' ] = [
'content' => '备份恢复完成',
'task' => 'end'
];
// 修改备份记录状态
$this->edit([
[ 'backup_key', '=', Cache::get($this->cache_restore_key)[ 'key' ] ],
], [
'status' => BackupDict::STATUS_COMPLETE,
'complete_time' => time()
]);
Cache::set($this->cache_restore_key, null);
( new SystemService() )->clearCache(); // 清除缓存
}
return $res;
} catch (\Exception $e) {
$res[ 'data' ] = [
'content' => '备份恢复失败,稍后请手动恢复,备份文件路径:' . $info[ 'backup_dir' ] . ',失败原因:' . $e->getMessage() . $e->getFile() . $e->getLine(),
'task' => 'fail'
];
$fail_reason = [
'Message' => '失败原因:' . $e->getMessage(),
'File' => '文件:' . $e->getFile(),
'Line' => '代码行号:' . $e->getLine(),
'Trace' => $e->getTrace()
];
// 修改备份记录状态
$this->edit([
[ 'backup_key', '=', Cache::get($this->cache_restore_key)[ 'key' ] ],
], [
'fail_reason' => $fail_reason,
'status' => BackupDict::STATUS_FAIL,
'complete_time' => time()
]);
Cache::set($this->cache_restore_key, null);
return $res;
}
}
/**
* 手动备份
* @param $data
* @return array
*/
public function manualBackup($data)
{
$res = [ 'code' => 1, 'data' => [], 'msg' => '' ];
$key = uniqid();
$cache_data = Cache::get($this->cache_key);
if ($cache_data) {
$key = $cache_data[ 'key' ];
}
try {
if ($data[ 'task' ] == '') {
$key = uniqid();
$res[ 'data' ] = [
'content' => '开始备份',
'task' => 'backupCode'
];
$temp = [
'key' => $key,
'data' => [ $res[ 'data' ] ]
];
Cache::set($this->cache_key, null);
Cache::set($this->cache_key, $temp);
// 添加备份日志
$this->add([
'backup_key' => $key,
'content' => "手动备份",
'version' => "v" . config('version.version'),
]);
} elseif ($data[ 'task' ] == 'backupCode') {
$res[ 'data' ] = [
'content' => '备份源码',
'task' => 'backupSql'
];
$temp = Cache::get($this->cache_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_key, $temp);
//备份源码
$this->backupCode($key);
} elseif ($data[ 'task' ] == 'backupSql') {
//备份数据库
$res[ 'data' ] = [
'content' => '备份数据库',
'task' => 'backComplete'
];
$temp = Cache::get($this->cache_key);
$temp[ 'data' ][] = $res[ 'data' ];
Cache::set($this->cache_key, $temp);
$this->backupSql($key);
} elseif ($data[ 'task' ] == 'backComplete') {
$res[ 'data' ] = [
'content' => '备份完成',
'task' => 'end'
];
// 修改备份记录状态
$this->complete(Cache::get($this->cache_key)[ 'key' ]);
Cache::set($this->cache_key, null);
}
return $res;
} catch (\Exception $e) {
$res[ 'data' ] = [
'content' => '备份失败,稍后请重新手动备份,失败原因:' . $e->getMessage() . $e->getFile() . $e->getLine(),
'task' => 'fail'
];
// 修改备份记录状态
$this->failed(Cache::get($this->cache_key)[ 'key' ]);
Cache::set($this->cache_key, null);
return $res;
}
}
/**
* 获取正在进行的恢复任务
* @return mixed|null
*/
public function getRestoreTask()
{
$task_data = Cache::get($this->cache_restore_key) ?? [];
return $task_data;
}
/**
* 获取正在进行的备份任务
* @return mixed|null
*/
public function getBackupTask()
{
$task_data = Cache::get($this->cache_key) ?? [];
return $task_data;
}
/**
* 获取备份记录信息
* @param array $condition
* @param $field
* @return array
*/
public function getInfo(array $condition, $field = 'id, version, backup_key, content, status, fail_reason, create_time, complete_time')
{
return $this->model->field($field)->where($condition)->findOrEmpty()->toArray();
}
/**
* 备份记录列表
* @param $condition
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getList($condition = [], $field = 'id, version, backup_key, content, status, fail_reason, create_time, complete_time')
{
$order = "id desc";
return $this->model->where($condition)->field($field)->order($order)->select()->toArray();
}
/**
* 备份记录分页列表
* @param array $where
* @return array
*/
public function getPage(array $where = [])
{
$field = 'id, version, backup_key, content, remark, complete_time';
$order = "id desc";
$search_model = $this->model->where([
[ 'status', '=', BackupDict::STATUS_COMPLETE ],
[ 'content|version', 'like', '%' . $where[ 'content' ] . '%' ]
])->append([ 'backup_dir' ])->field($field)->order($order);
return $this->pageQuery($search_model);
}
/**
* 备份代码
* @param $backup_key
* @return void
*/
public function backupCode($backup_key)
{
$backup_dir = $this->upgrade_dir . $backup_key . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR;
// 创建目录
dir_mkdir($backup_dir);
// 备份admin
dir_copy($this->root_path . 'admin', $backup_dir . 'admin', exclude_dirs: [ '.vscode', 'node_modules', 'dist' ]);
// 备份uni-app
dir_copy($this->root_path . 'uni-app', $backup_dir . 'uni-app', exclude_dirs: [ 'node_modules', 'dist' ]);
// 备份web
dir_copy($this->root_path . 'web', $backup_dir . 'web', exclude_dirs: [ 'node_modules', '.nuxt', '.output', 'dist' ]);
// 备份niucloud全部代码
$niucloud_dir = $backup_dir . 'niucloud' . DIRECTORY_SEPARATOR;
dir_copy($this->root_path . 'niucloud', $niucloud_dir, exclude_dirs: [ 'runtime', 'upload' ]);
return true;
}
/**
* 备份数据库
* @param $backup_key
* @return void
*/
public function backupSql($backup_key)
{
$backup_dir = $this->upgrade_dir . $backup_key . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR;
// 创建目录
dir_mkdir($backup_dir);
$db = new DbBackup($backup_dir, 1024 * 1024 * 2);
$prefix = config('database.connections.' . config('database.default'))[ 'prefix' ];
// 不需要备份的表
$not_need_backup = [
"{$prefix}sys_schedule_log",
"{$prefix}sys_user_log",
"{$prefix}jobs",
"{$prefix}jobs_failed",
"{$prefix}sys_upgrade_records",
"{$prefix}sys_backup_records"
];
$db->setExcludeTables($not_need_backup)->backupDatabaseSegment();
return true;
}
}

View File

@ -11,9 +11,8 @@
namespace app\service\admin\upgrade; namespace app\service\admin\upgrade;
use app\dict\addon\AddonDict;
use app\service\admin\generator\GenerateService;
use core\util\DbBackup; use core\util\DbBackup;
use think\facade\Db;
/** /**
* 框架及插件升级备份 * 框架及插件升级备份
@ -31,37 +30,20 @@ class BackupService extends UpgradeService
// 创建目录 // 创建目录
dir_mkdir($backup_dir); dir_mkdir($backup_dir);
// 备份admin // 备份admin
dir_copy($this->root_path . 'admin', $backup_dir . 'admin', exclude_dirs: [ '.vscode', 'node_modules', 'dist' ]); dir_copy($this->root_path . 'admin', $backup_dir . 'admin', exclude_dirs: [ '.vscode', 'node_modules', 'dist' ]);
// 备份uni-app // 备份uni-app
dir_copy($this->root_path . 'uni-app', $backup_dir . 'uni-app', exclude_dirs: [ 'node_modules', 'dist' ]); dir_copy($this->root_path . 'uni-app', $backup_dir . 'uni-app', exclude_dirs: [ 'node_modules', 'dist' ]);
// 备份web
dir_copy($this->root_path . 'web', $backup_dir . 'web', exclude_dirs:[ 'node_modules', '.nuxt', '.output' ]);
// 备份niucloud // 备份web
dir_copy($this->root_path . 'web', $backup_dir . 'web', exclude_dirs: [ 'node_modules', '.nuxt', '.output', 'dist' ]);
// 备份niucloud全部代码
$niucloud_dir = $backup_dir . 'niucloud' . DIRECTORY_SEPARATOR; $niucloud_dir = $backup_dir . 'niucloud' . DIRECTORY_SEPARATOR;
if ($this->upgrade_task[ 'upgrade' ][ 'app_key' ] == AddonDict::FRAMEWORK_KEY) {
dir_copy($this->root_path . 'niucloud', $niucloud_dir, exclude_dirs:[ 'addon', 'config', 'public', 'vendor', 'runtime' ]); dir_copy($this->root_path . 'niucloud', $niucloud_dir, exclude_dirs: [ 'runtime', 'upload' ]);
// 备份版本文件
$version_file = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'version.php';
$to_version_file = $niucloud_dir . 'config' . DIRECTORY_SEPARATOR . 'version.php';
file_copy($version_file, $to_version_file);
} else {
$addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ];
$addon_dir = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR . 'addon' . DIRECTORY_SEPARATOR . $addon;
$to_addon_dir = $niucloud_dir . 'addon' . DIRECTORY_SEPARATOR . $addon;
dir_copy($addon_dir, $to_addon_dir);
}
// 备份前端文件
if (is_dir(public_path() . 'admin')) {
dir_copy(public_path() . 'admin', $niucloud_dir . 'public' . DIRECTORY_SEPARATOR . 'admin');
}
if (is_dir(public_path() . 'wap')) {
dir_copy(public_path() . 'wap', $niucloud_dir . 'public' . DIRECTORY_SEPARATOR . 'wap');
}
if (is_dir(public_path() . 'web')) {
dir_copy(public_path() . 'web', $niucloud_dir . 'public' . DIRECTORY_SEPARATOR . 'web');
}
return true; return true;
} }
@ -76,47 +58,21 @@ class BackupService extends UpgradeService
// 创建目录 // 创建目录
dir_mkdir($backup_dir); dir_mkdir($backup_dir);
$db = new DbBackup([ $db = new DbBackup($backup_dir, 1024 * 1024 * 2);
'path' => $backup_dir,//数据库备份路径
'part' => 1048576,//数据库备份卷大小
'compress' => 0,//数据库备份文件是否启用压缩 0不压缩 1 压缩
'level' => 9 //数据库备份文件压缩级别 1普通 4 一般 9最高
]);
$tables = [];
$prefix = config('database.connections.' . config('database.default'))[ 'prefix' ]; $prefix = config('database.connections.' . config('database.default'))[ 'prefix' ];
if ($this->upgrade_task[ 'upgrade' ][ 'app_key' ] == AddonDict::FRAMEWORK_KEY) {
// 不需要备份的表 // 不需要备份的表
$noot_need_backup = [ "{$prefix}sys_schedule_log", "{$prefix}sys_user_log", "{$prefix}jobs", "{$prefix}jobs_failed" ]; $not_need_backup = [
$sys_models = ( new GenerateService() )->getModels([ 'addon' => 'system' ]); "{$prefix}sys_schedule_log",
foreach ($sys_models as $model) { "{$prefix}sys_user_log",
$name = "\\$model"; "{$prefix}jobs",
$class = new $name(); "{$prefix}jobs_failed",
"{$prefix}sys_upgrade_records",
"{$prefix}sys_backup_records"
];
$db->setExcludeTables($not_need_backup)->backupDatabaseSegment();
if (!in_array($class->getTable(), $noot_need_backup)) {
$tables[] = $class->getTable();
}
}
} else {
$addon_models = ( new GenerateService() )->getModels([ 'addon' => $this->upgrade_task[ 'upgrade' ][ 'app_key' ] ]);
foreach ($addon_models as $model) {
try {
// 不需要备份的表
$noot_need_backup = [ "{$prefix}shop_stat", "{$prefix}shop_goods_stat", "{$prefix}shop_goods_browse" ];
$name = "\\$model";
$class = new $name();
if (!in_array($class->getTable(), $noot_need_backup)) {
$tables[] = $class->getTable();
}
} catch (\Exception $e) {
}
}
}
foreach ($tables as $table) {
$db->setFile()->backup($table);
}
return true; return true;
} }
} }

View File

@ -12,6 +12,8 @@
namespace app\service\admin\upgrade; namespace app\service\admin\upgrade;
use app\dict\sys\AppTypeDict;
use app\model\site\Site;
use core\util\DbBackup; use core\util\DbBackup;
/** /**
@ -24,7 +26,8 @@ class RestoreService extends UpgradeService
* 恢复代码备份 * 恢复代码备份
* @return true * @return true
*/ */
public function restoreCode() { public function restoreCode()
{
$backup_dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR; $backup_dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR;
if (is_dir($backup_dir)) { if (is_dir($backup_dir)) {
// 删除前端文件 // 删除前端文件
@ -40,20 +43,20 @@ class RestoreService extends UpgradeService
* 恢复数据库备份 * 恢复数据库备份
* @return true * @return true
*/ */
public function restoreSql() { public function restoreSql()
{
$backup_dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR; $backup_dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'backup' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR;
if (is_dir($backup_dir)) { if (is_dir($backup_dir)) {
$db = new DbBackup([ $db = new DbBackup($backup_dir);
'path' => $backup_dir //数据库备份路径 $db->restoreDatabase();
]);
$file_list = $db->fileList(); $site_model = new Site();
if (!empty($file_list)) { $site_model->where([
$db->setSqlMode(); [ 'site_id', '<>', 0 ],
foreach ($file_list as $file) { [ 'app_type', '=', AppTypeDict::ADMIN ]
$db->setFile($file)->import(0, $file['time']); ])->update([ 'site_id' => 0 ]);
}
}
} }
return true; return true;
} }
} }

View File

@ -0,0 +1,116 @@
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\service\admin\upgrade;
use app\dict\sys\UpgradeDict;
use app\model\sys\SysUpgradeRecords;
use core\base\BaseAdminService;
use think\facade\Log;
/**
* 升级记录表服务层
*/
class UpgradeRecordsService extends BaseAdminService
{
public function __construct()
{
parent::__construct();
$this->model = new SysUpgradeRecords();
}
/**
* 添加升级记录
* @param array $data
* @return mixed
*/
public function add(array $data)
{
$data[ 'create_time' ] = time();
$res = $this->model->create($data);
// 关联备份记录
( new BackupRecordsService() )->add([
'version' => $data[ 'current_version' ],
'backup_key' => $data[ 'upgrade_key' ],
'content' => '自动备份'
]);
return $res->id;
}
/**
* 编辑升级记录
* @param array $condition
* @param array $data
* @return true
*/
public function edit($condition, array $data)
{
$this->model->where($condition)->update($data);
return true;
}
/**
* 执行完成,更新升级记录状态,备份记录状态
* @param $upgrade_key
* @return void
*/
public function complete($upgrade_key)
{
// 记录升级日志
$this->edit([
[ 'upgrade_key', '=', $upgrade_key ]
], [
'status' => UpgradeDict::STATUS_COMPLETE,
'complete_time' => time()
]);
( new BackupRecordsService() )->complete($upgrade_key);
}
/**
* 执行失败,更新升级记录状态,备份记录状态
* @param $fail_reason
* @return void
*/
public function failed($upgrade_key)
{
$this->model->where([ [ 'upgrade_key', '=', $upgrade_key ] ])->delete();
( new BackupRecordsService() )->failed($upgrade_key);
}
/**
* 获取升级记录信息
* @param array $condition
* @param $field
* @return array
*/
public function getInfo(array $condition, $field = 'id, upgrade_key, app_key, name, content, prev_version, current_version, status, fail_reason, create_time, complete_time')
{
return $this->model->field($field)->where($condition)->findOrEmpty()->toArray();
}
/**
* 升级记录分页列表
* @param array $where
* @return array
*/
public function getPage(array $where = [])
{
$field = 'id, upgrade_key, app_key, name, content, prev_version, current_version, complete_time';
$order = "id desc";
$search_model = $this->model->where([
[ 'status', '=', UpgradeDict::STATUS_COMPLETE ],
[ 'name|content|current_version', 'like', '%' . $where[ 'name' ] . '%' ]
])->field($field)->order($order);
return $this->pageQuery($search_model);
}
}

View File

@ -12,6 +12,7 @@
namespace app\service\admin\upgrade; namespace app\service\admin\upgrade;
use app\dict\addon\AddonDict; use app\dict\addon\AddonDict;
use app\dict\sys\UpgradeDict;
use app\model\addon\Addon; use app\model\addon\Addon;
use app\service\admin\install\InstallSystemService; use app\service\admin\install\InstallSystemService;
use app\service\admin\sys\ConfigService; use app\service\admin\sys\ConfigService;
@ -22,14 +23,16 @@ use app\service\core\addon\CoreDependService;
use app\service\core\addon\WapTrait; use app\service\core\addon\WapTrait;
use app\service\core\channel\CoreH5Service; use app\service\core\channel\CoreH5Service;
use app\service\core\menu\CoreMenuService; use app\service\core\menu\CoreMenuService;
use app\service\core\niucloud\CoreCloudBuildService;
use app\service\core\niucloud\CoreModuleService; use app\service\core\niucloud\CoreModuleService;
use app\service\core\schedule\CoreScheduleInstallService; use app\service\core\schedule\CoreScheduleInstallService;
use core\base\BaseAdminService; use core\base\BaseAdminService;
use core\exception\CloudBuildException;
use core\exception\CommonException; use core\exception\CommonException;
use core\util\niucloud\BaseNiucloudClient; use core\util\niucloud\BaseNiucloudClient;
use think\facade\Cache; use think\facade\Cache;
use think\facade\Db; use think\facade\Db;
use function DI\string; use think\facade\Log;
/** /**
* 框架及插件升级 * 框架及插件升级
@ -59,6 +62,8 @@ class UpgradeService extends BaseAdminService
'handleUniapp' => [ 'step' => 'handleUniapp', 'title' => '处理uniapp' ], 'handleUniapp' => [ 'step' => 'handleUniapp', 'title' => '处理uniapp' ],
'refreshMenu' => [ 'step' => 'refreshMenu', 'title' => '刷新菜单' ], 'refreshMenu' => [ 'step' => 'refreshMenu', 'title' => '刷新菜单' ],
'installSchedule' => [ 'step' => 'installSchedule', 'title' => '安装计划任务' ], 'installSchedule' => [ 'step' => 'installSchedule', 'title' => '安装计划任务' ],
'cloudBuild' => [ 'step' => 'cloudBuild', 'title' => '开始云编译' ],
'gteCloudBuildLog' => [ 'step' => 'gteCloudBuildLog', 'title' => '' ],
'upgradeComplete' => [ 'step' => 'upgradeComplete', 'title' => '升级完成' ] 'upgradeComplete' => [ 'step' => 'upgradeComplete', 'title' => '升级完成' ]
]; ];
@ -76,7 +81,8 @@ class UpgradeService extends BaseAdminService
* @param string $addon * @param string $addon
* @return void * @return void
*/ */
public function upgradePreCheck(string $addon = '') { public function upgradePreCheck(string $addon = '')
{
$niucloud_dir = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR; $niucloud_dir = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR;
$admin_dir = $this->root_path . 'admin' . DIRECTORY_SEPARATOR; $admin_dir = $this->root_path . 'admin' . DIRECTORY_SEPARATOR;
$web_dir = $this->root_path . 'web' . DIRECTORY_SEPARATOR; $web_dir = $this->root_path . 'web' . DIRECTORY_SEPARATOR;
@ -106,10 +112,31 @@ class UpgradeService extends BaseAdminService
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $web_dir), 'status' => is_write($web_dir) ]; $data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $web_dir), 'status' => is_write($web_dir) ];
$data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $wap_dir), 'status' => is_write($wap_dir) ]; $data[ 'dir' ][ 'is_write' ][] = [ 'dir' => str_replace(project_path(), '', $wap_dir), 'status' => is_write($wap_dir) ];
// 校验niucloud/public下 wap web admin 目录及文件是否可读可写 // 检测全部目录及文件是否可读可写,忽略指定目录
$check_res = checkDirPermissions(public_path() . 'wap');
$check_res = array_merge2($check_res, checkDirPermissions(public_path() . 'admin')); // 忽略指定目录admin
$check_res = array_merge2($check_res, checkDirPermissions(public_path() . 'web')); $exclude_admin_dir = [ 'dist', 'node_modules' ];
$check_res = checkDirPermissions(project_path() . 'admin', [], $exclude_admin_dir);
// 忽略指定目录uni-app
$exclude_uniapp_dir = [ 'dist', 'node_modules' ];
$check_res = array_merge2($check_res, checkDirPermissions(project_path() . 'uni-app', [], $exclude_uniapp_dir));
// 忽略指定目录web
$exclude_web_dir = [ '.nuxt', '.output', 'dist', 'node_modules' ];
$check_res = array_merge2($check_res, checkDirPermissions(project_path() . 'web', [], $exclude_web_dir));
// 忽略指定目录niucloud
$exclude_niucloud_dir = [
'public' . DIRECTORY_SEPARATOR . 'admin',
'public' . DIRECTORY_SEPARATOR . 'wap',
'public' . DIRECTORY_SEPARATOR . 'web',
'public' . DIRECTORY_SEPARATOR . 'upload',
'public' . DIRECTORY_SEPARATOR . 'file',
'runtime',
'vendor'
];
$check_res = array_merge2($check_res, checkDirPermissions(project_path() . 'niucloud', [], $exclude_niucloud_dir));
if (!empty($check_res[ 'unreadable' ])) { if (!empty($check_res[ 'unreadable' ])) {
foreach ($check_res[ 'unreadable' ] as $item) { foreach ($check_res[ 'unreadable' ] as $item) {
@ -129,6 +156,7 @@ class UpgradeService extends BaseAdminService
// 是否通过校验 // 是否通过校验
$data[ 'is_pass' ] = !in_array(false, $check_res); $data[ 'is_pass' ] = !in_array(false, $check_res);
return $data; return $data;
} }
@ -137,10 +165,12 @@ class UpgradeService extends BaseAdminService
* @param $addon * @param $addon
* @return array * @return array
*/ */
public function upgrade(string $addon = '') { public function upgrade(string $addon = '')
{
if ($this->upgrade_task) throw new CommonException('UPGRADE_TASK_EXIST'); if ($this->upgrade_task) throw new CommonException('UPGRADE_TASK_EXIST');
$upgrade_content = $this->getUpgradeContent($addon); $upgrade_content = $this->getUpgradeContent($addon);
$upgrade_title = '框架';
$upgrade = [ $upgrade = [
'product_key' => BaseNiucloudClient::PRODUCT, 'product_key' => BaseNiucloudClient::PRODUCT,
@ -152,6 +182,7 @@ class UpgradeService extends BaseAdminService
} else { } else {
$upgrade[ 'app_key' ] = $addon; $upgrade[ 'app_key' ] = $addon;
$upgrade[ 'version' ] = ( new Addon() )->where([ [ 'key', '=', $addon ] ])->value('version'); $upgrade[ 'version' ] = ( new Addon() )->where([ [ 'key', '=', $addon ] ])->value('version');
$upgrade_title = ( new Addon() )->where([ [ 'key', '=', $addon ] ])->value('title');
// 判断框架版本是否低于插件支持版本 // 判断框架版本是否低于插件支持版本
$last_version = $upgrade_content[ 'version_list' ][ count($upgrade_content[ 'version_list' ]) - 1 ]; $last_version = $upgrade_content[ 'version_list' ][ count($upgrade_content[ 'version_list' ]) - 1 ];
@ -182,6 +213,17 @@ class UpgradeService extends BaseAdminService
'upgrade_content' => $upgrade_content 'upgrade_content' => $upgrade_content
]; ];
// 记录升级日志
( new UpgradeRecordsService() )->add([
'upgrade_key' => $upgrade_task[ 'key' ],
'app_key' => $upgrade[ 'app_key' ],
'name' => $upgrade_title,
'content' => "{$upgrade_title} 升级 v{$upgrade_content['version']} 到 v{$upgrade_content['upgrade_version']}版本",
'prev_version' => "v{$upgrade_content['version']}",
'current_version' => "v{$upgrade_content['upgrade_version']}",
'status' => UpgradeDict::STATUS_READY
]);
Cache::set($this->cache_key, $upgrade_task); Cache::set($this->cache_key, $upgrade_task);
return $upgrade_task; return $upgrade_task;
} catch (\Exception $e) { } catch (\Exception $e) {
@ -193,7 +235,8 @@ class UpgradeService extends BaseAdminService
* 执行升级 * 执行升级
* @return true * @return true
*/ */
public function execute() { public function execute()
{
if (!$this->upgrade_task) return true; if (!$this->upgrade_task) return true;
$steps = isset($this->upgrade_task[ 'steps' ]) ? array_keys($this->upgrade_task[ 'steps' ]) : array_keys($this->steps); $steps = isset($this->upgrade_task[ 'steps' ]) ? array_keys($this->upgrade_task[ 'steps' ]) : array_keys($this->steps);
@ -212,14 +255,39 @@ class UpgradeService extends BaseAdminService
$this->upgrade_task[ 'step' ] = $step; $this->upgrade_task[ 'step' ] = $step;
$this->upgrade_task[ 'params' ] = []; $this->upgrade_task[ 'params' ] = [];
$this->upgrade_task[ 'executed' ][] = $step; $this->upgrade_task[ 'executed' ][] = $step;
if (!empty($this->steps[ $step ][ 'title' ])) {
$this->upgrade_task[ 'log' ][] = $this->steps[ $step ][ 'title' ]; $this->upgrade_task[ 'log' ][] = $this->steps[ $step ][ 'title' ];
} }
}
if (!in_array($step, [ 'upgradeComplete', 'restoreComplete' ])) {
Cache::set($this->cache_key, $this->upgrade_task); Cache::set($this->cache_key, $this->upgrade_task);
} else {
$this->clearUpgradeTask(2);
}
} catch (CloudBuildException $e) {
if (strpos($e->getMessage(), '队列') !== false) {
throw new CloudBuildException($e->getMessage());
}
$this->upgrade_task[ 'step' ] = $step;
$this->upgrade_task[ 'error' ][] = '升级失败,失败原因:' . $e->getMessage() . $e->getFile() . $e->getLine();
$fail_reason = [
'Message' => '失败原因:' . $e->getMessage(),
'File' => '文件:' . $e->getFile(),
'Line' => '代码行号:' . $e->getLine(),
'Trace' => $e->getTrace()
];
$this->upgradeErrorHandle($fail_reason);
} catch (\Exception $e) { } catch (\Exception $e) {
$this->upgrade_task[ 'step' ] = $step; $this->upgrade_task[ 'step' ] = $step;
$this->upgrade_task[ 'error' ][] = '升级失败,失败原因:' . $e->getMessage() . $e->getFile() . $e->getLine(); $this->upgrade_task[ 'error' ][] = '升级失败,失败原因:' . $e->getMessage() . $e->getFile() . $e->getLine();
Cache::set($this->cache_key, $this->upgrade_task); $fail_reason = [
$this->upgradeErrorHandle(); 'Message' => '失败原因:' . $e->getMessage(),
'File' => '文件:' . $e->getFile(),
'Line' => '代码行号:' . $e->getLine(),
'Trace' => $e->getTrace()
];
$this->upgradeErrorHandle($fail_reason);
} }
return true; return true;
} else { } else {
@ -235,7 +303,8 @@ class UpgradeService extends BaseAdminService
* @param $step * @param $step
* @return true|null * @return true|null
*/ */
public function downloadFile(string $token, string $dir = '', int $index = -1, $step = 0, $length = 0) { public function downloadFile(string $token, string $dir = '', int $index = -1, $step = 0, $length = 0)
{
if (!$dir) { if (!$dir) {
$dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'download' . DIRECTORY_SEPARATOR; $dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'download' . DIRECTORY_SEPARATOR;
dir_mkdir($dir); dir_mkdir($dir);
@ -248,7 +317,8 @@ class UpgradeService extends BaseAdminService
* 备份源码 * 备份源码
* @return true * @return true
*/ */
public function backupCode() { public function backupCode()
{
( new BackupService() )->backupCode(); ( new BackupService() )->backupCode();
return true; return true;
} }
@ -257,7 +327,8 @@ class UpgradeService extends BaseAdminService
* 备份数据库 * 备份数据库
* @return true * @return true
*/ */
public function backupSql() { public function backupSql()
{
( new BackupService() )->backupSql(); ( new BackupService() )->backupSql();
return true; return true;
} }
@ -266,7 +337,8 @@ class UpgradeService extends BaseAdminService
* 覆盖更新升级的代码 * 覆盖更新升级的代码
* @return void * @return void
*/ */
public function coverCode($index = 0) { public function coverCode($index = 0)
{
$this->upgrade_task[ 'is_cover' ] = 1; $this->upgrade_task[ 'is_cover' ] = 1;
$addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ]; $addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ];
@ -333,7 +405,8 @@ class UpgradeService extends BaseAdminService
* @param string $version_no * @param string $version_no
* @return void * @return void
*/ */
public function installDepend(string $dir, array $change_files) { public function installDepend(string $dir, array $change_files)
{
$addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ]; $addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ];
$depend_service = new CoreDependService(); $depend_service = new CoreDependService();
@ -353,7 +426,7 @@ class UpgradeService extends BaseAdminService
$original = $depend_service->getComposerContent(); $original = $depend_service->getComposerContent();
$new = $depend_service->jsonFileToArray($dir . $composer); $new = $depend_service->jsonFileToArray($dir . $composer);
foreach ($new as $name => $value) { foreach ($new as $name => $value) {
$original[$name] = isset($original[$name]) && is_array($original[$name]) ? array_merge($original[$name], $new[$name]) : $new[$name]; $original[ $name ] = isset($original[ $name ]) && is_array($original[ $name ]) ? array_map('unserialize', array_unique(array_map('serialize', array_merge($original[ $name ], $new[ $name ])))) : $new[ $name ];
} }
$depend_service->writeArrayToJsonFile($original, $dir . $composer); $depend_service->writeArrayToJsonFile($original, $dir . $composer);
} }
@ -391,7 +464,8 @@ class UpgradeService extends BaseAdminService
* @param string $verson_no * @param string $verson_no
* @return true * @return true
*/ */
public function handleUniapp() { public function handleUniapp()
{
$code_dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'download' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR; $code_dir = $this->upgrade_dir . $this->upgrade_task[ 'key' ] . DIRECTORY_SEPARATOR . 'download' . DIRECTORY_SEPARATOR . 'code' . DIRECTORY_SEPARATOR;
$exclude_files = [ '.env.development', '.env.production', 'manifest.json' ]; $exclude_files = [ '.env.development', '.env.production', 'manifest.json' ];
dir_copy($code_dir . 'uni-app', $this->root_path . 'uni-app', exclude_files: $exclude_files); dir_copy($code_dir . 'uni-app', $this->root_path . 'uni-app', exclude_files: $exclude_files);
@ -441,7 +515,8 @@ class UpgradeService extends BaseAdminService
* @param string $sql_file * @param string $sql_file
* @return true * @return true
*/ */
private function executeSql(string $sql_file) { private function executeSql(string $sql_file)
{
$sql_content = file_get_contents($sql_file); $sql_content = file_get_contents($sql_file);
if (!empty($sql_content)) { if (!empty($sql_content)) {
@ -462,7 +537,8 @@ class UpgradeService extends BaseAdminService
* 刷新菜单 * 刷新菜单
* @return void * @return void
*/ */
public function refreshMenu() { public function refreshMenu()
{
if ($this->upgrade_task[ 'upgrade' ][ 'app_key' ] == AddonDict::FRAMEWORK_KEY) { if ($this->upgrade_task[ 'upgrade' ][ 'app_key' ] == AddonDict::FRAMEWORK_KEY) {
( new InstallSystemService() )->installMenu(); ( new InstallSystemService() )->installMenu();
} else { } else {
@ -475,7 +551,8 @@ class UpgradeService extends BaseAdminService
* 安装计划任务 * 安装计划任务
* @return true * @return true
*/ */
public function installSchedule() { public function installSchedule()
{
if ($this->upgrade_task[ 'upgrade' ][ 'app_key' ] == AddonDict::FRAMEWORK_KEY) { if ($this->upgrade_task[ 'upgrade' ][ 'app_key' ] == AddonDict::FRAMEWORK_KEY) {
( new CoreScheduleInstallService() )->installSystemSchedule(); ( new CoreScheduleInstallService() )->installSystemSchedule();
} else { } else {
@ -484,11 +561,59 @@ class UpgradeService extends BaseAdminService
return true; return true;
} }
/**
* 云编译
* @return void
*/
public function cloudBuild()
{
( new CoreCloudBuildService() )->cloudBuild();
}
/**
* 获取云编译日志
* @return void
*/
public function gteCloudBuildLog()
{
$log = ( new CoreCloudBuildService() )->getBuildLog();
if (empty($log)) return true;
foreach ($log[ 'data' ][ 0 ] as $item) {
if ($item[ 'code' ] == 0) {
$this->upgrade_task[ 'step' ] = 'gteCloudBuildLog';
$this->upgrade_task[ 'error' ][] = $item[ 'msg' ];
Cache::set($this->cache_key, $this->upgrade_task);
$fail_reason = [
'Message' => '失败原因 云编译错误:' . $item[ 'msg' ],
'File' => '',
'Line' => '',
'Trace' => ''
];
( new CoreCloudBuildService() )->clearTask();
$this->upgradeErrorHandle($fail_reason);
return true;
}
if (!in_array($item[ 'action' ], $this->upgrade_task[ 'log' ])) {
$this->upgrade_task[ 'log' ][] = $item[ 'action' ];
Cache::set($this->cache_key, $this->upgrade_task);
}
}
sleep(2);
return [];
}
/** /**
* 更新完成 * 更新完成
* @return void * @return void
*/ */
public function upgradeComplete() { public function upgradeComplete()
{
$addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ]; $addon = $this->upgrade_task[ 'upgrade' ][ 'app_key' ];
if ($addon != AddonDict::FRAMEWORK_KEY) { if ($addon != AddonDict::FRAMEWORK_KEY) {
$core_addon_service = new CoreAddonService(); $core_addon_service = new CoreAddonService();
@ -496,7 +621,9 @@ class UpgradeService extends BaseAdminService
$install_data[ 'icon' ] = 'addon/' . $addon . '/icon.png'; $install_data[ 'icon' ] = 'addon/' . $addon . '/icon.png';
$core_addon_service->set($install_data); $core_addon_service->set($install_data);
} }
$this->clearUpgradeTask(5); // 执行完成,更新升级记录状态,备份记录状态
( new UpgradeRecordsService() )->complete($this->upgrade_task[ 'key' ]);
$this->clearUpgradeTask(2);
return true; return true;
} }
@ -504,7 +631,8 @@ class UpgradeService extends BaseAdminService
* 升级出错之后的处理 * 升级出错之后的处理
* @return true|void * @return true|void
*/ */
public function upgradeErrorHandle() { public function upgradeErrorHandle($fail_reason = [])
{
$steps = []; $steps = [];
$steps[ $this->upgrade_task[ 'step' ] ] = []; $steps[ $this->upgrade_task[ 'step' ] ] = [];
@ -515,13 +643,19 @@ class UpgradeService extends BaseAdminService
$steps[ 'restoreComplete' ] = [ 'step' => 'restoreComplete', 'title' => '备份恢复完成' ]; $steps[ 'restoreComplete' ] = [ 'step' => 'restoreComplete', 'title' => '备份恢复完成' ];
$this->upgrade_task[ 'steps' ] = $steps; $this->upgrade_task[ 'steps' ] = $steps;
Cache::set($this->cache_key, $this->upgrade_task); Cache::set($this->cache_key, $this->upgrade_task);
Log::write('升级出错之后的处理:'.json_encode($fail_reason));
// 执行失败,更新升级记录状态,备份记录状态
( new UpgradeRecordsService() )->failed($this->upgrade_task[ 'key' ]);
} }
/** /**
* 恢复源码 * 恢复源码
* @return void * @return void
*/ */
public function restoreCode() { public function restoreCode()
{
try { try {
( new RestoreService() )->restoreCode(); ( new RestoreService() )->restoreCode();
return true; return true;
@ -537,7 +671,8 @@ class UpgradeService extends BaseAdminService
* 恢复数据库 * 恢复数据库
* @return void * @return void
*/ */
public function restoreSql() { public function restoreSql()
{
try { try {
( new RestoreService() )->restoreSql(); ( new RestoreService() )->restoreSql();
return true; return true;
@ -549,8 +684,9 @@ class UpgradeService extends BaseAdminService
} }
} }
public function restoreComplete() { public function restoreComplete()
$this->clearUpgradeTask(5); {
$this->clearUpgradeTask(2);
return true; return true;
} }
@ -560,7 +696,8 @@ class UpgradeService extends BaseAdminService
* @return array|\core\util\niucloud\Response|object|\Psr\Http\Message\ResponseInterface * @return array|\core\util\niucloud\Response|object|\Psr\Http\Message\ResponseInterface
* @throws \GuzzleHttp\Exception\GuzzleException * @throws \GuzzleHttp\Exception\GuzzleException
*/ */
public function getUpgradeContent(string $addon = '') { public function getUpgradeContent(string $addon = '')
{
$upgrade = [ $upgrade = [
'product_key' => BaseNiucloudClient::PRODUCT 'product_key' => BaseNiucloudClient::PRODUCT
]; ];
@ -579,7 +716,8 @@ class UpgradeService extends BaseAdminService
* 获取正在进行的升级任务 * 获取正在进行的升级任务
* @return mixed|null * @return mixed|null
*/ */
public function getUpgradeTask() { public function getUpgradeTask()
{
return $this->upgrade_task; return $this->upgrade_task;
} }
@ -587,7 +725,8 @@ class UpgradeService extends BaseAdminService
* 清除升级任务 * 清除升级任务
* @return true * @return true
*/ */
public function clearUpgradeTask(int $delayed = 0) { public function clearUpgradeTask(int $delayed = 0)
{
if ($delayed) { if ($delayed) {
Cache::set($this->cache_key, $this->upgrade_task, $delayed); Cache::set($this->cache_key, $this->upgrade_task, $delayed);
} else { } else {
@ -605,4 +744,30 @@ class UpgradeService extends BaseAdminService
{ {
return root_path() . 'addon' . DIRECTORY_SEPARATOR . $addon . DIRECTORY_SEPARATOR . 'package' . DIRECTORY_SEPARATOR; return root_path() . 'addon' . DIRECTORY_SEPARATOR . $addon . DIRECTORY_SEPARATOR . 'package' . DIRECTORY_SEPARATOR;
} }
/**
* 用户操作
* @param $operate
* @return void
*/
public function operate($operate)
{
if (!$this->upgrade_task) return true;
switch ($operate) {
case 'local':
$this->upgrade_task[ 'step' ] = 'gteCloudBuildLog';
Cache::set($this->cache_key, $this->upgrade_task);
break;
case 'rollback':
$fail_reason = [
'Message' => '失败原因:一键云编译队列任务过多',
'File' => '',
'Line' => '',
'Trace' => ''
];
$this->upgradeErrorHandle($fail_reason);
break;
}
}
} }

View File

@ -77,6 +77,13 @@ class VerifierService extends BaseAdminService
return $data; return $data;
} }
public function getDetail($id)
{
return $this->model->with(['member' => function($query){
$query->field('member_id, nickname, mobile, headimg');
}])->field('')->findOrEmpty($id)->toArray();
}
/** /**
* 添加核销员 * 添加核销员
* @param array $data * @param array $data
@ -88,7 +95,7 @@ class VerifierService extends BaseAdminService
if ($member->isEmpty()) throw new CommonException('MEMBER_NOT_EXIST'); if ($member->isEmpty()) throw new CommonException('MEMBER_NOT_EXIST');
$model = $this->model->where([ ['site_id', '=', $this->site_id], ['member_id', '=', $data['member_id'] ] ])->findOrEmpty(); $model = $this->model->where([ ['site_id', '=', $this->site_id], ['member_id', '=', $data['member_id'] ] ])->findOrEmpty();
if (!$model->isEmpty()) return $model->id; if (!$model->isEmpty()) throw new CommonException('VERIFIER_EXIST');
$data['create_time'] = time(); $data['create_time'] = time();
$data['site_id'] = $this->site_id; $data['site_id'] = $this->site_id;
@ -96,6 +103,16 @@ class VerifierService extends BaseAdminService
return $res->id; return $res->id;
} }
/**
* 编辑核销员
* @param array $data
* @return mixed
*/
public function edit($id, $data)
{
$this->model->where([ ['site_id', '=', $this->site_id], ['id', '=',$id] ])->update($data);
}
/** /**
* 删除核销员 * 删除核销员
* @param int $id * @param int $id

View File

@ -33,7 +33,8 @@ class VerifyService extends BaseAdminService
* @return array * @return array
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
*/ */
public function getPage(array $where = []) { public function getPage(array $where = [])
{
$search_model = $this->model->where([ [ 'site_id', '=', $this->site_id ] ])->withSearch([ 'code', 'type', 'create_time', 'verifier_member_id' ], $where) $search_model = $this->model->where([ [ 'site_id', '=', $this->site_id ] ])->withSearch([ 'code', 'type', 'create_time', 'verifier_member_id' ], $where)
->with([ 'member' => function($query) { ->with([ 'member' => function($query) {
$query->field('member_id, nickname, mobile, headimg'); $query->field('member_id, nickname, mobile, headimg');
@ -47,7 +48,8 @@ class VerifyService extends BaseAdminService
* @param string $verify_code * @param string $verify_code
* @return array * @return array
*/ */
public function getDetail(string $verify_code) { public function getDetail(string $verify_code)
{
$info = $this->model->where([ $info = $this->model->where([
[ 'site_id', '=', $this->site_id ], [ 'site_id', '=', $this->site_id ],
[ 'code', '=', $verify_code ] [ 'code', '=', $verify_code ]

View File

@ -123,7 +123,10 @@ class WeappConfigService extends BaseAdminService
$data['privacy_ver'] = 1; $data['privacy_ver'] = 1;
CoreOplatformService::setPrivacySetting($this->site_id, $data); CoreOplatformService::setPrivacySetting($this->site_id, $data);
// 提交小程序 // 提交小程序
try {
(new WeappVersionService())->siteWeappCommit(); (new WeappVersionService())->siteWeappCommit();
} catch (\Exception $e) {
}
} }
} }

View File

@ -52,7 +52,7 @@ class WeappVersionService extends BaseAdminService
$site_group = (new SiteGroup())->field("group_id, group_name, group_desc, create_time, update_time, app")->order('create_time asc')->select()->toArray(); $site_group = (new SiteGroup())->field("group_id, group_name, group_desc, create_time, update_time, app")->order('create_time asc')->select()->toArray();
if (empty($site_group)) throw new CommonException('PLEASE_ADD_FIRST_SITE_GROUP'); if (empty($site_group)) throw new CommonException('PLEASE_ADD_FIRST_SITE_GROUP');
$site_group_id = $data['site_group_id'] ?? $site_group[0]['group_id']; $site_group_id = isset($data['site_group_id']) && !empty($data['site_group_id']) ? $data['site_group_id'] : $site_group[0]['group_id'];
$base_url = $data['base_url'] ?? cache_remember('base_url', function (){ $base_url = $data['base_url'] ?? cache_remember('base_url', function (){
return (string)url('/', [], '', true); return (string)url('/', [], '', true);
}); });
@ -89,10 +89,29 @@ class WeappVersionService extends BaseAdminService
]); ]);
// 获取小程序版本提交结果 // 获取小程序版本提交结果
GetVersionUploadResult::dispatch(['task_key' => $upload_res['key']], secs: 10); GetVersionUploadResult::dispatch(['task_key' => $upload_res['key'], 'is_all' => $data['is_all'] ?? 1], secs: 10);
return $res->id; return $res->id;
} }
/**
* 获取小程序提交记录
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getSiteGroupCommitRecord($where = []) {
$field = 'group_id, group_name';
$search_model = (new SiteGroup())->withSearch([ 'keywords' ], $where)->field($field)->order('create_time desc');
$site_group = $this->pageQuery($search_model);
if (!empty($site_group['data'])) {
foreach ($site_group['data'] as $key => $item) {
$site_group['data'][$key]['commit_record'] = $this->model->where([ ['site_group_id', '=', $item['group_id'] ] ])->order('id desc')->field('id, user_version, user_desc, status, fail_reason, create_time, update_time, template_id')->append(['status_name'])->findOrEmpty()->toArray();
}
}
return $site_group;
}
/** /**
* 获取最后一次提交记录 * 获取最后一次提交记录
* @return WxOplatfromWeappVersion|array|mixed|\think\Model * @return WxOplatfromWeappVersion|array|mixed|\think\Model
@ -106,10 +125,9 @@ class WeappVersionService extends BaseAdminService
* @return array * @return array
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
*/ */
public function getPage() { public function getPage($data = []) {
$search_model = $this->model->field('*')->append(['status_name']) $search_model = $this->model->field('*')->append(['status_name'])->withSearch([ 'site_group_id' ], $data)
->order('id desc') ->order('id desc');
->with('site_group');
return $this->pageQuery($search_model); return $this->pageQuery($search_model);
} }
@ -118,21 +136,22 @@ class WeappVersionService extends BaseAdminService
* @param string $task_key * @param string $task_key
* @return void * @return void
*/ */
public static function getVersionUploadResult(string $task_key) { public static function getVersionUploadResult(string $task_key, $is_all = 1) {
$build_log = (new CoreWeappCloudService())->getWeappCompileLog($task_key); $build_log = (new CoreWeappCloudService())->getWeappCompileLog($task_key);
if (isset($build_log['data']) && isset($build_log['data'][0]) && is_array($build_log['data'][0])) { if (isset($build_log['data']) && isset($build_log['data'][0]) && is_array($build_log['data'][0])) {
$last = end($build_log['data'][0]); $last = end($build_log['data'][0]);
if ($last['code'] == 0) { if ($last['code'] == 0) {
(new WxOplatfromWeappVersion())->update(['status' => CloudDict::APPLET_UPLOAD_FAIL, 'fail_reason' => $last['msg'] ?? '', 'update_time' => time() ], ['task_key' => $task_key]); (new WxOplatfromWeappVersion())->update(['status' => CloudDict::APPLET_UPLOAD_FAIL, 'fail_reason' => $last['msg'] ?? '', 'update_time' => time() ], ['task_key' => $task_key]);
VersionUploadSuccess::dispatch(['task_key' => $task_key, 'is_all' => $is_all]);
return true; return true;
} }
if ($last['percent'] == 100) { if ($last['percent'] == 100) {
(new WxOplatfromWeappVersion())->update(['status' => CloudDict::APPLET_UPLOAD_SUCCESS, 'update_time' => time() ], ['task_key' => $task_key]); (new WxOplatfromWeappVersion())->update(['status' => CloudDict::APPLET_UPLOAD_SUCCESS, 'update_time' => time() ], ['task_key' => $task_key]);
VersionUploadSuccess::dispatch(['task_key' => $task_key]); VersionUploadSuccess::dispatch(['task_key' => $task_key, 'is_all' => $is_all]);
return true; return true;
} }
GetVersionUploadResult::dispatch(['task_key' => $task_key], secs: 10); GetVersionUploadResult::dispatch(['task_key' => $task_key, 'is_all' => $is_all], secs: 10);
} }
} }
@ -141,7 +160,7 @@ class WeappVersionService extends BaseAdminService
* @param $task * @param $task
* @return void * @return void
*/ */
public static function uploadSuccess(string $task_key) { public static function uploadSuccess(string $task_key, $is_all = 1) {
$version = (new WxOplatfromWeappVersion())->where(['task_key' => $task_key])->findOrEmpty(); $version = (new WxOplatfromWeappVersion())->where(['task_key' => $task_key])->findOrEmpty();
if ($version->isEmpty()) return true; if ($version->isEmpty()) return true;
@ -176,7 +195,7 @@ class WeappVersionService extends BaseAdminService
} }
$site_group = (new SiteGroup())->where([ ['group_id', '>', $version['site_group_id'] ] ])->order('group_id asc')->findOrEmpty(); $site_group = (new SiteGroup())->where([ ['group_id', '>', $version['site_group_id'] ] ])->order('group_id asc')->findOrEmpty();
if (!$site_group->isEmpty()) { if (!$site_group->isEmpty() && $is_all == 1) {
WeappCommit::dispatch(['data' => ['site_group_id' => $site_group['group_id'], 'base_url' => Cache::get('base_url') ] ]); WeappCommit::dispatch(['data' => ['site_group_id' => $site_group['group_id'], 'base_url' => Cache::get('base_url') ] ]);
} }
} }

View File

@ -13,10 +13,8 @@ namespace app\service\api\diy;
use app\dict\diy\PagesDict; use app\dict\diy\PagesDict;
use app\dict\diy\TemplateDict; use app\dict\diy\TemplateDict;
use app\dict\sys\FileDict;
use app\model\diy\Diy; use app\model\diy\Diy;
use app\model\diy\DiyTheme; use app\model\diy\DiyTheme;
use app\service\core\diy\CoreDiyService;
use app\service\core\site\CoreSiteService; use app\service\core\site\CoreSiteService;
use core\base\BaseApiService; use core\base\BaseApiService;
@ -173,11 +171,13 @@ class DiyService extends BaseApiService
continue; continue;
} }
$addon_theme = array_values(array_filter(event('ThemeColor', [ 'key' => $value[ 'key' ] ])))[ 0 ] ?? []; $addon_theme = array_values(array_filter(event('ThemeColor', [ 'key' => $value[ 'key' ] ])))[ 0 ] ?? [];
$data[$value['key']]['title'] = $theme_data[$value['key']]['title'] ?? (!empty($addon_theme) ? $addon_theme['theme_color'][0][ 'title' ] : ''); if (!empty($addon_theme) && !empty($addon_theme[ 'theme_color' ])) {
$data[$value['key']]['theme'] = $theme_data[$value['key']]['theme'] ?? (!empty($addon_theme) ? $addon_theme['theme_color'][0][ 'theme' ] : ''); $data[ $value[ 'key' ] ][ 'title' ] = $theme_data[ $value[ 'key' ] ][ 'title' ] ?? $addon_theme[ 'theme_color' ][ 0 ][ 'title' ];
$data[ $value[ 'key' ] ][ 'theme' ] = $theme_data[ $value[ 'key' ] ][ 'theme' ] ?? $addon_theme[ 'theme_color' ][ 0 ][ 'theme' ];
$data[ $value[ 'key' ] ][ 'new_theme' ] = $theme_data[ $value[ 'key' ] ][ 'new_theme' ] ?? ''; $data[ $value[ 'key' ] ][ 'new_theme' ] = $theme_data[ $value[ 'key' ] ][ 'new_theme' ] ?? '';
} }
if (count($site_addon[ 'apps' ]) > 1) {// 应用数量大于1时展示系统主题色设置只有一个应用时不展示系统主题色设置 }
if (empty($data) || count($site_addon[ 'apps' ]) > 1) {// 应用数量大于1时展示系统主题色设置只有一个应用时不展示系统主题色设置
$data = array_merge($app_theme, $data); $data = array_merge($app_theme, $data);
} }
return $data; return $data;

View File

@ -220,7 +220,7 @@ class AreaService extends BaseApiService
'formatted_addresses' => $address_data[ 'formatted_addresses' ] 'formatted_addresses' => $address_data[ 'formatted_addresses' ]
]; ];
} else { } else {
throw new ApiException($res[ 'message' ]); throw new ApiException('请检查地图配置:'.$res[ 'message' ]);
} }
} else { } else {

View File

@ -22,7 +22,6 @@ use core\base\BaseApiService;
class VerifyService extends BaseApiService class VerifyService extends BaseApiService
{ {
/** /**
* 获取核销码(对应业务调用) * 获取核销码(对应业务调用)
* @param $type * @param $type
@ -49,7 +48,7 @@ class VerifyService extends BaseApiService
*/ */
public function getInfoByCode($code) public function getInfoByCode($code)
{ {
return ( new CoreVerifyService() )->getInfoByCode($this->site_id, $code); return ( new CoreVerifyService() )->getInfoByCode($this->site_id, $this->member_id,$code);
} }
/** /**

View File

@ -35,7 +35,10 @@ class CoreAddonCloudService extends CoreCloudBaseService
$package_dir = $temp_dir . 'package' . DIRECTORY_SEPARATOR; $package_dir = $temp_dir . 'package' . DIRECTORY_SEPARATOR;
dir_mkdir($package_dir); dir_mkdir($package_dir);
$compile = (new CoreAddonService())->getAddonConfig($addon)['compile'] ?? [];
$addon_config = (new CoreAddonService())->getAddonConfig($addon);
$compile = $addon_config['compile'] ?? [];
$custom_port = $addon_config['port']?? [];
$need_build = false; $need_build = false;
// 拷贝composer文件 // 拷贝composer文件
@ -60,6 +63,19 @@ class CoreAddonCloudService extends CoreCloudBaseService
$need_build = true; $need_build = true;
} }
// 自定义端口
if (!empty($custom_port)) {
$addon_path = $this->addonPath($addon);
foreach ($custom_port as $port) {
if (is_dir($addon_path . $port[ 'name' ])) {
dir_copy($addon_path . $port[ 'name' ], $package_dir . $port[ 'name' ]);
$json_path = $package_dir . $port[ 'name' ] . DIRECTORY_SEPARATOR . 'info.json';
file_put_contents($json_path, json_encode($port));
}
}
$need_build = true;
}
if ($need_build) { if ($need_build) {
// 将临时目录下文件生成压缩包 // 将临时目录下文件生成压缩包
$zip_file = $temp_dir . DIRECTORY_SEPARATOR . 'build.zip'; $zip_file = $temp_dir . DIRECTORY_SEPARATOR . 'build.zip';

View File

@ -370,6 +370,7 @@ class CoreAddonDevelopService extends CoreAddonBaseService
if (empty($image)) return true; if (empty($image)) return true;
if (check_file_is_remote($image)) { if (check_file_is_remote($image)) {
try { try {
downloadImage($image,$file); // 将云存储的图片下载到本地
(new CoreFetchService())->setRootPath($dir)->setRename($name)->image($image, 0, FileDict::LOCAL); (new CoreFetchService())->setRootPath($dir)->setRename($name)->image($image, 0, FileDict::LOCAL);
} catch ( UploadFileException $e ) { } catch ( UploadFileException $e ) {
return true; return true;

View File

@ -49,7 +49,7 @@ class CoreDiyService extends BaseCoreService
$addon_theme = array_values(array_filter(event('ThemeColor', [ 'key' => $value[ 'key' ] ])))[ 0 ] ?? []; $addon_theme = array_values(array_filter(event('ThemeColor', [ 'key' => $value[ 'key' ] ])))[ 0 ] ?? [];
if (empty($addon_theme)) continue; if (empty($addon_theme)) continue;
foreach ($addon_theme['theme_color'] as $k => $v){ foreach ($addon_theme[ 'theme_color' ] ?? [] as $k => $v) {
$data[] = [ $data[] = [
'type' => 'app', 'type' => 'app',
'addon' => $value[ 'key' ], 'addon' => $value[ 'key' ],

View File

@ -17,6 +17,7 @@ use app\service\core\addon\CoreAddonBaseService;
use app\service\core\addon\CoreAddonDevelopDownloadService; use app\service\core\addon\CoreAddonDevelopDownloadService;
use app\service\core\addon\WapTrait; use app\service\core\addon\WapTrait;
use core\base\BaseCoreService; use core\base\BaseCoreService;
use core\exception\CloudBuildException;
use core\exception\CommonException; use core\exception\CommonException;
use core\util\niucloud\BaseNiucloudClient; use core\util\niucloud\BaseNiucloudClient;
use core\util\niucloud\CloudService; use core\util\niucloud\CloudService;
@ -49,7 +50,8 @@ class CoreCloudBuildService extends BaseCoreService
* 编译前环境检测 * 编译前环境检测
* @return array|array[] * @return array|array[]
*/ */
public function buildPreCheck() { public function buildPreCheck()
{
$niucloud_dir = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR; $niucloud_dir = $this->root_path . 'niucloud' . DIRECTORY_SEPARATOR;
$admin_dir = $this->root_path . 'admin' . DIRECTORY_SEPARATOR; $admin_dir = $this->root_path . 'admin' . DIRECTORY_SEPARATOR;
$web_dir = $this->root_path . 'web' . DIRECTORY_SEPARATOR; $web_dir = $this->root_path . 'web' . DIRECTORY_SEPARATOR;
@ -113,7 +115,8 @@ class CoreCloudBuildService extends BaseCoreService
* @param $addon * @param $addon
* @return void * @return void
*/ */
public function cloudBuild() { public function cloudBuild()
{
if ($this->build_task) throw new CommonException('CLOUD_BUILD_TASK_EXIST'); if ($this->build_task) throw new CommonException('CLOUD_BUILD_TASK_EXIST');
$action_token = ( new CoreModuleService() )->getActionToken('cloudbuild', [ 'data' => [ 'product_key' => BaseNiucloudClient::PRODUCT ] ]); $action_token = ( new CoreModuleService() )->getActionToken('cloudbuild', [ 'data' => [ 'product_key' => BaseNiucloudClient::PRODUCT ] ]);
@ -164,7 +167,7 @@ class CoreCloudBuildService extends BaseCoreService
], ],
'timeout' => 300.0 'timeout' => 300.0
]); ]);
if (isset($response['code']) && $response['code'] == 0) throw new CommonException($response['msg']); if (isset($response[ 'code' ]) && $response[ 'code' ] == 0) throw new CloudBuildException($response[ 'msg' ]);
$this->build_task = [ $this->build_task = [
'task_key' => $task_key, 'task_key' => $task_key,
@ -175,12 +178,14 @@ class CoreCloudBuildService extends BaseCoreService
return $this->build_task; return $this->build_task;
} }
private function handleUniapp(string $dir) { private function handleUniapp(string $dir)
{
$addon = ( new Addon() )->where([ [ 'status', '=', AddonDict::ON ] ])->value('key', ''); $addon = ( new Addon() )->where([ [ 'status', '=', AddonDict::ON ] ])->value('key', '');
$this->compileDiyComponentsCode($dir . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR, $addon); $this->compileDiyComponentsCode($dir . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR, $addon);
} }
private function handleCustomPort(string $package_dir) { private function handleCustomPort(string $package_dir)
{
$addons = get_site_addons(); $addons = get_site_addons();
foreach ($addons as $addon) { foreach ($addons as $addon) {
@ -202,7 +207,8 @@ class CoreCloudBuildService extends BaseCoreService
* 获取编译任务 * 获取编译任务
* @return mixed * @return mixed
*/ */
public function getBuildTask() { public function getBuildTask()
{
return $this->build_task; return $this->build_task;
} }
@ -210,7 +216,8 @@ class CoreCloudBuildService extends BaseCoreService
* 获取编译执行日志 * 获取编译执行日志
* @return void * @return void
*/ */
public function getBuildLog() { public function getBuildLog()
{
if (!$this->build_task) return; if (!$this->build_task) return;
$query = [ $query = [
@ -233,7 +240,8 @@ class CoreCloudBuildService extends BaseCoreService
* @param array $log * @param array $log
* @return array * @return array
*/ */
public function buildSuccess(array $log) { public function buildSuccess(array $log)
{
try { try {
$query = [ $query = [
'authorize_code' => $this->auth_code, 'authorize_code' => $this->auth_code,
@ -309,7 +317,8 @@ class CoreCloudBuildService extends BaseCoreService
* 清除任务 * 清除任务
* @return void * @return void
*/ */
public function clearTask() { public function clearTask()
{
if (!$this->build_task) return; if (!$this->build_task) return;
$temp_dir = runtime_path() . 'backup' . DIRECTORY_SEPARATOR . 'cloud_build' . DIRECTORY_SEPARATOR . $this->build_task[ 'task_key' ] . DIRECTORY_SEPARATOR;; $temp_dir = runtime_path() . 'backup' . DIRECTORY_SEPARATOR . 'cloud_build' . DIRECTORY_SEPARATOR . $this->build_task[ 'task_key' ] . DIRECTORY_SEPARATOR;;
@del_target_dir($temp_dir, true); @del_target_dir($temp_dir, true);

View File

@ -122,4 +122,14 @@ class CoreModuleService extends BaseNiucloudClient
public function getFrameworkVersionList() { public function getFrameworkVersionList() {
return $this->httpGet('store/framework/version', ['product_key' => self::PRODUCT])['data'] ?? false; return $this->httpGet('store/framework/version', ['product_key' => self::PRODUCT])['data'] ?? false;
} }
/**
* 获取应用/插件的版本更新记录
* @return false|mixed
* @throws GuzzleException
*/
public function getAppVersionList($app_key)
{
return $this->httpGet('store/app_version/list', [ 'product_key' => self::PRODUCT, 'app_key' => $app_key ])[ 'data' ] ?? false;
}
} }

View File

@ -277,7 +277,7 @@ class CorePayService extends BaseCoreService
] ]
); );
if (env('queue.state', true)) { if (env('queue.state', true)) {
PayReturnTo::dispatch([ 'site_id' => $site_id, 'out_trade_no' => $out_trade_no ], secs: 15); PayReturnTo::dispatch([ 'site_id' => $site_id, 'out_trade_no' => $out_trade_no ], secs: 60);
} }
} }
return $pay_result; return $pay_result;

View File

@ -71,78 +71,11 @@ class CoreTransferSceneService extends BaseCoreService
$config = $this->getWechatTransferSceneConfig($site_id); $config = $this->getWechatTransferSceneConfig($site_id);
//查询业务和场景的对应关系表 //查询业务和场景的对应关系表
// $trade_scene_event_array = [
// 'shop_fenxiao' => [
// 'name' => '分销',
// 'scene' => TransferDict::XJYX,
// 'perception' => '',
// 'infos' => [
// '活动名称' => '分销佣金',
// '奖励说明' => '分销佣金奖励'
// ]
// ]
// ];
$trade_scene_event_array = event('GetWechatTransferTradeScene', []); $trade_scene_event_array = event('GetWechatTransferTradeScene', []);
// [
// 'xjyx' => [
// 'name' => '现金营销',
// 'scene_id' => 1001,
// 'user_recv_perception' => [//收款感知
// '活动奖励',
// '现金奖励',
// ],
// 'transfer_scene_report_infos' => [//报备背景信息
// '活动名称',
// '奖励说明'
// ],
// 'trade_scene_data' => [
// 'shop_fenxiao' => [
// 'name' => '分销',
// 'scene' => TransferDict::XJYX,
// 'infos' => [
// '活动名称' => '分销佣金',
// '奖励说明' => '分销佣金奖励'
// ],
// 'perception' => '活动奖励'
// ]
// ]
// ],
// 'qypf' => [
// 'name' => '企业赔付',
// 'scene_id' => 1002,
// 'user_recv_perception' => [
// '退款',
// '商家赔付',
// ],
// 'transfer_scene_report_infos' => [
// '赔付原因',
// ]
// ],
// 'yjbc' => [
// 'name' => '佣金报酬',
// 'scene_id' => 1005,
// 'user_recv_perception' => [
// '劳务报酬',
// '报销款',
// '企业补贴',
// '开工利是'
// ],
// 'transfer_scene_report_infos' => [
// '岗位类型',
// '报酬说明'
// ]
// ],
//
// ];
$trade_scene_column = (new TransferScene())->where(['site_id' => $site_id])->column('*', 'type' ); $trade_scene_column = (new TransferScene())->where(['site_id' => $site_id])->column('*', 'type' );
$trade_scene_list = []; $trade_scene_list = [];
foreach($trade_scene_event_array as $trade_scene_item){ foreach($trade_scene_event_array as $trade_scene_item){
foreach($trade_scene_item as $trade_scene_key => $trade_scene_item_item){ foreach($trade_scene_item as $trade_scene_key => $trade_scene_item_item){
// $trade_scene_select_data = $trade_scene_item_item;
// foreach($trade_scene_column as $trade_scene_column_item){
// if($trade_scene_column_item['type'] == )
// }
$trade_scene_select_data = $trade_scene_column[$trade_scene_key] ?? $trade_scene_item_item; $trade_scene_select_data = $trade_scene_column[$trade_scene_key] ?? $trade_scene_item_item;
$trade_scene_select_data = array_merge($trade_scene_item_item, $trade_scene_select_data); $trade_scene_select_data = array_merge($trade_scene_item_item, $trade_scene_select_data);
if(!isset($trade_scene_list[$trade_scene_item_item['scene']])) $trade_scene_list[$trade_scene_item_item['scene']] = []; if(!isset($trade_scene_list[$trade_scene_item_item['scene']])) $trade_scene_list[$trade_scene_item_item['scene']] = [];
@ -153,14 +86,8 @@ class CoreTransferSceneService extends BaseCoreService
foreach($list as $key => &$v){ foreach($list as $key => &$v){
$v['scene_id'] = $config[$key] ?? ''; $v['scene_id'] = $config[$key] ?? '';
// $item_transfer_scene_report_infos = $v['transfer_scene_report_infos'] ?? [];
$trade_scene_data = $trade_scene_list[$key] ?? []; $trade_scene_data = $trade_scene_list[$key] ?? [];
$v['trade_scene_data'] = $trade_scene_data; $v['trade_scene_data'] = $trade_scene_data;
// foreach($item_transfer_scene_report_infos as $item_k => $item_v){
//
// }
// $trade_scene_list = $trade_scene_list[$key] ?? [];
} }
//然后根据支持的业务来完善业务场景备注 //然后根据支持的业务来完善业务场景备注

View File

@ -55,7 +55,6 @@ class CoreSiteService extends BaseCoreService
[ 'site_id', '=', $site_id ], [ 'site_id', '=', $site_id ],
]; ];
$info = $this->model->where($where)->field('site_id, site_name, front_end_name, front_end_logo,front_end_icon, app_type, keywords, logo, icon, `desc`, status, latitude, longitude, province_id, city_id, district_id, address, full_address, phone, business_hours, create_time, expire_time, group_id, app, addons, site_domain')->append([ 'status_name' ])->findOrEmpty()->toArray(); $info = $this->model->where($where)->field('site_id, site_name, front_end_name, front_end_logo,front_end_icon, app_type, keywords, logo, icon, `desc`, status, latitude, longitude, province_id, city_id, district_id, address, full_address, phone, business_hours, create_time, expire_time, group_id, app, addons, site_domain')->append([ 'status_name' ])->findOrEmpty()->toArray();
// dump($info);die;
if (!empty($info)) { if (!empty($info)) {
$site_addons = ( new CoreSiteService() )->getAddonKeysBySiteId((int) $site_id); $site_addons = ( new CoreSiteService() )->getAddonKeysBySiteId((int) $site_id);
$info[ 'apps' ] = ( new Addon() )->where([ [ 'key', 'in', $site_addons ], [ 'type', '=', AddonDict::APP ] ])->field('key,title,desc,icon,type,support_app')->select()->toArray(); $info[ 'apps' ] = ( new Addon() )->where([ [ 'key', 'in', $site_addons ], [ 'type', '=', AddonDict::APP ] ])->field('key,title,desc,icon,type,support_app')->select()->toArray();
@ -161,7 +160,7 @@ class CoreSiteService extends BaseCoreService
} }
//在查询站点所拥有的应用插件,两者结合 //在查询站点所拥有的应用插件,两者结合
$site_addon_keys = is_array($site_info[ 'addons' ]) ? $site_info[ 'addons' ] : []; $site_addon_keys = is_array($site_info[ 'addons' ]) ? $site_info[ 'addons' ] : [];
return array_merge($group_addon_keys ?? [], $site_addon_keys); return array_unique(array_merge($group_addon_keys ?? [], $site_addon_keys));
}, },
self::$cache_tag_name . $site_id self::$cache_tag_name . $site_id
); );

View File

@ -60,7 +60,7 @@ class CoreAttachmentService extends BaseCoreService
); );
$user = $this->model->where($where)->findOrEmpty(); $user = $this->model->where($where)->findOrEmpty();
if ($user->isEmpty()) if ($user->isEmpty())
throw new AdminException('USER_NOT_EXIST'); throw new AdminException('ATTACHMENT_NOE_EXIST');
return $user; return $user;
} }

View File

@ -75,12 +75,25 @@ class CoreVerifyService extends BaseCoreService
* @param string $verify_code * @param string $verify_code
* @return array * @return array
*/ */
public function getInfoByCode($site_id, string $verify_code) public function getInfoByCode($site_id, string $member_id, $verify_code)
{ {
//获取核销码数据 //获取核销码数据
$value = $this->getCodeData($verify_code); $value = $this->getCodeData($verify_code);
//检测站点数据 //检测站点数据
if ($value[ 'site_id' ] != $site_id) throw new CommonException('VERIFY_CODE_EXPIRED');//核销码已过期 if ($value[ 'site_id' ] != $site_id) throw new CommonException('VERIFY_CODE_EXPIRED');//核销码已过期
$data = event('VerifyCheck', $value);
if (!empty($data)) {
$value = end($data);
}
// 检测核销员身份,是否有核销权限
$verifier = ( new Verifier() )->where([ [ 'member_id', '=', $member_id ], [ 'site_id', '=', $site_id ] ])->field('id,verify_type')->findOrEmpty()->toArray();
if (!empty($verifier)) {
if (!in_array($value[ 'type' ], $verifier[ 'verify_type' ])) {
throw new CommonException('VERIFIER_NOT_AUTH');
}
}
return $value; return $value;
} }
@ -117,7 +130,6 @@ class CoreVerifyService extends BaseCoreService
//是核销码失效 //是核销码失效
$this->clearCode($verify_code); $this->clearCode($verify_code);
return true; return true;
} }

View File

@ -104,6 +104,9 @@ class CoreWeappDeliveryService extends BaseCoreService
Log::write('发货信息录入接口,参数打印:' . json_encode($data)); Log::write('发货信息录入接口,参数打印:' . json_encode($data));
//微信订单录入有时差 延时3秒执行发货通知
sleep(3);
$api = CoreWeappService::appApiClient($site_id); $api = CoreWeappService::appApiClient($site_id);
$result = $api->postJson('wxa/sec/order/upload_shipping_info', $data)->toArray(); $result = $api->postJson('wxa/sec/order/upload_shipping_info', $data)->toArray();
@ -152,6 +155,9 @@ class CoreWeappDeliveryService extends BaseCoreService
Log::write('确认收货提醒接口,参数打印:' . json_encode($data)); Log::write('确认收货提醒接口,参数打印:' . json_encode($data));
//微信订单录入有时差 延时3秒执行发货通知
sleep(3);
$api = CoreWeappService::appApiClient($site_id); $api = CoreWeappService::appApiClient($site_id);
$result = $api->postJson('wxa/sec/order/notify_confirm_receive', $data)->toArray(); $result = $api->postJson('wxa/sec/order/notify_confirm_receive', $data)->toArray();

View File

@ -111,7 +111,7 @@ class CoreWeappService extends BaseCoreService
]); ]);
if ($response->isFailed()) { if ($response->isFailed()) {
// 出错了,处理异常 // 出错了,处理异常
throw new CommonException('WECHAT_MINI_PROGRAM_CODE_GENERATION_FAILED'); throw new CommonException('微信小程序码生成失败errcode:' . $response[ 'errcode' ] . 'errmsg:' . $response[ 'errmsg' ]);
} }
$response->saveAs($filepath); $response->saveAs($filepath);
return $filepath; return $filepath;

View File

@ -425,6 +425,8 @@ class Upgrade
} }
} }
} }
try {
if (!empty($data)) { if (!empty($data)) {
$diy_theme_model = new DiyTheme(); $diy_theme_model = new DiyTheme();
foreach ($data as $k => &$v) { foreach ($data as $k => &$v) {
@ -440,6 +442,9 @@ class Upgrade
} }
$diy_theme_model->insertAll($data); $diy_theme_model->insertAll($data);
} }
} catch (\Exception $e) {
}
return true; return true;
} }

View File

@ -0,0 +1,40 @@
ALTER TABLE `pay_transfer` CHANGE COLUMN `extra` `extra` VARCHAR (1000) NOT NULL DEFAULT '' COMMENT '扩展信息';
DROP TABLE IF EXISTS `sys_backup_records`;
CREATE TABLE `sys_backup_records`
(
`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '备份版本号',
`backup_key` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '备份标识',
`content` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '备份内容',
`status` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '状态',
`fail_reason` LONGTEXT DEFAULT NULL COMMENT '失败原因',
`remark` VARCHAR(500) NOT NULL DEFAULT '' COMMENT '备注',
`create_time` INT(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
`complete_time` INT(11) NOT NULL DEFAULT 0 COMMENT '完成时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci COMMENT='备份记录表';
DROP TABLE IF EXISTS `sys_upgrade_records`;
CREATE TABLE `sys_upgrade_records`
(
`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`upgrade_key` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '升级标识',
`app_key` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '插件标识',
`name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '升级名称',
`content` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '升级内容',
`prev_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '前一版本',
`current_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '当前版本',
`status` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '状态',
`fail_reason` LONGTEXT DEFAULT NULL COMMENT '失败原因',
`create_time` INT(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
`complete_time` INT(11) NOT NULL DEFAULT 0 COMMENT '完成时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci COMMENT='升级记录表';
ALTER TABLE `pay` MODIFY COLUMN `money` DECIMAL (10, 2) NOT NULL DEFAULT 0.00 COMMENT '支付金额';
ALTER TABLE `jobs` MODIFY COLUMN `queue` VARCHAR (255) NOT NULL DEFAULT '';
ALTER TABLE `diy_form_submit_config` MODIFY COLUMN `tips_type` VARCHAR (255) NOT NULL DEFAULT '' COMMENT '提示内容类型default默认提示diy自定义提示';

View File

@ -1,6 +1,6 @@
<?php <?php
return [ return [
'version' => '1.0.1', 'version' => '1.0.2',
'code' => '202503080001' 'code' => '202504180001'
]; ];

View File

@ -0,0 +1,18 @@
<?php
namespace core\exception;
use RuntimeException;
use Throwable;
/**
* 平台管理端错误异常处理类
*/
class CloudBuildException extends RuntimeException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}

View File

@ -493,7 +493,6 @@ class Wechatpay extends BasePay
'_action' => 'refund', '_action' => 'refund',
'transaction_id' => $out_trade_no, 'transaction_id' => $out_trade_no,
'out_refund_no' => $refund_no, 'out_refund_no' => $refund_no,
''
]; ];
$result = Pay::wechat()->query($order); $result = Pay::wechat()->query($order);
if (empty($result)) if (empty($result))

View File

@ -1,532 +1,147 @@
<?php <?php
namespace core\util; namespace core\util;
use think\facade\Db; use think\facade\Db;
class DbBackup class DbBackup
{ {
/** private $backupPath;
* 文件指针 private $maxFileSize;
* @var resource private $currentFileIndex = 1;
*/ private $currentFile;
private $fp; private $currentFileSize = 0;
/** private $tableOffset = [];
* 备份文件信息 part - 卷号name - 文件名 private $excludeTables = [];
* @var array
*/
private $file;
/**
* 当前打开文件大小
* @var integer
*/
private $size = 0;
/** public function __construct($backupPath, $maxFileSize = 1024 * 1024, $excludeTables = [])
* 数据库配置
* @var integer
*/
private $dbconfig = array();
/**
* 备份配置
* @var integer
*/
private $config = array(
// 数据库备份路径
'path' => './backup/',
// 数据库备份卷大小
'part' => 20971520,
// 数据库备份文件是否启用压缩 0不压缩 1 压缩
'compress' => 0,
// 数据库备份文件压缩级别 1普通 4 一般 9最高
'level' => 9,
);
/**
* 数据库备份构造方法
* @param array $file 备份或还原的文件信息
* @param array $config 备份配置信息
*/
public function __construct($config = [])
{ {
$this->config = is_array($config) && !empty($config) ? array_merge($this->config, $config) : $this->config; $this->backupPath = $backupPath;
//初始化文件名 $this->maxFileSize = $maxFileSize;
$this->setFile(); $this->excludeTables = $excludeTables;
//初始化数据库连接参数 if (!is_dir($this->backupPath)) {
$this->setDbConn(); mkdir($this->backupPath, 0777, true);
//检查文件是否可写
if (!$this->checkPath($this->config['path'])) {
throw new \Exception("The current directory is not writable");
} }
$this->currentFile = $this->backupPath . '/backup_' . $this->currentFileIndex . '.sql';
} }
/** public function setExcludeTables($tables) {
* 设置脚本运行超时时间 $this->excludeTables = $tables;
* 0表示不限制,支持连贯操作
*/
public function setTimeout($time = null)
{
if (!is_null($time)) {
set_time_limit($time) || ini_set("max_execution_time", $time);
}
return $this; return $this;
} }
/** public function backupDatabaseSegment($limit = 1000)
* 设置数据库连接必备参数
* @param array $dbconfig 数据库连接配置信息
* @return object
*/
public function setDbConn($dbconfig = [])
{ {
if (empty($dbconfig)) { $tables = $this->getAllTables();
$this->dbconfig = config('database.connections.'.config('database.default')); foreach ($tables as $table) {
} else { if (in_array($table, $this->excludeTables)) {
$this->dbconfig = $dbconfig; continue;
} }
return $this; if (!isset($this->tableOffset[$table])) {
$this->tableOffset[$table] = 0;
$this->backupTableStructure($table);
} }
while (true) {
/** $data = Db::table($table)->limit($this->tableOffset[$table], $limit)->select()->toArray();
* 设置备份文件名 if (empty($data)) {
*
* @param Array $file 文件名字
* @return object
*/
public function setFile($file = null)
{
if (is_null($file)) {
$this->file = ['name' => date('Ymd-His'), 'part' => 1];
} else {
if (!array_key_exists("name", $file) && !array_key_exists("part", $file)) {
$this->file = $file['1'];
} else {
$this->file = $file;
}
}
return $this;
}
/**
* 数据库表列表
*
* @param null $table
* @param int $type
* @return array
*/
public function dataList($table = null, $type = 1)
{
if (is_null($table)) {
$list = Db::query("SHOW TABLE STATUS");
} else {
if ($type) {
$list = Db::query("SHOW FULL COLUMNS FROM {$table}");
} else {
$list = Db::query("show columns from {$table}");
}
}
return array_map('array_change_key_case', $list);
}
/**
* 数据库备份文件列表
*
* @return array
*/
public function fileList()
{
if (!is_dir($this->config['path'])) {
mkdir($this->config['path'], 0755, true);
}
$path = realpath($this->config['path']);
$flag = \FilesystemIterator::KEY_AS_FILENAME;
$glob = new \FilesystemIterator($path, $flag);
$list = array();
foreach ($glob as $name => $file) {
if (preg_match('/^\\d{8,8}-\\d{6,6}-\\d+\\.sql(?:\\.gz)?$/', $name)) {
$name1 = $name;
$name = sscanf($name, '%4s%2s%2s-%2s%2s%2s-%d');
$date = "{$name[0]}-{$name[1]}-{$name[2]}";
$time = "{$name[3]}:{$name[4]}:{$name[5]}";
$part = $name[6];
if (isset($list["{$date} {$time}"])) {
$info = $list["{$date} {$time}"];
$info['part'] = max($info['part'], $part);
$info['size'] = $info['size'] + $file->getSize();
} else {
$info['part'] = $part;
$info['size'] = $file->getSize();
}
$extension = strtoupper(pathinfo($file->getFilename(), PATHINFO_EXTENSION));
$info['name'] = $name1;
$info['compress'] = $extension === 'SQL' ? '-' : $extension;
$info['time'] = strtotime("{$date} {$time}");
$list["{$date} {$time}"] = $info;
}
}
return $list;
}
/**
* 获取文件名称
*
* @param string $type
* @param int $time
* @return array|false|mixed|string
* @throws \Exception
*/
public function getFile($type = '', $time = 0)
{
//
if (!is_numeric($time)) {
throw new \Exception("{$time} Illegal data type");
}
switch ($type) {
case 'time':
$name = date('Ymd-His', $time).'-*.sql*';
$path = realpath($this->config['path']).DIRECTORY_SEPARATOR.$name;
return glob($path);
break; break;
case 'timeverif':
$name = date('Ymd-His', $time).'-*.sql*';
$path = realpath($this->config['path']).DIRECTORY_SEPARATOR.$name;
$files = glob($path);
$list = array();
foreach ($files as $name) {
$basename = basename($name);
$match = sscanf($basename, '%4s%2s%2s-%2s%2s%2s-%d');
$gz = preg_match('/^\\d{8,8}-\\d{6,6}-\\d+\\.sql.gz$/', $basename);
$list[$match[6]] = array($match[6], $name, $gz);
} }
$last = end($list); $this->backupTableData($table, $data);
if (count($list) === $last[0]) { $this->tableOffset[$table] += $limit;
return $list;
} else {
throw new \Exception("File {$files['0']} may be damaged, please check again");
} }
break;
case 'pathname':
return "{$this->config['path']}{$this->file['name']}-{$this->file['part']}.sql";
break;
case 'filename':
return "{$this->file['name']}-{$this->file['part']}.sql";
break;
case 'filepath':
return $this->config['path'];
break;
default:
$arr = array(
'pathname' => "{$this->config['path']}{$this->file['name']}-{$this->file['part']}.sql",
'filename' => "{$this->file['name']}-{$this->file['part']}.sql",
'filepath' => $this->config['path'], 'file' => $this->file
);
return $arr;
} }
} }
/** private function backupTableStructure($table)
* 删除备份文件
*
* @param $time
* @return mixed
* @throws \Exception
*/
public function delFile($time)
{ {
if ($time) { $dropTableQuery = "DROP TABLE IF EXISTS `$table`;\n";
$file = $this->getFile('time', $time); $dropLength = strlen($dropTableQuery);
array_map("unlink", $file); if ($this->currentFileSize + $dropLength > $this->maxFileSize) {
$file = $this->getFile('time', $time); $this->startNewFile();
if (count($file)) {
throw new \Exception("File ".implode('##', $file)." deleted failed");
} else {
return $time;
} }
} else { $fp = fopen($this->currentFile, 'a');
throw new \Exception("{$time} Time parameter is incorrect"); fwrite($fp, $dropTableQuery);
$this->currentFileSize += $dropLength;
$createTableQuery = $this->getTableCreateQuery($table);
$query = $createTableQuery . ";\n";
$queryLength = strlen($query);
if ($this->currentFileSize + $queryLength > $this->maxFileSize) {
$this->startNewFile();
$fp = fopen($this->currentFile, 'a');
} }
fwrite($fp, $query);
fclose($fp);
$this->currentFileSize += $queryLength;
} }
/** private function backupTableData($table, $data)
* 下载备份
*
* @param string $time
* @param integer $part
* @return array|mixed|string
*/
public function downloadFile($time, $part = 0)
{ {
$file = $this->getFile('time', $time); $columns = implode(', ', array_map(function ($column){
$fileName = $file[$part]; return "`{$column}`";
if (file_exists($fileName)) { }, array_keys($data[0])));
ob_end_clean(); $valueSets = [];
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); foreach ($data as $row) {
header('Content-Description: File Transfer'); $values = [];
header('Content-Type: application/octet-stream'); foreach ($row as $value) {
header('Content-Length: '.filesize($fileName)); if (is_int($value)) {
header('Content-Disposition: attachment; filename='.basename($fileName)); $values[] = (string)$value; // 整数类型直接转换为字符串
readfile($fileName); } elseif (is_float($value)) {
$values[] = (string)$value; // 浮点数类型直接转换为字符串
} elseif (is_bool($value)) {
$values[] = $value ? '1' : '0'; // 布尔类型转换为 1 或 0
} elseif (is_null($value)) {
$values[] = 'NULL'; // 空值使用 NULL
} else { } else {
throw new \Exception("{$time} File is abnormal"); $values[] = Db::getPdo()->quote($value); // 其他类型使用 quote 方法处理
} }
} }
$valueSets[] = '(' . implode(', ', $values) . ')';
}
$insertQuery = "INSERT INTO `$table` ($columns) VALUES\n" . implode(",\n", $valueSets) . ";\n";
$queryLength = strlen($insertQuery);
if ($this->currentFileSize + $queryLength > $this->maxFileSize) {
$this->startNewFile();
}
$fp = fopen($this->currentFile, 'a');
fwrite($fp, $insertQuery);
fclose($fp);
$this->currentFileSize += $queryLength;
}
public function setSqlMode() { private function getAllTables()
Db::query("SET sql_mode = '';");
return true;
}
/**
* 导入表
*
* @param $start
* @param $time
* @return array|false|int
* @throws Exception
*/
public function import($start, $time)
{ {
//还原数据 $tables = Db::query('SHOW TABLES');
$this->file = $this->getFile('time', $time); $tableNames = [];
if ($this->config['compress']) { foreach ($tables as $table) {
$gz = gzopen($this->file[0], 'r'); $tableNames[] = current($table);
$size = 0;
} else {
$size = filesize($this->file[0]);
$gz = fopen($this->file[0], 'r');
} }
$sql = ''; return $tableNames;
if ($start) {
$this->config['compress'] ? gzseek($gz, $start) : fseek($gz, $start);
}
for ($i = 0; $i < 1000; $i++) {
$sql .= $this->config['compress'] ? gzgets($gz) : fgets($gz);
if (preg_match('/.*;$/', trim($sql))) {
if (false !== Db::query($sql)) {
$start += strlen($sql);
} else {
return false;
}
$sql = '';
} elseif ($this->config['compress'] ? gzeof($gz) : feof($gz)) {
return 0;
}
}
return array($start, $size);
} }
/** private function getTableCreateQuery($tableName)
* 写入初始数据
*
* @return boolean true - 写入成功false - 写入失败
*/
public function backupInit()
{ {
$sql = "-- -----------------------------\n"; $result = Db::query("SHOW CREATE TABLE $tableName");
$sql .= "-- Think MySQL Data Transfer \n"; return $result[0]['Create Table'];
$sql .= "-- \n";
$sql .= "-- Host : ".$this->dbconfig['hostname']."\n";
$sql .= "-- Port : ".$this->dbconfig['hostport']."\n";
$sql .= "-- Database : ".$this->dbconfig['database']."\n";
$sql .= "-- \n";
$sql .= "-- Part : #{$this->file['part']}\n";
$sql .= "-- Date : ".date("Y-m-d H:i:s")."\n";
$sql .= "-- -----------------------------\n\n";
$sql .= "SET FOREIGN_KEY_CHECKS = 0;\n\n";
return $this->write($sql);
} }
/** private function startNewFile()
* 查询单条
* @param $sql
* @return array|mixed
*/
public function selectOne($sql) {
$result = Db::query($sql);
return $result[0] ?? [];
}
/**
* 备份表结构
*
* @param string $table 表名
* @param integer $start 起始行数
* @return boolean false - 备份失败
*/
public function backup($table, $start = 0)
{ {
// 备份表结构 $this->currentFileIndex++;
if (0 == $start) { $this->currentFile = $this->backupPath . '/backup_' . $this->currentFileIndex . '.sql';
$result = $this->selectOne("SHOW CREATE TABLE `{$table}`"); $this->currentFileSize = 0;
$sql = "\n";
$sql .= "-- -----------------------------\n";
$sql .= "-- Table structure for `{$table}`\n";
$sql .= "-- -----------------------------\n";
$sql .= "DROP TABLE IF EXISTS `{$table}`;\n";
$sql .= trim($result['Create Table']).";\n\n";
if (false === $this->write($sql)) {
return false;
}
}
//数据总数
$result = $this->selectOne("SELECT COUNT(*) AS count FROM `{$table}`");
$count = $result['count'];
//备份表数据
if ($count) {
//写入数据注释
if (0 == $start) {
$sql = "-- -----------------------------\n";
$sql .= "-- Records of `{$table}`\n";
$sql .= "-- -----------------------------\n";
$this->write($sql);
}
//备份数据记录
$result = Db::query("SELECT * FROM `{$table}` LIMIT {$start}, 1000");
$sql = "INSERT INTO `{$table}` VALUES\n";
foreach ($result as $index => $row) {
$row = array_map(function ($item){
return is_string($item) ? addslashes($item) : $item;
}, $row);
$sql .= "('".str_replace(array("\r", "\n"), array('\\r', '\\n'),
implode("', '", $row))."')";
$sql .= $index < (count($result) - 1) ? ",\n" : ";\n";
} }
if (false === $this->write($sql)) { public function restoreDatabase()
return false;
}
//还有更多数据
if ($count > $start + 1000) {
return $this->backup($table, $start + 1000);
}
}
//备份下一表
return true;
}
/**
* 优化表
*
* @param String $tables 表名
* @return String $tables
*/
public function optimize($tables = null)
{ {
if ($tables) { $backupFiles = glob($this->backupPath . '/backup_*.sql');
if (is_array($tables)) { foreach ($backupFiles as $backupFile) {
$tables = implode('`,`', $tables); $sql = file_get_contents($backupFile);
$list = db ::select("OPTIMIZE TABLE `{$tables}`"); $queries = explode(";\n", $sql);
} else { foreach ($queries as $query) {
$list = Db::query("OPTIMIZE TABLE `{$tables}`"); if (trim($query) !== '') {
} Db::execute($query);
if ($list) {
return $tables;
} else {
throw new \Exception("data sheet'{$tables}'Repair mistakes please try again!");
}
} else {
throw new \Exception("Please specify the table to be repaired!");
} }
} }
/**
* 修复表
*
* @param String $tables 表名
* @return String $tables
*/
public function repair($tables = null)
{
if ($tables) {
if (is_array($tables)) {
$tables = implode('`,`', $tables);
$list = Db::query("REPAIR TABLE `{$tables}`");
} else {
$list = Db::query("REPAIR TABLE `{$tables}`");
}
if ($list) {
return $list;
} else {
throw new \Exception("data sheet'{$tables}'Repair mistakes please try again!");
}
} else {
throw new \Exception("Please specify the table to be repaired!");
} }
} }
/**
* 写入SQL语句
*
* @param string $sql 要写入的SQL语句
* @return boolean true - 写入成功false - 写入失败!
*/
private function write($sql)
{
$size = strlen($sql);
//由于压缩原因无法计算出压缩后的长度这里假设压缩率为50%
//一般情况压缩率都会高于50%
$size = $this->config['compress'] ? $size / 2 : $size;
$this->open($size);
return $this->config['compress'] ? @gzwrite($this->fp, $sql) : @fwrite($this->fp, $sql);
}
/**
* 打开一个卷,用于写入数据
*
* @param integer $size 写入数据的大小
*/
private function open($size)
{
if ($this->fp) {
$this->size += $size;
if ($this->size > $this->config['part']) {
$this->config['compress'] ? @gzclose($this->fp) : @fclose($this->fp);
$this->fp = null;
$this->file['part']++;
session('backup_file', $this->file);
$this->backupInit();
}
} else {
$backuppath = $this->config['path'];
$filename = "{$backuppath}{$this->file['name']}-{$this->file['part']}.sql";
if ($this->config['compress']) {
$filename = "{$filename}.gz";
$this->fp = @gzopen($filename, "a{$this->config['level']}");
} else {
$this->fp = @fopen($filename, 'a');
}
$this->size = filesize($filename) + $size;
}
}
/**
* 检查目录是否可写
*
* @param string $path 目录
* @return boolean
*/
protected function checkPath($path)
{
if (is_dir($path)) {
return true;
}
if (mkdir($path, 0755, true)) {
return true;
} else {
return false;
}
}
/**
* 析构方法,用于关闭文件资源
*/
public function __destruct()
{
if ($this->fp) {
$this->config['compress'] ? @gzclose($this->fp) : @fclose($this->fp);
}
}
} }