截流自动化的商城平台
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.

LiveGoodsLogic.php 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\logic\live;
  20. use app\common\basics\Logic;
  21. use app\common\enum\LiveGoodsEnum;
  22. use app\common\model\live\LiveGoods;
  23. use app\common\server\FileServer;
  24. use app\common\server\UrlServer;
  25. use app\common\server\WxMnpLiveServer;
  26. use think\facade\Db;
  27. /**
  28. * 直播商品逻辑层
  29. * Class LiveGoodsLogic
  30. * @package app\adminapi\logic\live
  31. */
  32. class LiveGoodsLogic extends Logic
  33. {
  34. /**
  35. * @notes 直播商品列表
  36. * @param $params
  37. * @return array
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\DbException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @author 段誉
  42. * @date 2023/2/15 19:00
  43. */
  44. public static function lists($params)
  45. {
  46. $where[] = ['del', '=', 0];
  47. $where[] = ['shop_id', '=', $params['shop_id']];
  48. if (!empty($params['goods_name'])) {
  49. $where[] = ['name', 'like', '%' . $params['goods_name'] . '%'];
  50. }
  51. if (!empty($params['status'])) {
  52. if ($params['status'] == 'ing') {
  53. $where[] = ['sys_audit_status', 'in', [
  54. LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_PLATFORM,
  55. LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_WECHAT
  56. ]];
  57. }
  58. if ($params['status'] == 'success') {
  59. $where[] = ['sys_audit_status', '=', LiveGoodsEnum::SYS_AUDIT_STATUS_SUCCESS];
  60. }
  61. if ($params['status'] == 'fail') {
  62. $where[] = ['sys_audit_status', '=', LiveGoodsEnum::SYS_AUDIT_STATUS_FAIL];
  63. }
  64. }
  65. $count = LiveGoods::where($where)->count();
  66. $lists = LiveGoods::where($where)
  67. ->order(['id' => 'desc'])
  68. ->page($params['page'], $params['limit'])
  69. ->append(['audit_status_text', 'price_text', 'goods_stock'])
  70. ->select()->toArray();
  71. foreach ($lists as &$item) {
  72. $item['cover_img'] = UrlServer::getFileUrl($item['cover_img']);
  73. }
  74. return ['count' => $count, 'lists' => $lists];
  75. }
  76. /**
  77. * @notes 添加直播商品
  78. * @param array $params
  79. * @return bool
  80. * @throws \GuzzleHttp\Exception\GuzzleException
  81. * @author 段誉
  82. * @date 2023/2/15 18:26
  83. */
  84. public static function add(array $params)
  85. {
  86. try {
  87. $price = 0;
  88. $price2 = 0;
  89. switch ($params['price_type']) {
  90. case LiveGoodsEnum::PRICE_ONE:
  91. $price = $params['price'];
  92. break;
  93. case LiveGoodsEnum::PRICE_RANGE:
  94. $price = $params['section_price_start'];
  95. $price2 = $params['section_price_end'];
  96. break;
  97. case LiveGoodsEnum::PRICE_DISCOUNT:
  98. $price = $params['discount_price_start'];
  99. $price2 = $params['discount_price_end'];
  100. break;
  101. }
  102. $data = [
  103. 'shop_id' => $params['shop_id'],
  104. 'source_type' => LiveGoodsEnum::SOURCE_TYPE_SELF,
  105. 'name' => $params['name'],
  106. 'price_type' => $params['price_type'],
  107. 'price' => $price,
  108. 'price2' => $price2,
  109. 'url' => $params['url'],
  110. 'cover_img_url' => FileServer::wechatLiveMaterial($params['cover_img']),
  111. 'cover_img' => UrlServer::setFileUrl($params['cover_img']),
  112. ];
  113. if (isset($params['source_type']) && $params['source_type'] == LiveGoodsEnum::SOURCE_TYPE_GOODS) {
  114. $data['source_id'] = $params['source_id'];
  115. $data['source_type'] = LiveGoodsEnum::SOURCE_TYPE_GOODS;
  116. }
  117. LiveGoods::create($data);
  118. return true;
  119. } catch (\Exception $e) {
  120. self::$error = $e->getMessage();
  121. return false;
  122. }
  123. }
  124. /**
  125. * @notes 直播商品详情
  126. * @param $id
  127. * @return array
  128. * @author 段誉
  129. * @date 2023/2/16 10:42
  130. */
  131. public static function detail($params)
  132. {
  133. $detail = LiveGoods::where(['id' => $params['id'], 'shop_id' => $params['shop_id']])
  134. ->append(['price_type_text', 'price_tips', 'source_type_text', 'audit_status_text'])
  135. ->findOrEmpty()->toArray();
  136. $detail['cover_img'] = UrlServer::getFileUrl($detail['cover_img']);
  137. return $detail;
  138. }
  139. /**
  140. * @notes 删除直播商品
  141. * @param array $params
  142. * @return bool|string
  143. * @author 段誉
  144. * @date 2023/2/16 10:37
  145. */
  146. public static function del(array $params)
  147. {
  148. Db::startTrans();
  149. try {
  150. $goods = LiveGoods::findOrEmpty($params['id'])->toArray();
  151. if ($goods['sys_audit_status'] < LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_WECHAT) {
  152. throw new \Exception('当前商品暂不可删除');
  153. }
  154. $where = [
  155. 'id' => $params['id'],
  156. 'shop_id' => $params['shop_id']
  157. ];
  158. LiveGoods::where($where)->update([
  159. 'del' => 1,
  160. 'update_time' => time()
  161. ]);
  162. // 删除微信商品库
  163. if (!empty($goods['wx_goods_id'])) {
  164. (new WxMnpLiveServer())->handle('delGoods', $goods['wx_goods_id']);
  165. }
  166. Db::commit();
  167. return true;
  168. } catch (\Exception $e) {
  169. Db::rollback();
  170. return $e->getMessage();
  171. }
  172. }
  173. }