截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserAddress.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\controller;
  20. use app\api\logic\UserAddressLogic;
  21. use app\api\validate\UserAddressValidate;
  22. use app\common\basics\Api;
  23. use app\common\server\JsonServer;
  24. use think\exception\ValidateException;
  25. class UserAddress extends Api
  26. {
  27. public $like_not_need_login = ['handleregion'];
  28. //获取地址列表
  29. public function lists()
  30. {
  31. $user_id = $this->user_id;
  32. $result = UserAddressLogic::infoUserAddress($user_id);
  33. return JsonServer::success('获取成功', $result);
  34. }
  35. //获取一条地址详情
  36. public function detail()
  37. {
  38. $get = $this->request->get();
  39. try {
  40. validate(UserAddressValidate::class)->scene('one')->check($get);
  41. $user_id = $this->user_id;
  42. $result = UserAddressLogic::getOneAddress($user_id, $get);
  43. if ($result) {
  44. // return JsonServer::success('获取成功', $result);
  45. $data = ['code'=>1,'show'=>0,'msg' => '获取成功','data'=>$result];
  46. return json($data);
  47. }
  48. return JsonServer::error('获取失败');
  49. } catch (ValidateException $e) {
  50. return JsonServer::error('获取失败');
  51. }
  52. }
  53. //获取默认地址
  54. public function getDefault()
  55. {
  56. $user_id = $this->user_id;
  57. $result = UserAddressLogic::getDefaultAddress($user_id);
  58. if ($result) {
  59. return JsonServer::success('获取成功', $result);
  60. }
  61. return JsonServer::error('获取失败');
  62. }
  63. //设置默认地址
  64. public function setDefault()
  65. {
  66. $post = $this->request->post();
  67. try {
  68. validate(UserAddressValidate::class)->scene('set')->check($post);
  69. $user_id = $this->user_id;
  70. $result = UserAddressLogic::setDefaultAddress($user_id, $post);
  71. if ($result) {
  72. return JsonServer::success('设置成功');
  73. }
  74. return JsonServer::error('设置失败');
  75. } catch (ValidateException $e) {
  76. return JsonServer::error('设置失败');
  77. }
  78. }
  79. //添加收货地址
  80. public function add()
  81. {
  82. $post = $this->request->post();
  83. try {
  84. (new UserAddressValidate())->goCheck('add',$post);
  85. $user_id = $this->user_id;
  86. $result = UserAddressLogic::addUserAddress($user_id, $post);
  87. if ($result) {
  88. return JsonServer::success('添加成功');
  89. }
  90. return JsonServer::error('添加失败');
  91. } catch (ValidateException $e) {
  92. return JsonServer::error('添加失败');
  93. }
  94. }
  95. //更新收货地址
  96. public function update()
  97. {
  98. $post = $this->request->post();
  99. try {
  100. validate(UserAddressValidate::class)->scene('edit')->check($post);
  101. $user_id = $this->user_id;
  102. $result = UserAddressLogic::editUserAddress($user_id, $post);
  103. if ($result) {
  104. return JsonServer::success('修改成功');
  105. }
  106. return JsonServer::error('修改失败');
  107. } catch (ValidateException $e) {
  108. return JsonServer::error($e->getMessage());
  109. }
  110. }
  111. //删除收货地址
  112. public function del()
  113. {
  114. $post = $this->request->post();
  115. try {
  116. validate(UserAddressValidate::class)->scene('del')->check($post);
  117. $user_id = $this->user_id;
  118. $result = UserAddressLogic::delUserAddress($user_id, $post);
  119. if ($result) {
  120. return JsonServer::success('删除成功');
  121. }
  122. return JsonServer::error('删除失败');
  123. } catch (ValidateException $e) {
  124. return JsonServer::error('删除失败');
  125. }
  126. }
  127. //将省市区名称转换成省市区id
  128. public function handleRegion()
  129. {
  130. $post = $this->request->post();
  131. try {
  132. validate(UserAddressValidate::class)->scene('handleRegion')->check($post);
  133. $province = $this->request->post('province');
  134. $city = $this->request->post('city');
  135. $district = $this->request->post('district');
  136. $res = UserAddressLogic::handleRegion($province, $city, $district);
  137. if ($res) {
  138. return JsonServer::success('获取成功', $res);
  139. }
  140. return JsonServer::error('获取失败');
  141. } catch (ValidateException $e) {
  142. return JsonServer::error('获取失败');
  143. }
  144. }
  145. }