123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\v1\marketing\live;
- use app\adminapi\controller\AuthController;
- use app\services\activity\live\LiveGoodsServices;
- use think\facade\App;
- /**
- * 直播间商品
- * Class LiveGoods
- * @package app\controller\admin\store
- */
- class LiveGoods extends AuthController
- {
- /**
- * LiveGoods constructor.
- * @param App $app
- * @param LiveGoodsServices $services
- */
- public function __construct(App $app, LiveGoodsServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 直播间商品列表
- * @return mixed
- */
- public function list()
- {
- $where = $this->request->postMore([
- ['kerword', ''],
- ['status', ''],
- ['is_show', ''],
- ['live_id', 0]
- ]);
- return app('json')->success($this->services->getList($where));
- }
- /**
- * 生成直播商品
- * @return mixed
- */
- public function create()
- {
- [$product_ids] = $this->request->postMore([
- ['product_id', []]
- ], true);
- return app('json')->success($this->services->create($product_ids));
- }
- /**
- * 上传直播商品
- * @return mixed
- * @throws \EasyWeChat\Core\Exceptions\InvalidArgumentException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function add()
- {
- [$goods_info] = $this->request->postMore([
- ['goods_info', []]
- ], true);
- $error = false;
- foreach ($goods_info as $goods) {
- $this->validate($goods, \app\adminapi\validate\marketing\LiveGoodsValidate::class, 'save');
- if (!preg_match('/.*(\.png|\.jpg|\.jpeg|\.gif)$/', $goods['image']) && strpos(strtolower($goods['image']), "phar://") !== false) {
- $error = true;
- }
- }
- if ($error) return app('json')->fail(40137);
- $this->services->add($goods_info);
- return app('json')->success(100000);
- }
- /**
- * 商品详情
- * @param $id
- * @return mixed
- */
- public function detail($id)
- {
- if (!$id) return app('json')->fail(100100);
- $goods = $this->services->get($id, ['*'], ['product']);
- return app('json')->success($goods ? $goods->toArray() : []);
- }
- /**
- * 同步直播商品
- * @return mixed
- */
- public function syncGoods()
- {
- $this->services->syncGoodStatus();
- return app('json')->success(100038);
- }
- /**
- * 重新提交审核
- * @param $id
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function audit($id)
- {
- if (!$id) return app('json')->fail(100100);
- $this->services->audit((int)$id);
- return app('json')->success(100014);
- }
- /**
- * 撤回审核
- * @param $id
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function resetAudit($id)
- {
- if (!$id) return app('json')->fail(100100);
- $this->services->resetAudit((int)$id);
- return app('json')->success(100014);
- }
- /**
- * 设置状态
- * @param int $id
- * @param $is_show
- * @return mixed
- */
- public function setShow(int $id, $is_show)
- {
- if (!$id) return app('json')->fail(100100);
- return app('json')->success($this->services->isShow($id, $is_show));
- }
- /**
- * 删除商品
- * @param $id
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function delete($id)
- {
- if (!$id) return app('json')->fail(100100);
- $this->services->delete($id);
- return app('json')->success(100002);
- }
- }
|