Withdraw.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. namespace app\index\controller;
  3. use addons\recharge\model\MoneyLog;
  4. use app\common\controller\Frontend;
  5. use think\Db;
  6. use think\Exception;
  7. use think\Validate;
  8. /**
  9. *
  10. */
  11. class Withdraw extends Frontend
  12. {
  13. protected $layout = 'default';
  14. protected $noNeedLogin = [];
  15. protected $noNeedRight = ['*'];
  16. /**
  17. * 余额提现
  18. * @return string
  19. */
  20. public function withdraw()
  21. {
  22. $config = get_addon_config('withdraw');
  23. $this->view->assign('addonConfig', $config);
  24. $this->view->assign('title', __('Withdraw'));
  25. return $this->view->fetch();
  26. }
  27. /**
  28. * 余额日志
  29. * @return string
  30. */
  31. public function withdrawlog()
  32. {
  33. $withdrawloglist = \addons\withdraw\model\Withdraw::where(['user_id' => $this->auth->id])
  34. ->order('id desc')
  35. ->paginate(10);
  36. $this->view->assign('title', __('Withdraw log'));
  37. $this->view->assign('withdrawloglist', $withdrawloglist);
  38. return $this->view->fetch();
  39. }
  40. /**
  41. * 创建订单并发起支付请求
  42. * @throws \think\exception\DbException
  43. */
  44. public function submit()
  45. {
  46. $money = $this->request->request('money');
  47. $account = $this->request->request('account');
  48. $name = $this->request->request('name');
  49. $type = 'alipay';
  50. $token = $this->request->post('__token__');
  51. //验证Token
  52. if (!Validate::is($token, "token", ['__token__' => $token])) {
  53. $this->error("Token验证错误,请重试!", '', ['__token__' => $this->request->token()]);
  54. }
  55. //刷新Token
  56. $this->request->token();
  57. if ($money <= 0) {
  58. $this->error('提现金额不正确');
  59. }
  60. if ($money > $this->auth->money) {
  61. $this->error('提现金额超出可提现额度');
  62. }
  63. if (!$account) {
  64. $this->error("提现账户不能为空");
  65. }
  66. if (!$name) {
  67. $this->error("真实姓名不能为空");
  68. }
  69. if (!Validate::is($account, "email") && !Validate::is($account, "/^1\d{10}$/")) {
  70. $this->error("提现账户只能是手机号或Email");
  71. }
  72. $config = get_addon_config('withdraw');
  73. if (isset($config['minmoney']) && $money < $config['minmoney']) {
  74. $this->error('提现金额不能低于' . $config['minmoney'] . '元');
  75. }
  76. if ($config['monthlimit']) {
  77. $count = \addons\withdraw\model\Withdraw::where('user_id', $this->auth->id)->whereTime('createtime', 'month')->count();
  78. if ($count >= $config['monthlimit']) {
  79. $this->error("已达到本月最大可提现次数");
  80. }
  81. }
  82. Db::startTrans();
  83. try {
  84. $data = [
  85. 'orderid' => date("YmdHis") . sprintf("%08d", $this->auth->id) . mt_rand(1000, 9999),
  86. 'user_id' => $this->auth->id,
  87. 'money' => $money,
  88. 'type' => $type,
  89. 'account' => $account,
  90. 'name' => $name,
  91. ];
  92. \addons\withdraw\model\Withdraw::create($data);
  93. \app\common\model\User::money(-$money, $this->auth->id, "提现");
  94. Db::commit();
  95. } catch (Exception $e) {
  96. Db::rollback();
  97. $this->error($e->getMessage());
  98. }
  99. $this->success("提现申请成功!请等待后台审核!", url("withdraw/withdrawlog"));
  100. return;
  101. }
  102. /**
  103. * 企业支付通知和回调
  104. * @throws \think\exception\DbException
  105. */
  106. public function epay()
  107. {
  108. $type = $this->request->param('type');
  109. $paytype = $this->request->param('paytype');
  110. if ($type == 'notify') {
  111. $pay = \addons\epay\library\Service::checkNotify($paytype);
  112. if (!$pay) {
  113. echo '签名错误';
  114. return;
  115. }
  116. $data = $pay->verify();
  117. try {
  118. $payamount = $paytype == 'alipay' ? $data['total_amount'] : $data['total_fee'] / 100;
  119. \addons\recharge\model\Order::settle($data['out_trade_no'], $payamount);
  120. } catch (Exception $e) {
  121. }
  122. echo $pay->success();
  123. } else {
  124. $pay = \addons\epay\library\Service::checkReturn($paytype);
  125. if (!$pay) {
  126. $this->error('签名错误');
  127. }
  128. //微信支付没有返回链接
  129. if ($pay === true) {
  130. $this->success("请返回网站查看支付状态!", "");
  131. }
  132. //你可以在这里定义你的提示信息,但切记不可在此编写逻辑
  133. $this->success("恭喜你!充值成功!", url("user/index"));
  134. }
  135. return;
  136. }
  137. }