Balance.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace app\data\controller\api\auth;
  3. use app\data\controller\api\Auth;
  4. use app\data\service\UserService;
  5. use think\admin\extend\CodeExtend;
  6. /**
  7. * 用户余额转账
  8. * Class Balance
  9. * @package app\data\controller\api\auth
  10. */
  11. class Balance extends Auth
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. private $table = 'DataUserBalanceTransfer';
  18. /**
  19. * 获取用户转账记录
  20. * @throws \think\db\exception\DataNotFoundException
  21. * @throws \think\db\exception\DbException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. */
  24. public function get()
  25. {
  26. $query = $this->_query($this->table);
  27. $query->where(['uid|from' => $this->uuid, 'deleted' => 0]);
  28. $result = $query->order('id desc')->page(true, false, false, 15);
  29. if (count($result['list']) > 0) {
  30. UserService::instance()->buildByUid($result['list'], 'uid', 'selfer');
  31. UserService::instance()->buildByUid($result['list'], 'from', 'fromer');
  32. }
  33. $this->success('获取数据成功', $result);
  34. }
  35. /**
  36. * 创建余额转账申请
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\DbException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. */
  41. public function add()
  42. {
  43. $data = $this->_vali([
  44. 'from.value' => $this->uuid,
  45. 'code.value' => CodeExtend::uniqidDate(18, 'T'),
  46. 'uid.require' => '目标用户不能为空!',
  47. 'name.default' => '用户余额转账',
  48. 'amount.require' => '转账金额不能为空!',
  49. ]);
  50. if ($data['uid'] == $this->uuid) {
  51. $this->error('不能给自己转账!');
  52. }
  53. // 检测目标用户状态
  54. $map = ['id' => $data['uid'], 'deleted' => 0];
  55. $user = $this->app->db->name('DataUser')->where($map)->find();
  56. if (empty($user)) $this->error('目标用户不存在!');
  57. // 检测余额否有足够
  58. [$total, $count] = UserService::instance()->balance($this->uuid);
  59. if ($data['amount'] > $total - $count) $this->error('可转账余额不足!');
  60. // 写入余额转账记录
  61. if ($this->app->db->name($this->table)->insert($data) !== false) {
  62. UserService::instance()->balance($data['uid']);
  63. UserService::instance()->balance($data['from']);
  64. $this->success('余额转账成功!');
  65. } else {
  66. $this->error('余额转账失败!');
  67. }
  68. }
  69. }