截流自动化的商城平台
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.

UserAddressLogic.php 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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\logic;
  20. use app\common\model\DevRegion;
  21. use app\common\model\user\UserAddress;
  22. use app\common\server\AreaServer;
  23. use think\facade\Db;
  24. use think\Exception;
  25. class UserAddressLogic
  26. {
  27. /**
  28. * 获取用户地址信息
  29. * @param $user_id
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @throws \think\exception\DbException
  34. */
  35. public static function infoUserAddress($user_id)
  36. {
  37. $UserAddress = new UserAddress();
  38. $info = $UserAddress
  39. ->where(['user_id' => $user_id, 'del' => 0])
  40. ->field('id,contact,telephone,province_id,city_id,district_id,address,is_default')
  41. ->select()
  42. ->toArray();
  43. foreach ($info as &$item) {
  44. $item['province'] = AreaServer::getAddress($item['province_id']);
  45. $item['city'] = AreaServer::getAddress($item['city_id']);
  46. $item['district'] = AreaServer::getAddress($item['district_id']);
  47. }
  48. return $info;
  49. }
  50. /**
  51. * 获取一条地址信息
  52. * @param $user_id
  53. * @param $get
  54. * @return array|\PDOStatement|string|\think\Model|null
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. */
  59. public static function getOneAddress($user_id, $get)
  60. {
  61. $UserAddress = new UserAddress();
  62. $info = $UserAddress
  63. ->where(['id' => (int)$get['id'], 'user_id' => $user_id, 'del' => 0])
  64. ->field('id,contact,telephone,province_id,city_id,district_id,address,is_default')
  65. ->find();
  66. $info['province'] = AreaServer::getAddress($info['province_id']);
  67. $info['city'] = AreaServer::getAddress($info['city_id']);
  68. $info['district'] = AreaServer::getAddress($info['district_id']);
  69. return $info;
  70. }
  71. /**
  72. * 获取默认地址
  73. * @param $user_id
  74. * @return array
  75. */
  76. public static function getDefaultAddress($user_id)
  77. {
  78. $UserAddress = new UserAddress();
  79. $info = $UserAddress
  80. ->where(['is_default' => 1, 'user_id' => $user_id, 'del' => 0])
  81. ->field('id,contact,telephone,province_id,city_id,district_id,address,is_default')
  82. ->findOrEmpty()->toArray();
  83. if (!$info) {
  84. return [];
  85. }
  86. $info['province'] = AreaServer::getAddress($info['province_id']);
  87. $info['city'] = AreaServer::getAddress($info['city_id']);
  88. $info['district'] = AreaServer::getAddress($info['district_id']);
  89. return $info;
  90. }
  91. /**
  92. * 设置默认地址
  93. * @param $user_id
  94. * @param $post
  95. * @return int|string
  96. */
  97. public static function setDefaultAddress($user_id, $post)
  98. {
  99. try {
  100. Db::startTrans();
  101. $UserAddress = new UserAddress();
  102. $UserAddress
  103. ->where(['del' => 0, 'user_id' => $user_id])
  104. ->update(['is_default' => 0]);
  105. $result = $UserAddress
  106. ->where(['id' => $post['id'], 'del' => 0, 'user_id' => $user_id])
  107. ->update(['is_default' => 1]);
  108. Db::commit();
  109. } catch (\Exception $e) {
  110. Db::rollback();
  111. return false;
  112. }
  113. return $result;
  114. }
  115. /**
  116. * 添加收货地址
  117. * @param $user_id
  118. * @param $post
  119. * @return int|string
  120. */
  121. public static function addUserAddress($user_id, $post)
  122. {
  123. try {
  124. Db::startTrans();
  125. $UserAddress = new UserAddress();
  126. if ($post['is_default'] == 1) {
  127. $UserAddress
  128. ->where(['del' => 0, 'user_id' => $user_id])
  129. ->update(['is_default' => 0]);
  130. } else {
  131. $is_first = $UserAddress
  132. ->where(['del' => 0, 'user_id' => $user_id])
  133. ->select();
  134. if (empty($is_first)) {
  135. $post['is_default'] = 1;
  136. }
  137. }
  138. $data = [
  139. 'user_id' => $user_id,
  140. 'contact' => $post['contact'],
  141. 'telephone' => $post['telephone'],
  142. 'province_id' => $post['province_id'],
  143. 'city_id' => $post['city_id'],
  144. 'district_id' => $post['district_id'],
  145. 'address' => $post['address'],
  146. 'is_default' => $post['is_default'],
  147. 'create_time' => time()
  148. ];
  149. $result = $UserAddress->insert($data);
  150. Db::commit();
  151. } catch (Exception $e) {
  152. Db::rollback();
  153. return $e->getMessage();
  154. }
  155. return $result;
  156. }
  157. /**
  158. * 编辑用户地址
  159. * @param $user_id
  160. * @param $post
  161. * @return int|string
  162. * @throws \think\Exception
  163. * @throws \think\exception\PDOException
  164. */
  165. public static function editUserAddress($user_id, $post)
  166. {
  167. try {
  168. Db::startTrans();
  169. $UserAddress = new UserAddress();
  170. if ($post['is_default'] == 1) {
  171. $UserAddress->where(['del' => 0, 'user_id' => $user_id])
  172. ->update(['is_default' => 0]);
  173. }
  174. $data = [
  175. 'contact' => $post['contact'],
  176. 'telephone' => $post['telephone'],
  177. 'province_id' => $post['province_id'],
  178. 'city_id' => $post['city_id'],
  179. 'district_id' => $post['district_id'],
  180. 'address' => $post['address'],
  181. 'is_default' => $post['is_default'],
  182. 'update_time' => time()
  183. ];
  184. $UserAddress
  185. ->where(['id' => $post['id'], 'del' => 0, 'user_id' => $user_id])
  186. ->update($data);
  187. Db::commit();
  188. return true;
  189. } catch (\Exception $e) {
  190. Db::rollback();
  191. return false;
  192. }
  193. }
  194. /**
  195. * 删除用户地址
  196. * @param $user_id
  197. * @param $post
  198. * @return int|string
  199. * @throws \think\Exception
  200. * @throws \think\exception\PDOException
  201. */
  202. public static function delUserAddress($user_id, $post)
  203. {
  204. $data = [
  205. 'del' => 1,
  206. 'update_time' => time()
  207. ];
  208. $UserAddress = new UserAddress();
  209. return $UserAddress
  210. ->where(['id' => $post['id'], 'del' => 0, 'user_id' => $user_id])
  211. ->update($data);
  212. }
  213. /**
  214. * 获取省市区id
  215. * @param $province
  216. * @param $city
  217. * @param $district
  218. * @return array
  219. */
  220. public static function handleRegion($province, $city, $district)
  221. {
  222. if (!$province || !$city || !$district) {
  223. return [];
  224. }
  225. $result = [];
  226. $result['province'] = self::handleRegionField($province, 1);
  227. if (!$result['province']) {
  228. return [];
  229. }
  230. $result['city'] = self::handleRegionField($city, 2);
  231. $result['district'] = self::handleRegionField($district, 3);
  232. return $result;
  233. }
  234. /**
  235. * 获取对应省,市,区的id
  236. * @param $keyword
  237. * @param int $level
  238. * @return mixed|string
  239. * @throws \think\db\exception\DataNotFoundException
  240. * @throws \think\db\exception\ModelNotFoundException
  241. * @throws \think\exception\DbException
  242. */
  243. public static function handleRegionField($keyword, $level = 1)
  244. {
  245. $data = '';
  246. $DevRegion = new DevRegion();
  247. $list = $DevRegion->where('level', $level)->select();
  248. foreach ($list as $k => $v) {
  249. if ($keyword == $v['name']) {
  250. $data = $v['id'];
  251. }
  252. }
  253. if (empty($data)) {
  254. foreach ($list as $k => $v) {
  255. if (strpos($v['name'], $keyword) !== false) {
  256. $data = $v['id'];
  257. }
  258. }
  259. if (empty($data)) {
  260. foreach ($list as $v) {
  261. if (strpos($keyword, $v['name']) !== false) {
  262. $data = $v['id'];
  263. }
  264. }
  265. }
  266. }
  267. return $data;
  268. }
  269. /**
  270. * User: 意象信息科技 mjf
  271. * Desc: 获取用户指定id的地址
  272. * @param $address
  273. * @param $user_id
  274. * @return array|\PDOStatement|string|\think\Model|null
  275. * @throws \think\db\exception\DataNotFoundException
  276. * @throws \think\db\exception\ModelNotFoundException
  277. * @throws \think\exception\DbException
  278. */
  279. public static function getUserAddressById($address, $user_id)
  280. {
  281. $UserAddress = new UserAddress();
  282. $info = $UserAddress
  283. ->where(['id' => $address, 'user_id' => $user_id, 'del' => 0])
  284. ->field('id,contact,telephone,province_id,city_id,district_id,address,is_default')
  285. ->find();
  286. if (!$info) {
  287. return [];
  288. }
  289. $info['province'] = AreaServer::getAddress($info['province_id']);
  290. $info['city'] = AreaServer::getAddress($info['city_id']);
  291. $info['district'] = AreaServer::getAddress($info['district_id']);
  292. return $info;
  293. }
  294. }