engineering/app/adminapi/validate/project/ProjectDocumentValidate.php
2023-12-18 16:13:37 +08:00

128 lines
3.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | 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\project;
use app\common\model\project\Project;
use app\common\model\project\ProjectDocumentSet;
use app\common\validate\BaseValidate;
/**
* 项目文档验证器
* Class ProjectDocumentValidate
* @package app\adminapi\validate\project
*/
class ProjectDocumentValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
'project_id' => 'require|checkProject',
'classify_id' => 'require|checkClassify',
'name' => 'require',
];
protected $message = [
'id.require' => '缺少必要参数',
'project_id.require' => '请选择项目',
'classify_id.require' => '请选择文档大类',
'name.require' => '请填写文档名称',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
'classify_id' => '文档分类id',
'code' => '文档编号',
'name' => '文档名称',
];
/**
* @notes 添加场景
* @return ProjectDocumentValidate
* @author likeadmin
* @date 2023/12/18 15:42
*/
public function sceneAdd()
{
return $this->only(['project_id','classify_id','name','describe','version','annex']);
}
/**
* @notes 编辑场景
* @return ProjectDocumentValidate
* @author likeadmin
* @date 2023/12/18 15:42
*/
public function sceneEdit()
{
return $this->only(['id','project_id','classify_id','name','describe','version','annex']);
}
/**
* @notes 删除场景
* @return ProjectDocumentValidate
* @author likeadmin
* @date 2023/12/18 15:42
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectDocumentValidate
* @author likeadmin
* @date 2023/12/18 15:42
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkProject($value): bool|string
{
$data = Project::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目不存在';
}
return true;
}
public function checkClassify($value): bool|string
{
$data = ProjectDocumentSet::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '文档分类不存在';
}
return true;
}
}