ConfigSave.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. 'secure_path' => '',
  47. // subscribe
  48. 'plan_change_enable' => 'in:0,1',
  49. 'reset_traffic_method' => 'in:0,1,2,3,4',
  50. 'surplus_enable' => 'in:0,1',
  51. 'new_order_event_id' => 'in:0,1',
  52. 'renew_order_event_id' => 'in:0,1',
  53. 'change_order_event_id' => 'in:0,1',
  54. 'show_info_to_server_enable' => 'in:0,1',
  55. // server
  56. 'server_token' => 'nullable|min:16',
  57. 'server_pull_interval' => 'integer',
  58. 'server_push_interval' => 'integer',
  59. // frontend
  60. 'frontend_theme' => '',
  61. 'frontend_theme_sidebar' => 'in:dark,light',
  62. 'frontend_theme_header' => 'in:dark,light',
  63. 'frontend_theme_color' => 'in:default,darkblue,black,green',
  64. 'frontend_background_url' => 'nullable|url',
  65. // email
  66. 'email_template' => '',
  67. 'email_host' => '',
  68. 'email_port' => '',
  69. 'email_username' => '',
  70. 'email_password' => '',
  71. 'email_encryption' => '',
  72. 'email_from_address' => '',
  73. // telegram
  74. 'telegram_bot_enable' => 'in:0,1',
  75. 'telegram_bot_token' => '',
  76. 'telegram_discuss_id' => '',
  77. 'telegram_channel_id' => '',
  78. 'telegram_discuss_link' => 'nullable|url',
  79. // app
  80. 'windows_version' => '',
  81. 'windows_download_url' => '',
  82. 'macos_version' => '',
  83. 'macos_download_url' => '',
  84. 'android_version' => '',
  85. 'android_download_url' => ''
  86. ];
  87. /**
  88. * Get the validation rules that apply to the request.
  89. *
  90. * @return array
  91. */
  92. public function rules()
  93. {
  94. return self::RULES;
  95. }
  96. public function messages()
  97. {
  98. // illiteracy prompt
  99. return [
  100. 'app_url.url' => '站点URL格式不正确,必须携带http(s)://',
  101. 'subscribe_url.url' => '订阅URL格式不正确,必须携带http(s)://',
  102. 'server_token.min' => '通讯密钥长度必须大于16位',
  103. 'tos_url.url' => '服务条款URL格式不正确,必须携带http(s)://',
  104. 'telegram_discuss_link.url' => 'Telegram群组地址必须为URL格式,必须携带http(s)://',
  105. 'logo.url' => 'LOGO URL格式不正确,必须携带https(s)://'
  106. ];
  107. }
  108. }