diff --git a/.gitignore b/.gitignore index 0307853..4bfa345 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ .env /tests/tmp /tests/.phpunit.result.cache +public/uploads \ No newline at end of file diff --git a/app/admin/controller/tools/GeneratorController.php b/app/admin/controller/tools/GeneratorController.php index f46d54e..dd245a3 100644 --- a/app/admin/controller/tools/GeneratorController.php +++ b/app/admin/controller/tools/GeneratorController.php @@ -91,25 +91,7 @@ class GeneratorController extends BaseAdminController return $this->success('操作成功', $result, 1, 1); } - - - /** - * @notes 下载文件 - * @return \think\response\File|\think\response\Json - * @author 段誉 - * @date 2022/6/24 9:51 - */ - public function download() - { - $params = (new GenerateTableValidate())->goCheck('download'); - $result = GeneratorLogic::download($params['file']); - if (false === $result) { - return $this->fail(GeneratorLogic::getError() ?: '下载失败'); - } - return download($result, 'likeadmin-curd.zip'); - } - - + /** * @notes 预览代码 * @return \think\response\Json diff --git a/app/admin/logic/setting/web/WebSettingLogic.php b/app/admin/logic/setting/web/WebSettingLogic.php index 5b5393d..ed4f9a4 100755 --- a/app/admin/logic/setting/web/WebSettingLogic.php +++ b/app/admin/logic/setting/web/WebSettingLogic.php @@ -149,8 +149,12 @@ class WebSettingLogic extends BaseLogic 'privacy_content' => ConfigService::get('agreement', 'privacy_content'), ]; - $config['service_content'] = get_file_domain($config['service_content']); - $config['privacy_content'] = get_file_domain($config['privacy_content']); + if($config['service_content']){ + $config['service_content'] = get_file_domain($config['service_content']); + } + if($config['privacy_content']){ + $config['privacy_content'] = get_file_domain($config['privacy_content']); + } return $config; } diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 5ada15b..95880a6 100644 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -1,12 +1,28 @@ 'hello']); } - -} \ No newline at end of file + /** + * @notes 下载文件 + */ + public function download() + { + $params = (new GenerateTableValidate())->goCheck('download'); + $result = GeneratorLogic::download($params['file']); + if (false === $result) { + return $this->fail(GeneratorLogic::getError() ?: '下载失败'); + } + return response()->download($result, 'webman-curd.zip'); + } +} diff --git a/app/common/service/generator/GenerateService.php b/app/common/service/generator/GenerateService.php index 164eb7f..8c6d64d 100644 --- a/app/common/service/generator/GenerateService.php +++ b/app/common/service/generator/GenerateService.php @@ -57,8 +57,8 @@ class GenerateService public function __construct() { - $this->generatePath = base_path() . '/runtime/generate/'; - $this->runtimePath = base_path() . '/runtime/'; + $this->generatePath = runtime_path() . '/generate/'; + $this->runtimePath = runtime_path() . '/'; } @@ -228,9 +228,8 @@ class GenerateService */ public function getDownloadUrl() { - // $vars = ['file' => $this->zipTempName]; Cache::set('curd_file_name' . $this->zipTempName, $this->zipTempName, 3600); - return "admin/tools/generator/download?file=".$this->zipTempName; + return getenv('WEB_URL')."/api/index/download?file=".$this->zipTempName; } } \ No newline at end of file diff --git a/app/common/service/generator/stub/php/controller.stub b/app/common/service/generator/stub/php/controller.stub index 44622d2..5570b47 100644 --- a/app/common/service/generator/stub/php/controller.stub +++ b/app/common/service/generator/stub/php/controller.stub @@ -1,17 +1,4 @@ download($filename,$name); - } -} - /** * @notes 删除目标目录 * @param $path @@ -196,4 +179,31 @@ function get_no_prefix_table_name($tableName) } $tableName = substr_replace($tableName, '', 0, strlen($tablePrefix)); return trim($tableName); +} + +/** + * @notes 去除内容图片域名 + * @param $content + * @return array|string|string[] + * @author 段誉 + * @date 2022/9/26 10:43 + */ +function clear_file_domain($content) +{ + $fileUrl = FileService::getFileUrl(); + return str_replace($fileUrl, '/', $content); +} + +/** + * @notes 设置内容图片域名 + * @param $content + * @return array|string|string[]|null + * @author 段誉 + * @date 2022/9/26 10:43 + */ +function get_file_domain($content) +{ + $preg = '/()/is'; + $fileUrl = FileService::getFileUrl(); + return preg_replace($preg, "\${1}$fileUrl\${2}\${3}", $content); } \ No newline at end of file