ConfigSave.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. 'force_https' => 'in:0,1',
  23. 'safe_mode_enable' => 'in:0,1',
  24. 'stop_register' => 'in:0,1',
  25. 'email_verify' => 'in:0,1',
  26. 'app_name' => '',
  27. 'app_description' => '',
  28. 'app_url' => 'nullable|url',
  29. 'subscribe_url' => 'nullable',
  30. 'try_out_enable' => 'in:0,1',
  31. 'try_out_plan_id' => 'integer',
  32. 'try_out_hour' => 'numeric',
  33. 'email_whitelist_enable' => 'in:0,1',
  34. 'email_whitelist_suffix' => 'nullable|array',
  35. 'email_gmail_limit_enable' => 'in:0,1',
  36. 'recaptcha_enable' => 'in:0,1',
  37. 'recaptcha_key' => '',
  38. 'recaptcha_site_key' => '',
  39. 'tos_url' => 'nullable|url',
  40. 'currency' => '',
  41. 'currency_symbol' => '',
  42. 'register_limit_by_ip_enable' => 'in:0,1',
  43. 'register_limit_count' => 'integer',
  44. 'register_limit_expire' => 'integer',
  45. // subscribe
  46. 'plan_change_enable' => 'in:0,1',
  47. 'reset_traffic_method' => 'in:0,1,2',
  48. 'surplus_enable' => 'in:0,1',
  49. 'new_order_event_id' => 'in:0,1',
  50. 'renew_order_event_id' => 'in:0,1',
  51. 'change_order_event_id' => 'in:0,1',
  52. // server
  53. 'server_token' => 'nullable|min:16',
  54. 'server_license' => 'nullable',
  55. 'server_log_enable' => 'in:0,1',
  56. 'server_v2ray_domain' => '',
  57. 'server_v2ray_protocol' => '',
  58. // alipay
  59. 'alipay_enable' => 'in:0,1',
  60. 'alipay_appid' => 'nullable|integer|min:16',
  61. 'alipay_pubkey' => 'max:2048',
  62. 'alipay_privkey' => 'max:2048',
  63. // stripe
  64. 'stripe_alipay_enable' => 'in:0,1',
  65. 'stripe_wepay_enable' => 'in:0,1',
  66. 'stripe_card_enable' => 'in:0,1',
  67. 'stripe_sk_live' => '',
  68. 'stripe_pk_live' => '',
  69. 'stripe_webhook_key' => '',
  70. 'stripe_currency' => 'in:hkd,usd,sgd,eur,gbp,jpy,cad',
  71. // bitpayx
  72. 'bitpayx_name' => '',
  73. 'bitpayx_enable' => 'in:0,1',
  74. 'bitpayx_appsecret' => '',
  75. // mGate
  76. 'mgate_name' => '',
  77. 'mgate_enable' => 'in:0,1',
  78. 'mgate_url' => 'nullable|url',
  79. 'mgate_app_id' => '',
  80. 'mgate_app_secret' => '',
  81. // Epay
  82. 'epay_name' => '',
  83. 'epay_enable' => 'in:0,1',
  84. 'epay_url' => 'nullable|url',
  85. 'epay_pid' => '',
  86. 'epay_key' => '',
  87. // frontend
  88. 'frontend_theme' => '',
  89. 'frontend_theme_sidebar' => 'in:dark,light',
  90. 'frontend_theme_header' => 'in:dark,light',
  91. 'frontend_theme_color' => 'in:default,darkblue,black,green',
  92. 'frontend_background_url' => 'nullable|url',
  93. 'frontend_admin_path' => '',
  94. // email
  95. 'email_template' => '',
  96. 'email_host' => '',
  97. 'email_port' => '',
  98. 'email_username' => '',
  99. 'email_password' => '',
  100. 'email_encryption' => '',
  101. 'email_from_address' => '',
  102. // telegram
  103. 'telegram_bot_enable' => 'in:0,1',
  104. 'telegram_bot_token' => '',
  105. 'telegram_discuss_id' => '',
  106. 'telegram_channel_id' => '',
  107. 'telegram_discuss_link' => 'nullable|url',
  108. // app
  109. 'windows_version' => '',
  110. 'windows_download_url' => '',
  111. 'macos_version' => '',
  112. 'macos_download_url' => '',
  113. 'android_version' => '',
  114. 'android_download_url' => ''
  115. ];
  116. /**
  117. * Get the validation rules that apply to the request.
  118. *
  119. * @return array
  120. */
  121. public function rules()
  122. {
  123. return self::RULES;
  124. }
  125. public function messages()
  126. {
  127. // illiteracy prompt
  128. return [
  129. 'app_url.url' => '站点URL格式不正确,必须携带http(s)://',
  130. 'subscribe_url.url' => '订阅URL格式不正确,必须携带http(s)://',
  131. 'server_token.min' => '通讯密钥长度必须大于16位',
  132. 'tos_url.url' => '服务条款URL格式不正确,必须携带http(s)://',
  133. 'telegram_discuss_link.url' => 'Telegram群组地址必须为URL格式,必须携带http(s)://'
  134. ];
  135. }
  136. }