ConfigSave.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. namespace App\Http\Requests\Admin;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class ConfigSave extends FormRequest
  5. {
  6. const RULES = [
  7. // invite & commission
  8. 'invite_force' => 'in:0,1',
  9. 'invite_commission' => 'integer',
  10. 'invite_gen_limit' => 'integer',
  11. 'invite_never_expire' => 'in:0,1',
  12. 'commission_first_time_enable' => 'in:0,1',
  13. 'commission_auto_check_enable' => 'in:0,1',
  14. 'commission_withdraw_limit' => 'nullable|numeric',
  15. 'commission_withdraw_method' => 'nullable|array',
  16. 'withdraw_close_enable' => 'in:0,1',
  17. 'commission_distribution_enable' => 'in:0,1',
  18. 'commission_distribution_l1' => 'nullable|numeric',
  19. 'commission_distribution_l2' => 'nullable|numeric',
  20. 'commission_distribution_l3' => 'nullable|numeric',
  21. // site
  22. 'logo' => 'nullable|url',
  23. 'force_https' => 'in:0,1',
  24. 'safe_mode_enable' => 'in:0,1',
  25. 'stop_register' => 'in:0,1',
  26. 'email_verify' => 'in:0,1',
  27. 'app_name' => '',
  28. 'app_description' => '',
  29. 'app_url' => 'nullable|url',
  30. 'subscribe_url' => 'nullable',
  31. 'try_out_enable' => 'in:0,1',
  32. 'try_out_plan_id' => 'integer',
  33. 'try_out_hour' => 'numeric',
  34. 'email_whitelist_enable' => 'in:0,1',
  35. 'email_whitelist_suffix' => 'nullable|array',
  36. 'email_gmail_limit_enable' => 'in:0,1',
  37. 'recaptcha_enable' => 'in:0,1',
  38. 'recaptcha_key' => '',
  39. 'recaptcha_site_key' => '',
  40. 'tos_url' => 'nullable|url',
  41. 'currency' => '',
  42. 'currency_symbol' => '',
  43. 'register_limit_by_ip_enable' => 'in:0,1',
  44. 'register_limit_count' => 'integer',
  45. 'register_limit_expire' => 'integer',
  46. // subscribe
  47. 'plan_change_enable' => 'in:0,1',
  48. 'reset_traffic_method' => 'in:0,1,2,3,4',
  49. 'surplus_enable' => 'in:0,1',
  50. 'new_order_event_id' => 'in:0,1',
  51. 'renew_order_event_id' => 'in:0,1',
  52. 'change_order_event_id' => 'in:0,1',
  53. 'show_info_to_server_enable' => 'in:0,1',
  54. // server
  55. 'server_token' => 'nullable|min:16',
  56. 'server_license' => 'nullable',
  57. 'server_log_enable' => 'in:0,1',
  58. 'server_v2ray_domain' => '',
  59. 'server_v2ray_protocol' => '',
  60. // frontend
  61. 'frontend_theme' => '',
  62. 'frontend_theme_sidebar' => 'in:dark,light',
  63. 'frontend_theme_header' => 'in:dark,light',
  64. 'frontend_theme_color' => 'in:default,darkblue,black,green',
  65. 'frontend_background_url' => 'nullable|url',
  66. 'frontend_admin_path' => '',
  67. // email
  68. 'email_template' => '',
  69. 'email_host' => '',
  70. 'email_port' => '',
  71. 'email_username' => '',
  72. 'email_password' => '',
  73. 'email_encryption' => '',
  74. 'email_from_address' => '',
  75. // telegram
  76. 'telegram_bot_enable' => 'in:0,1',
  77. 'telegram_bot_token' => '',
  78. 'telegram_discuss_id' => '',
  79. 'telegram_channel_id' => '',
  80. 'telegram_discuss_link' => 'nullable|url',
  81. // app
  82. 'windows_version' => '',
  83. 'windows_download_url' => '',
  84. 'macos_version' => '',
  85. 'macos_download_url' => '',
  86. 'android_version' => '',
  87. 'android_download_url' => ''
  88. ];
  89. /**
  90. * Get the validation rules that apply to the request.
  91. *
  92. * @return array
  93. */
  94. public function rules()
  95. {
  96. return self::RULES;
  97. }
  98. public function messages()
  99. {
  100. // illiteracy prompt
  101. return [
  102. 'app_url.url' => '站点URL格式不正确,必须携带http(s)://',
  103. 'subscribe_url.url' => '订阅URL格式不正确,必须携带http(s)://',
  104. 'server_token.min' => '通讯密钥长度必须大于16位',
  105. 'tos_url.url' => '服务条款URL格式不正确,必须携带http(s)://',
  106. 'telegram_discuss_link.url' => 'Telegram群组地址必须为URL格式,必须携带http(s)://',
  107. 'logo.url' => 'LOGO URL格式不正确,必须携带https(s)://'
  108. ];
  109. }
  110. }