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.
yanzong/app/api/controller/Goods.php

304 lines
9.3 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 app\api\model\{Goods as GoodsModel, Store as StoreModel};
use app\api\service\{Goods as GoodsService, User as UserService};
use app\common\model\GoodsImage as GoodsImageModel;
use app\common\model\UploadFile as UploadFileModel;
use app\common\service\qrcode\Goods as GoodsPoster;
use cores\exception\BaseException;
use think\db\exception\DbException;
use think\response\Json;
/**
* 商品控制器
* Class Goods
* @package app\api\controller
*/
class Goods extends Controller
{
/**
* 商品列表
* @return Json
* @throws DbException
*/
public function list(): Json
{
// 获取列表数据
$model = new GoodsModel;
$param = $this->request->param();
$list = $model->getList($param);
return $this->renderSuccess(compact('list'));
}
/**
* 获取商品详情(详细信息)
* @param int $goodsId 商品ID
* @param bool $verifyStatus 是否验证商品状态(上架)
* @return Json
* @throws \think\db\exception\DataNotFoundException
* @throws DbException
* @throws \think\db\exception\ModelNotFoundException
* @throws BaseException
*/
public function detail(int $goodsId, bool $verifyStatus = true): Json
{
// wmc商品详情
$model = new GoodsModel;
$goodsInfo = $model->getDetails($goodsId, $verifyStatus);
if (!empty($goodsInfo['content'])) {
$goodsInfo['content'] = str_ireplace('onload="if(this.width>750){this.height=this.height*(750.0/this.width); this.width = 750;}', '', $goodsInfo['content']);
}
return $this->renderSuccess(['detail' => $goodsInfo]);
}
public function browseLog(): Json
{
$model = new GoodsModel;
$goodsInfo = $model->browseLogList();
return $this->renderSuccess($goodsInfo);
}
public function presale()
{
$param = $this->request->param();
$model = new GoodsModel;
$goodsInfo = $model->presale($param);
if ($goodsInfo) {
return $this->renderSuccess('预约成功');
}
return $this->renderError('您已经预约过了');
}
public function browseDel()
{
$param = $this->request->param();
$model = new GoodsModel;
$goodsInfo = $model->browseDel($param);
if ($goodsInfo) {
return $this->renderSuccess('删除成功');
}
return $this->renderError('删除失败');
}
public function presaleList()
{
$param = $this->request->param();
$model = new GoodsModel;
$list = $model->presaleList($param)->toArray();
if (!$list) {
return $this->renderSuccess(compact('list'));
}
foreach ($list['data'] as $key => &$value) {
$goods_image = GoodsImageModel::where('goods_id', $value['goods_id'])->find();
$file_path = UploadFileModel::where('file_id', $goods_image['image_id'])->find();
$value['image'] = getUrl($file_path['file_path'], $file_path['domain']);
}
return $this->renderSuccess(compact('list'));
}
public function presaleCateList()
{
$param = $this->request->param();
$model = new GoodsModel;
$list = $model->presaleCateList($param);
return $this->renderSuccess($list);
}
public function presaleGoodsList()
{
$param = $this->request->param();
$model = new GoodsModel;
$list = $model->presaleGoodsList($param);
return $this->renderSuccess(compact('list'));
}
public function canlpresale()
{
$param = $this->request->param();
$model = new GoodsModel;
$goodsInfo = $model->canlpresale($param);
if ($goodsInfo) {
return $this->renderSuccess('成功');
}
return $this->renderError('失败');
}
/**
* 获取商品详情(基础信息)
* @param int $goodsId 商品ID
* @param bool $verifyStatus 是否验证商品状态(上架)
* @return Json
* @throws BaseException
*/
public function basic(int $goodsId, bool $verifyStatus = true): Json
{
// 获取商品详情
$model = new GoodsModel;
$detail = $model->getBasic($goodsId, $verifyStatus);
return $this->renderSuccess(compact('detail'));
}
/**
* 获取商品规格数据
* @param int $goodsId
* @return Json
* @throws \think\db\exception\DataNotFoundException
* @throws DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function specData(int $goodsId): Json
{
// 获取商品详情
$model = new GoodsModel;
$specData = $model->getSpecData($goodsId);
return $this->renderSuccess(compact('specData'));
}
/**
* 获取商品的指定SKU信息
* @param int $goodsId 商品ID
* @param string $goodsSkuId 商品SKU标识
* @return Json
*/
public function skuInfo(int $goodsId, string $goodsSkuId): Json
{
$skuInfo = GoodsService::getSkuInfo($goodsId, $goodsSkuId);
return $this->renderSuccess(compact('skuInfo'));
}
/**
* 推荐的商品列表
* @return Json
* @throws \think\db\exception\DataNotFoundException
* @throws DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function recommended(): Json
{
$service = new GoodsService;
// $cache_key = "goods_recommended".$this->storeId;
// if(Cache::has($cache_key)) {
// $goodsList = Cache::get($cache_key);
// return $this->renderSuccess(compact('goodsList'));
// }
$goodsList = $service->recommended();
// Cache::set($cache_key, $goodsList, 60*60);
return $this->renderSuccess(compact('goodsList'));
}
/**
* 商品大牌和新品
* @return Json
*/
public function brandList(): Json
{
$service = new GoodsService;
$storeid = request()->header()['storeid'];
$goodsList = $service->brandList($storeid);
return $this->renderSuccess($goodsList);
}
public function getCommonConfig(): Json
{
$service = new GoodsService;
// 获取店铺信息
$storeid = request()->header()['storeid'];
$storeInfo = StoreModel::where("store_id", $storeid)->find();
if (empty($storeInfo)) {
return $this->renderError("商铺信息不存在");
}
$goodsList = $service->getCommonConfig($storeInfo);
return $this->renderSuccess($goodsList);
}
public function charts(): Json
{
$service = new GoodsService;
$storeid = request()->header()['storeid'];
$goodsList = $service->charts($storeid);
return $this->renderSuccess($goodsList);
}
/**
* 排行行查看更多
* @return Json
*/
public function chartsGoodsList(): Json
{
$service = new GoodsService;
$storeid = request()->header()['storeid'];
$goodsList = $service->chartsGoodsList($storeid);
return $this->renderSuccess($goodsList);
}
/**
* 首页分类商品排行榜 默认返回3条
* @return Json
*/
public function chartsGoodsJing(): Json
{
$service = new GoodsService;
$storeid = request()->header()['storeid'];
$goodsList = $service->chartsGoodsJing($storeid);
return $this->renderSuccess($goodsList);
}
public function cityInfo(): Json
{
$service = new GoodsService;
$storeId = $this->request->storeId();
$goodsList = $service->cityInfo($storeId);
return $this->renderSuccess($goodsList);
}
public function hotWord(): Json
{
$service = new GoodsService;
$list = $service->hotWord($this->request->param('page'));
return $this->renderSuccess($list);
}
/**
* 生成商品海报
* @param int $goodsId 商品ID
* @param string $channel 二维码渠道(小程序码、h5码)
* @throws BaseException
* @throws \think\db\exception\DataNotFoundException
* @throws DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function poster(int $goodsId, string $channel = 'H5'): Json
{
// 获取商品详情
$model = new GoodsModel;
$goodsInfo = $model->setEnableGradeMoney(false)->getBasic($goodsId);
// 生成商品海报图
$userId = UserService::getCurrentLoginUserId();
$Qrcode = new GoodsPoster($goodsInfo, $userId, $channel);
return $this->renderSuccess(['imageUrl' => $Qrcode->getImage()]);
}
}