| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\validate\tools;
- use app\common\model\tools\GenerateTable;
- use app\common\validate\BaseValidate;
- use think\facade\Db;
- /**
- * 代码生成选择表验证
- * Class SelectTableValidate
- * @package app\adminapi\validate\tools
- */
- class GenerateTableValidate extends BaseValidate
- {
- protected $rule = [
- 'id' => 'require|checkTableData',
- 'table' => 'require|array|checkTable',
- 'file' => 'require'
- ];
- protected $message = [
- 'id.require' => '参数缺失',
- 'table.require' => '参数缺失',
- 'table.array' => '参数类型错误',
- 'file.require' => '下载失败',
- ];
- /**
- * @notes 选择数据表场景
- * @return GenerateTableValidate
- * @author 段誉
- * @date 2022/6/15 18:58
- */
- public function sceneSelect()
- {
- return $this->only(['table']);
- }
- /**
- * @notes 需要校验id的场景
- * @return GenerateTableValidate
- * @author 段誉
- * @date 2022/6/15 18:58
- */
- public function sceneId()
- {
- return $this->only(['id']);
- }
- /**
- * @notes 下载场景
- * @return GenerateTableValidate
- * @author 段誉
- * @date 2022/6/24 10:02
- */
- public function sceneDownload()
- {
- return $this->only(['file']);
- }
- /**
- * @notes 校验选择的数据表信息
- * @param $value
- * @param $rule
- * @param $data
- * @return bool|string
- * @author 段誉
- * @date 2022/6/15 18:58
- */
- protected function checkTable($value, $rule, $data)
- {
- foreach ($value as $item) {
- if (!isset($item['name']) || !isset($item['comment'])) {
- return '参数缺失';
- }
- $exist = Db::query("SHOW TABLES LIKE'" . $item['name'] . "'");
- if (empty($exist)) {
- return '当前数据库不存在' . $item['name'] . '表';
- }
- }
- return true;
- }
- /**
- * @notes 校验当前数据表是否存在
- * @param $value
- * @param $rule
- * @param $data
- * @return bool|string
- * @author 段誉
- * @date 2022/6/15 18:58
- */
- protected function checkTableData($value, $rule, $data)
- {
- if (!is_array($value)) {
- $value = [$value];
- }
- foreach ($value as $item) {
- $table = GenerateTable::findOrEmpty($item);
- if ($table->isEmpty()) {
- return '信息不存在';
- }
- }
- return true;
- }
- }
|