Payment.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. namespace app\data\controller\base;
  3. use app\data\service\PaymentService;
  4. use app\data\service\UserAdminService;
  5. use think\admin\Controller;
  6. use think\admin\extend\CodeExtend;
  7. /**
  8. * 支付通道管理
  9. * Class Payment
  10. * @package app\data\controller\base
  11. */
  12. class Payment extends Controller
  13. {
  14. /**
  15. * 绑定数据表
  16. * @var string
  17. */
  18. private $table = 'DataBasePayment';
  19. /**
  20. * 支付通道类型
  21. * @var array
  22. */
  23. protected $types = PaymentService::TYPES;
  24. /**
  25. * 支付通道管理
  26. * @auth true
  27. * @menu true
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\DbException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. */
  32. public function index()
  33. {
  34. $this->title = '支付通道管理';
  35. $query = $this->_query($this->table);
  36. $query->where(['deleted' => 0])->order('sort desc,id desc');
  37. $query->like('name,code')->equal('type,status')->dateBetween('create_at')->page();
  38. }
  39. /**
  40. * 添加支付通道
  41. * @auth true
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\DbException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. */
  46. public function add()
  47. {
  48. $this->title = '添加支付通道';
  49. $this->_form($this->table, 'form');
  50. }
  51. /**
  52. * 编辑支付通道
  53. * @auth true
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\DbException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. */
  58. public function edit()
  59. {
  60. $this->title = '编辑支付通道';
  61. $this->_form($this->table, 'form');
  62. }
  63. /**
  64. * 数据表单处理
  65. * @param array $data
  66. */
  67. protected function _form_filter(array &$data)
  68. {
  69. if (empty($data['code'])) {
  70. $data['code'] = CodeExtend::uniqidNumber(20, 'M');
  71. }
  72. if ($this->request->isGet()) {
  73. $this->payments = [];
  74. foreach ($this->types as $k => $vo) {
  75. $allow = [];
  76. foreach ($vo['bind'] as $api) if (isset(UserAdminService::TYPES[$api])) {
  77. $allow[$api] = UserAdminService::TYPES[$api]['name'];
  78. }
  79. if (empty($allow)) continue;
  80. $this->payments[$k] = array_merge($vo, ['allow' => join('、', $allow)]);
  81. }
  82. $data['content'] = json_decode($data['content'] ?? '[]', true) ?: [];
  83. } else {
  84. if (empty($data['type'])) $this->error('请选择支付通道并配置参数!');
  85. if (empty($data['cover'])) $this->error('请上传支付方式图标!');
  86. $data['content'] = json_encode($this->request->post() ?: [], JSON_UNESCAPED_UNICODE);
  87. }
  88. }
  89. /**
  90. * 表单结果处理
  91. * @param boolean $state
  92. */
  93. protected function _form_result(bool $state)
  94. {
  95. if ($state) {
  96. $this->success('支付通道保存成功!', 'javascript:history.back()');
  97. }
  98. }
  99. /**
  100. * 修改通道状态
  101. * @auth true
  102. * @throws \think\db\exception\DbException
  103. */
  104. public function state()
  105. {
  106. $this->_save($this->table, $this->_vali([
  107. 'status.in:0,1' => '状态值范围异常!',
  108. 'status.require' => '状态值不能为空!',
  109. ]));
  110. }
  111. /**
  112. * 删除支付通道
  113. * @auth true
  114. * @throws \think\db\exception\DbException
  115. */
  116. public function remove()
  117. {
  118. $this->_delete($this->table);
  119. }
  120. }