ConfigSave.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace App\Http\Requests\Admin;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class ConfigSave extends FormRequest
  5. {
  6. public static function filter() {
  7. return array_keys($this->rules());
  8. }
  9. /**
  10. * Get the validation rules that apply to the request.
  11. *
  12. * @return array
  13. */
  14. public function rules()
  15. {
  16. return [
  17. 'invite_force' => 'in:0,1',
  18. 'invite_commission' => 'integer',
  19. 'invite_gen_limit' => 'integer',
  20. 'invite_never_expire' => 'in:0,1',
  21. 'stop_register' => 'in:0,1',
  22. 'email_verify' => 'in:0,1',
  23. 'app_url' => 'url',
  24. 'subscribe_url' => 'url',
  25. 'plan_update_fee' => 'numeric',
  26. 'plan_is_update' => 'in:0,1',
  27. 'try_out_register' => 'in:0,1',
  28. 'try_out_plan_id' => 'integer',
  29. 'try_out_day' => 'integer',
  30. // server
  31. 'server_token' => 'min:16',
  32. // alipay
  33. 'alipay_enable' => 'in:0,1',
  34. 'alipay_appid' => 'integer|min:16',
  35. 'alipay_pubkey' => 'max:2048',
  36. 'alipay_privkey' => 'max:2048',
  37. // stripe
  38. 'stripe_alipay_enable' => 'in:0,1',
  39. 'stripe_wepay_enable' => 'in:0,1',
  40. // bitpayx
  41. 'bitpayx_enable' => 'in:0,1',
  42. // tutorial
  43. 'apple_id' => 'email'
  44. ];
  45. }
  46. public function messages()
  47. {
  48. return [
  49. ];
  50. }
  51. }