// +---------------------------------------------------------------------- declare (strict_types = 1); namespace app\api\model; use app\api\model\User as UserModel; use app\api\service\User as UserService; use app\common\model\UserAddress as UserAddressModel; use app\common\exception\BaseException; use app\api\model\DeliveryLimit as DeliveryLimitModel; /** * 用户收货地址模型 * Class UserAddress * @package app\common\model */ class UserAddress extends UserAddressModel { /** * 隐藏字段 * @var array */ protected $hidden = [ 'is_delete', 'store_id', 'create_time', 'update_time' ]; // /** // * 地区名称 // * @param $value // * @param $data // * @return array // */ // public function getRegionAttr($value, $data) // { // return array_values(parent::getRegionAttr($value, $data)); // } /** * 获取收货地址列表 * @return \think\Collection * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @throws BaseException */ public function getList() { $userId = UserService::getCurrentLoginUserId(); return $this->where('user_id', '=', $userId) ->where('is_delete', '=', 0) ->order('default','desc') ->select(); } /** * 新增收货地址 * @param array $data * @return mixed * @throws BaseException */ public function add(array $data) { // 当前用户信息 $user = UserService::getCurrentLoginUser(true); // 省市区ID $this->getRegionId($data); // 添加收货地址 return $this->transaction(function () use ($user, $data) { $this->save([ 'name' => $data['name'], 'phone' => $data['phone'], 'province_id' => $data['province_id'], 'city_id' => $data['city_id'], 'region_id' => $data['region_id'], 'detail' => $data['detail'], 'default' => $data['default'], 'user_id' => $user['user_id'], 'store_id' => self::$storeId ]); // 如果没有默认地址或者设置为默认(default=1),就设为默认收货地址 if(!$user['address_id'] || $data['default']==1){ $this->setDefault((int)$this['address_id']); } return true; }); } /** * 格式化用户上传的省市区数据 * @param array $data * @return array * @throws BaseException */ private function getRegionId(array $data) { if (!isset($data['province_id']) || !isset($data['city_id']) || !isset($data['region_id'])) { throwError('省市区不能为空'); } $detail = DeliveryLimitModel::detail(DeliveryLimitModel::DEFAULT_ID); if (in_array($data['city_id'],$detail['region'])) { throwError('限购地区省市不能设置为地址'); } // return array_map(function ($item) { // return $item['value']; // }, $data['region']); } /** * 编辑收货地址 * @param array $data * @return bool * @throws BaseException */ public function edit(array $data) { // 省市区ID $this->getRegionId($data); // 更新收货地址 return $this->transaction(function () use ($data) { $this->save([ 'name' => $data['name'], 'phone' => $data['phone'], 'province_id' => $data['province_id'], 'city_id' => $data['city_id'], 'region_id' => $data['region_id'], 'default' => $data['default'], 'detail' => $data['detail'] ]); // 如果没有默认地址或者设置为默认(default=1),就设为默认收货地址 if($data['default']==1){ $this->setDefault((int)$this['address_id']); } return true; }); } /** * 设为默认收货地址 * @param int $addressIid * @return bool * @throws BaseException */ public function setDefault(int $addressIid) { // 设为默认地址 $userId = UserService::getCurrentLoginUserId(); return $this->transaction(function () use ($addressIid, $userId) { $this->updateBase(['default' => 1], [['address_id', '=', $addressIid],['user_id', '=', $userId]]); $this->updateBase(['default' => 0], [['address_id', '<>', $addressIid],['user_id', '=', $userId]]); UserModel::updateBase(['address_id' => $addressIid], ['user_id' => $userId]); return true; }); } /** * 删除收货地址 * @return bool * @throws BaseException */ public function remove() { // 查询当前是否为默认地址 $user = UserService::getCurrentLoginUser(true); // 清空默认地址 if ($user['address_id'] == $this['address_id']) { UserModel::updateBase(['address_id' => 0], ['user_id' => $this['user_id']]); } // 标记为已删除 return $this->save(['is_delete' => 1]); // return $this->delete(); } /** * 收货地址详情 * @param int $addressId * @return UserAddress|array|null * @throws BaseException */ public static function detail(int $addressId) { $userId = UserService::getCurrentLoginUserId(); $detail = self::get(['user_id' => $userId, 'address_id' => $addressId]); if (empty($detail)) { throwError('未找到该收货地址'); return false; } return $detail; } }