Address.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. namespace app\data\controller\api\auth;
  3. use app\data\controller\api\Auth;
  4. use think\admin\extend\CodeExtend;
  5. /**
  6. * 用户收货地址管理
  7. * Class Address
  8. * @package app\data\controller\api\auth
  9. */
  10. class Address extends Auth
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. private $table = 'DataUserAddress';
  17. /**
  18. * 添加收货地址
  19. * @throws \think\db\exception\DbException
  20. */
  21. public function set()
  22. {
  23. $data = $this->_vali([
  24. 'uid.value' => $this->uuid,
  25. 'type.default' => 0,
  26. 'code.default' => '',
  27. 'idcode.default' => '',
  28. 'type.in:0,1' => '地址状态不在范围!',
  29. 'name.require' => '收货姓名不能为空!',
  30. 'phone.mobile' => '收货手机格式错误!',
  31. 'phone.require' => '收货手机不能为空!',
  32. 'province.require' => '地址省份不能为空!',
  33. 'city.require' => '地址城市不能为空!',
  34. 'area.require' => '地址区域不能为空!',
  35. 'address.require' => '详情地址不能为空!',
  36. 'deleted.value' => 0,
  37. ]);
  38. if (empty($data['code'])) {
  39. unset($data['code']);
  40. $count = $this->app->db->name($this->table)->where($data)->count();
  41. if ($count > 0) $this->error('抱歉,该地址已经存在!');
  42. $data['code'] = CodeExtend::uniqidDate(12, 'A');
  43. if ($this->app->db->name($this->table)->insert($data) === false) {
  44. $this->error('添加地址失败!');
  45. }
  46. } else {
  47. $map = ['uid' => $this->uuid, 'code' => $data['code']];
  48. $address = $this->app->db->name($this->table)->where($map)->find();
  49. if (empty($address)) $this->error('修改地址不存在!');
  50. $this->app->db->name($this->table)->where($map)->update($data);
  51. }
  52. // 去除其它默认选项
  53. if (isset($data['type']) && $data['type'] > 0) {
  54. $map = [['uid', '=', $this->uuid], ['code', '<>', $data['code']]];
  55. $this->app->db->name($this->table)->where($map)->update(['type' => 0]);
  56. }
  57. $this->success('地址保存成功!', $this->_getAddress($data['code']));
  58. }
  59. /**
  60. * 获取收货地址
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\DbException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. */
  65. public function get()
  66. {
  67. $query = $this->_query($this->table)->withoutField('deleted');
  68. $query->equal('code')->where(['uid' => $this->uuid, 'deleted' => 0]);
  69. $result = $query->order('type desc,id desc')->page(false, false, false, 15);
  70. $this->success('获取地址数据!', $result);
  71. }
  72. /**
  73. * 修改收货地址状态
  74. * @throws \think\db\exception\DbException
  75. */
  76. public function state()
  77. {
  78. $data = $this->_vali([
  79. 'uid.value' => $this->uuid,
  80. 'type.in:0,1' => '地址状态不在范围!',
  81. 'type.require' => '地址状态不能为空!',
  82. 'code.require' => '地址编号不能为空!',
  83. ]);
  84. // 检查地址是否存在
  85. $map = ['uid' => $data['uid'], 'code' => $data['code']];
  86. if ($this->app->db->name($this->table)->where($map)->count() < 1) {
  87. $this->error('修改的地址不存在!');
  88. }
  89. // 更新默认地址状态
  90. $data['type'] = intval($data['type']);
  91. $this->app->db->name($this->table)->where($map)->update(['type' => $data['type']]);
  92. // 去除其它默认选项
  93. if ($data['type'] > 0) {
  94. $map = [['uid', '=', $this->uuid], ['code', '<>', $data['code']]];
  95. $this->app->db->name($this->table)->where($map)->update(['type' => 0]);
  96. }
  97. $this->success('默认设置成功!', $this->_getAddress($data['code']));
  98. }
  99. /**
  100. * 删除收货地址
  101. * @throws \think\db\exception\DbException
  102. */
  103. public function remove()
  104. {
  105. $map = $this->_vali([
  106. 'uid.value' => $this->uuid, 'code.require' => '地址编号不能为空!',
  107. ]);
  108. $address = $this->app->db->name($this->table)->where($map)->find();
  109. if (empty($address)) $this->error('需要删除的地址不存在!');
  110. if ($this->app->db->name($this->table)->where($map)->update(['deleted' => 1]) !== false) {
  111. $this->success('删除地址成功!');
  112. } else {
  113. $this->error('删除地址失败!');
  114. }
  115. }
  116. /**
  117. * 获取指定的收货地址
  118. * @param string $code
  119. * @return null|array
  120. * @throws \think\db\exception\DataNotFoundException
  121. * @throws \think\db\exception\DbException
  122. * @throws \think\db\exception\ModelNotFoundException
  123. */
  124. private function _getAddress(string $code): ?array
  125. {
  126. $map = ['code' => $code, 'uid' => $this->uuid, 'deleted' => 0];
  127. return $this->app->db->name($this->table)->withoutField('deleted')->where($map)->find();
  128. }
  129. }