ConfigSave.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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_force' => 'in:0,1',
  8. 'invite_commission' => 'integer',
  9. 'invite_gen_limit' => 'integer',
  10. 'invite_never_expire' => 'in:0,1',
  11. 'stop_register' => 'in:0,1',
  12. 'email_verify' => 'in:0,1',
  13. 'app_url' => 'url',
  14. 'subscribe_url' => 'url',
  15. 'plan_update_fee' => 'numeric',
  16. 'plan_is_update' => 'in:0,1',
  17. 'try_out_register' => 'in:0,1',
  18. 'try_out_plan_id' => 'integer',
  19. 'try_out_day' => 'integer',
  20. // server
  21. 'server_token' => 'min:16',
  22. // alipay
  23. 'alipay_enable' => 'in:0,1',
  24. 'alipay_appid' => 'integer|min:16',
  25. 'alipay_pubkey' => 'max:2048',
  26. 'alipay_privkey' => 'max:2048',
  27. // stripe
  28. 'stripe_alipay_enable' => 'in:0,1',
  29. 'stripe_wepay_enable' => 'in:0,1',
  30. // bitpayx
  31. 'bitpayx_enable' => 'in:0,1',
  32. // tutorial
  33. 'apple_id' => 'email'
  34. ];
  35. public static function filter() {
  36. return array_keys(self::RULES);
  37. }
  38. /**
  39. * Get the validation rules that apply to the request.
  40. *
  41. * @return array
  42. */
  43. public function rules()
  44. {
  45. return self::RULES;
  46. }
  47. public function messages()
  48. {
  49. return [
  50. ];
  51. }
  52. }