mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-01 01:41:47 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | ||
| 
 | ||
| namespace App\Http\Requests\Admin;
 | ||
| 
 | ||
| use Illuminate\Foundation\Http\FormRequest;
 | ||
| 
 | ||
| class ConfigSave extends FormRequest
 | ||
| {
 | ||
|     CONST RULES = [
 | ||
|         // invite & commission
 | ||
|         'safe_mode_enable' => 'in:0,1',
 | ||
|         'invite_force' => 'in:0,1',
 | ||
|         'invite_commission' => 'integer',
 | ||
|         'invite_gen_limit' => 'integer',
 | ||
|         'invite_never_expire' => 'in:0,1',
 | ||
|         'commission_first_time_enable' => 'in:0,1',
 | ||
|         // site
 | ||
|         'stop_register' => 'in:0,1',
 | ||
|         'email_verify' => 'in:0,1',
 | ||
|         'app_name' => '',
 | ||
|         'app_description' => '',
 | ||
|         'app_url' => 'nullable|url',
 | ||
|         'subscribe_url' => 'nullable|url',
 | ||
|         'try_out_enable' => 'in:0,1',
 | ||
|         'try_out_plan_id' => 'integer',
 | ||
|         'try_out_hour' => 'numeric',
 | ||
|         'email_whitelist_enable' => 'in:0,1',
 | ||
|         'email_whitelist_suffix' => '',
 | ||
|         // subscribe
 | ||
|         'plan_change_enable' => 'in:0,1',
 | ||
|         'reset_traffic_method' => 'in:0,1',
 | ||
|         'renew_reset_traffic_enable' => 'in:0,1',
 | ||
|         // server
 | ||
|         'server_token' => 'nullable|min:16',
 | ||
|         'server_license' => 'nullable',
 | ||
|         // alipay
 | ||
|         'alipay_enable' => 'in:0,1',
 | ||
|         'alipay_appid' => 'nullable|integer|min:16',
 | ||
|         'alipay_pubkey' => 'max:2048',
 | ||
|         'alipay_privkey' => 'max:2048',
 | ||
|         // stripe
 | ||
|         'stripe_alipay_enable' => 'in:0,1',
 | ||
|         'stripe_wepay_enable' => 'in:0,1',
 | ||
|         'stripe_sk_live' => '',
 | ||
|         'stripe_pk_live' => '',
 | ||
|         'stripe_webhook_key' => '',
 | ||
|         'stripe_currency' => 'in:hkd,usd,sgd',
 | ||
|         // bitpayx
 | ||
|         'bitpayx_enable' => 'in:0,1',
 | ||
|         'bitpayx_appsecret' => '',
 | ||
|         // paytaro
 | ||
|         'paytaro_enable' => 'in:0,1',
 | ||
|         'paytaro_app_id' => '',
 | ||
|         'paytaro_app_secret' => '',
 | ||
|         // frontend
 | ||
|         'frontend_theme_sidebar' => 'in:dark,light',
 | ||
|         'frontend_theme_header' => 'in:dark,light',
 | ||
|         'frontend_theme_color' => 'in:default,darkblue,black',
 | ||
|         'frontend_background_url' => 'nullable|url',
 | ||
|         // tutorial
 | ||
|         'apple_id' => 'email',
 | ||
|         'apple_id_password' => '',
 | ||
|         // email
 | ||
|         'email_template' => ''
 | ||
|     ];
 | ||
| 
 | ||
|     /**
 | ||
|      * Get the validation rules that apply to the request.
 | ||
|      *
 | ||
|      * @return array
 | ||
|      */
 | ||
|     public function rules()
 | ||
|     {
 | ||
|         return self::RULES;
 | ||
|     }
 | ||
| 
 | ||
|     public function messages()
 | ||
|     {
 | ||
|         // illiteracy prompt
 | ||
|         return [
 | ||
|             'app_url.url' => '站点URL格式不正确,必须携带http(s)://',
 | ||
|             'subscribe_url.url' => '订阅URL格式不正确,必须携带http(s)://'
 | ||
|         ];
 | ||
|     }
 | ||
| }
 |