You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
4.8 KiB

<?php
namespace App\Http\Requests\Admin;
use App\Models\Competition;
use App\Models\FormSchemaDefinition;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
use Illuminate\Validation\Validator;
class StoreCompetitionRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function withValidator(Validator $validator): void
{
$validator->after(function (Validator $v): void {
// 与 UpdateCompetitionRequest 相同:避免 settings.* 嵌套规则剥掉其它 settings 键
if (! $this->exists('settings')) {
return;
}
$settings = $this->input('settings');
if ($settings === null) {
return;
}
if (! is_array($settings)) {
$v->errors()->add('settings', '扩展设置格式无效');
return;
}
if (! array_key_exists('post_close_file_edit', $settings)) {
return;
}
$cfg = $settings['post_close_file_edit'];
if ($cfg === null) {
return;
}
if (! is_array($cfg)) {
$v->errors()->add('settings.post_close_file_edit', '截止后补传附件配置格式无效');
return;
}
$enabled = $cfg['enabled'] ?? false;
$isEnabled = $enabled === true || $enabled === 1 || $enabled === '1' || $enabled === 'true';
if (! $isEnabled) {
return;
}
$mobiles = $cfg['user_mobiles'] ?? null;
if (! is_array($mobiles) || count($mobiles) === 0) {
$v->errors()->add('settings.post_close_file_edit.user_mobiles', '开启截止后补传附件后,请至少填写一个登录手机号');
return;
}
foreach ($mobiles as $i => $mobile) {
$normalized = Competition::normalizeAllowlistMobile($mobile);
if ($normalized === '' || preg_match('/^1[3-9]\d{9}$/', $normalized) !== 1) {
$v->errors()->add(
"settings.post_close_file_edit.user_mobiles.{$i}",
'补传附件白名单手机号须为11位中国大陆手机号',
);
}
}
});
}
/**
* @return array<string, mixed>
*/
public function rules(): array
{
return [
'slug' => [
'required',
'string',
'max:128',
'regex:/^(?!.*\s)[\p{L}\p{N}\-_·]+$/u',
'unique:competitions,slug',
],
'name' => ['required', 'string', 'max:200'],
'description' => ['nullable', 'string'],
'pledge_title' => ['nullable', 'string', 'max:200'],
'pledge_title_en' => ['nullable', 'string', 'max:200'],
'pledge_subtitle' => ['nullable', 'string', 'max:500'],
'pledge_subtitle_en' => ['nullable', 'string', 'max:500'],
'pledge_content_html' => ['nullable', 'string', 'max:500000'],
'pledge_content_html_en' => ['nullable', 'string', 'max:500000'],
'status' => ['required', 'string', 'max:32', Rule::in(Competition::STATUSES)],
'published' => ['sometimes', 'boolean'],
'signup_open_at' => ['nullable', 'date', 'required_with:signup_close_at'],
'signup_close_at' => ['nullable', 'date', 'after_or_equal:signup_open_at'],
'form_schema_id' => [
'nullable',
'integer',
Rule::exists('form_schema_definitions', 'id')->where('purpose', FormSchemaDefinition::PURPOSE_SIGNUP),
],
'review_form_schema_id' => [
'nullable',
'integer',
Rule::exists('form_schema_definitions', 'id')->where('purpose', FormSchemaDefinition::PURPOSE_REVIEW),
],
'audience_form_schema_id' => [
'nullable',
'integer',
Rule::exists('form_schema_definitions', 'id')->where('purpose', FormSchemaDefinition::PURPOSE_AUDIENCE),
],
'branding_json' => ['nullable', 'array'],
'settings' => ['nullable', 'array'],
'scoring_rules_json' => ['nullable', 'array'],
];
}
/**
* @return array<string, string>
*/
public function attributes(): array
{
return [
'slug' => '访问地址',
];
}
/**
* @return array<string, string>
*/
public function messages(): array
{
return [
'slug.regex' => ':attribute 仅可为中文、字母、数字、横线、下划线或中点,且不能含空格。',
];
}
}