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.
141 lines
4.2 KiB
141 lines
4.2 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\api\controller;
|
|
|
|
use think\response\Json;
|
|
use app\api\service\User as UserService;
|
|
use app\api\service\Address as AddressService;
|
|
use app\api\model\UserAddress as UserAddressModel;
|
|
use cores\exception\BaseException;
|
|
|
|
/**
|
|
* 收货地址管理
|
|
* Class Address
|
|
* @package app\api\controller
|
|
*/
|
|
class Address extends Controller
|
|
{
|
|
/**
|
|
* 收货地址列表
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function list(): Json
|
|
{
|
|
// 获取收货地址列表
|
|
$model = new UserAddressModel;
|
|
$list = $model->getList($this->request->param('user_id'));
|
|
return $this->renderSuccess(compact('list'));
|
|
}
|
|
|
|
/**
|
|
* 获取当前用户默认收货地址
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function defaultId(): Json
|
|
{
|
|
$useInfo = UserService::getCurrentLoginUser(true);
|
|
return $this->renderSuccess(['defaultId' => $useInfo['address_id']]);
|
|
}
|
|
|
|
/**
|
|
* 收货地址详情
|
|
* @param int $addressId 地址ID
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function detail(int $addressId): Json
|
|
{
|
|
$detail = UserAddressModel::detail($addressId);
|
|
return $this->renderSuccess(compact('detail'));
|
|
}
|
|
|
|
/**
|
|
* 添加收货地址
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function add(): Json
|
|
{
|
|
$model = new UserAddressModel;
|
|
if ($model->add($this->postForm())) {
|
|
return $this->renderSuccess([], '添加成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '添加失败');
|
|
}
|
|
|
|
/**
|
|
* 编辑收货地址
|
|
* @param int $addressId 地址ID
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function edit(int $addressId): Json
|
|
{
|
|
$model = UserAddressModel::detail($addressId);
|
|
if ($model->edit($this->postForm())) {
|
|
return $this->renderSuccess([], '更新成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '更新失败');
|
|
}
|
|
|
|
/**
|
|
* 设为默认地址
|
|
* @param int $addressId 地址ID
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function setDefault(int $addressId): Json
|
|
{
|
|
$model = UserAddressModel::detail($addressId);
|
|
if ($model->setDefault((int)$model['address_id'])) {
|
|
return $this->renderSuccess([], '设置成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '设置失败');
|
|
}
|
|
|
|
/**
|
|
* 删除收货地址
|
|
* @param int $addressId 地址ID
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function remove(int $addressId): Json
|
|
{
|
|
$model = UserAddressModel::detail($addressId);
|
|
if ($model->remove()) {
|
|
return $this->renderSuccess([], '删除成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '删除失败');
|
|
}
|
|
|
|
/**
|
|
* 收货地址智能解析
|
|
* @param string $content
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function analysis(string $content): Json
|
|
{
|
|
$service = new AddressService;
|
|
$detail = $service->analysis($content);
|
|
return $this->renderSuccess(compact('detail'));
|
|
}
|
|
}
|
|
|