2019-04-02 13:46:30 +08:00

118 lines
4.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | framework
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://framework.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\store\controller\api;
use library\Controller;
use think\Db;
/**
* 商品管理接口
* Class Goods
* @package app\store\controller\api
*/
class Goods extends Controller
{
/**
* 获取商品列表
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function gets()
{
$where = [['status', 'eq', '1'], ['vip_mod', 'eq', '0'], ['is_deleted', 'eq', '0']];
$this->success('获取商品列表成功!', ['list' => $this->_getGoodsList($where)]);
}
/**
* 获取礼包商品列表
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function vips()
{
$where = [['status', 'eq', '1'], ['vip_mod', 'neq', '0'], ['is_deleted', 'eq', '0']];
$this->success('获取礼包列表成功!', ['list' => $this->_getGoodsList($where)]);
}
/**
* 获取商品列表
* @param array $where
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
private function _getGoodsList($where = [])
{
if ($this->request->has('title', 'post', true)) {
$where[] = ['title', 'like', "%{$this->request->post('title')}%"];
}
if ($this->request->has('cate_id', 'post', true)) {
$where[] = ['cate_id', 'eq', $this->request->post('cate_id')];
}
$field = 'id,title,logo,cate_id,image,number_sales,number_stock,vip_mod,vip_month,vip_discount,content,specs,lists';
$list = Db::name('StoreGoods')->field($field)->where($where)->order('sort asc,id desc')->select();
$goodsList = Db::name('StoreGoodsList')->whereIn('goods_id', array_unique(array_column($list, 'id')))->select();
foreach ($list as &$vo) {
$vo['list'] = [];
$vo['image'] = explode('|', $vo['image']);
$vo['specs'] = json_decode($vo['specs'], true);
$vo['lists'] = json_decode($vo['lists'], true);
foreach ($goodsList as $goods) if ($goods['goods_id'] === $vo['id']) {
array_push($vo['list'], $goods);
}
}
return $list;
}
/**
* 获取单个商品信息
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function get()
{
$goods_id = input('goods_id');
$where = ['is_deleted' => '0', 'status' => '1', 'id' => $goods_id];
$field = 'id,title,logo,cate_id,image,number_sales,number_stock,vip_mod,vip_month,vip_discount,content,specs,lists';
$goods = Db::name('StoreGoods')->field($field)->where($where)->find();
if (empty($goods)) $this->error('指定商品不存在请更换商品ID重试');
$goods['image'] = explode('|', $goods['image']);
$goods['specs'] = json_decode($goods['specs'], true);
$goods['lists'] = json_decode($goods['lists'], true);
$goods['list'] = Db::name('StoreGoodsList')->where(['goods_id' => $goods_id])->select();
if (empty($goods['list'])) $this->error('指定商品规格不存在请更换商品ID重试');
$this->success('获取商品信息成功!', $goods);
}
/**
* 获取商品分类信息
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function cate()
{
$where = ['is_deleted' => '0', 'status' => '1'];
$field = 'id cate_id,logo cate_logo,title cate_title';
$list = Db::name('StoreGoodsCate')->field($field)->where($where)->order('sort asc,id desc')->select();
$this->success('获取商品分类成功!', ['list' => $list]);
}
}