ConfigSave.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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',
  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. // server
  54. 'server_token' => 'nullable|min:16',
  55. 'server_license' => 'nullable',
  56. 'server_log_enable' => 'in:0,1',
  57. 'server_v2ray_domain' => '',
  58. 'server_v2ray_protocol' => '',
  59. // alipay
  60. 'alipay_enable' => 'in:0,1',
  61. 'alipay_appid' => 'nullable|integer|min:16',
  62. 'alipay_pubkey' => 'max:2048',
  63. 'alipay_privkey' => 'max:2048',
  64. // stripe
  65. 'stripe_alipay_enable' => 'in:0,1',
  66. 'stripe_wepay_enable' => 'in:0,1',
  67. 'stripe_card_enable' => 'in:0,1',
  68. 'stripe_sk_live' => '',
  69. 'stripe_pk_live' => '',
  70. 'stripe_webhook_key' => '',
  71. 'stripe_currency' => 'in:hkd,usd,sgd,eur,gbp,jpy,cad',
  72. // bitpayx
  73. 'bitpayx_name' => '',
  74. 'bitpayx_enable' => 'in:0,1',
  75. 'bitpayx_appsecret' => '',
  76. // mGate
  77. 'mgate_name' => '',
  78. 'mgate_enable' => 'in:0,1',
  79. 'mgate_url' => 'nullable|url',
  80. 'mgate_app_id' => '',
  81. 'mgate_app_secret' => '',
  82. // Epay
  83. 'epay_name' => '',
  84. 'epay_enable' => 'in:0,1',
  85. 'epay_url' => 'nullable|url',
  86. 'epay_pid' => '',
  87. 'epay_key' => '',
  88. // frontend
  89. 'frontend_theme' => '',
  90. 'frontend_theme_sidebar' => 'in:dark,light',
  91. 'frontend_theme_header' => 'in:dark,light',
  92. 'frontend_theme_color' => 'in:default,darkblue,black,green',
  93. 'frontend_background_url' => 'nullable|url',
  94. 'frontend_admin_path' => '',
  95. // email
  96. 'email_template' => '',
  97. 'email_host' => '',
  98. 'email_port' => '',
  99. 'email_username' => '',
  100. 'email_password' => '',
  101. 'email_encryption' => '',
  102. 'email_from_address' => '',
  103. // telegram
  104. 'telegram_bot_enable' => 'in:0,1',
  105. 'telegram_bot_token' => '',
  106. 'telegram_discuss_id' => '',
  107. 'telegram_channel_id' => '',
  108. 'telegram_discuss_link' => 'nullable|url',
  109. // app
  110. 'windows_version' => '',
  111. 'windows_download_url' => '',
  112. 'macos_version' => '',
  113. 'macos_download_url' => '',
  114. 'android_version' => '',
  115. 'android_download_url' => ''
  116. ];
  117. /**
  118. * Get the validation rules that apply to the request.
  119. *
  120. * @return array
  121. */
  122. public function rules()
  123. {
  124. return self::RULES;
  125. }
  126. public function messages()
  127. {
  128. // illiteracy prompt
  129. return [
  130. 'app_url.url' => '站点URL格式不正确,必须携带http(s)://',
  131. 'subscribe_url.url' => '订阅URL格式不正确,必须携带http(s)://',
  132. 'server_token.min' => '通讯密钥长度必须大于16位',
  133. 'tos_url.url' => '服务条款URL格式不正确,必须携带http(s)://',
  134. 'telegram_discuss_link.url' => 'Telegram群组地址必须为URL格式,必须携带http(s)://',
  135. 'logo.url' => 'LOGO URL格式不正确,必须携带https(s)://'
  136. ];
  137. }
  138. }