截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

LiveGoodsLogic.php 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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\admin\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\UrlServer;
  24. use app\common\server\WxMnpLiveServer;
  25. use think\facade\Db;
  26. /**
  27. * 直播商品逻辑层
  28. * Class LiveGoodsLogic
  29. * @package app\admin\logic\live
  30. */
  31. class LiveGoodsLogic extends Logic
  32. {
  33. /**
  34. * @notes 查询条件
  35. * @param $params
  36. * @return array
  37. * @author 段誉
  38. * @date 2023/2/16 21:17
  39. */
  40. public static function listsQuery($params)
  41. {
  42. $where[] = ['del', '=', 0];
  43. if (!empty($params['goods_name'])) {
  44. $where[] = ['name', 'like', '%' . $params['goods_name'] . '%'];
  45. }
  46. if (!empty($params['shop_id'])) {
  47. $where[] = ['shop_id', '=', $params['shop_id']];
  48. }
  49. if (!empty($params['status'])) {
  50. if ($params['status'] == 'ing') {
  51. $where[] = ['sys_audit_status', 'in', [
  52. LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_PLATFORM,
  53. LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_WECHAT
  54. ]];
  55. }
  56. if ($params['status'] == 'success') {
  57. $where[] = ['sys_audit_status', '=', LiveGoodsEnum::SYS_AUDIT_STATUS_SUCCESS];
  58. }
  59. if ($params['status'] == 'fail') {
  60. $where[] = ['sys_audit_status', '=', LiveGoodsEnum::SYS_AUDIT_STATUS_FAIL];
  61. }
  62. }
  63. return $where;
  64. }
  65. /**
  66. * @notes 直播商品列表
  67. * @param $params
  68. * @return array
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\DbException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @author 段誉
  73. * @date 2023/2/15 19:00
  74. */
  75. public static function lists($params)
  76. {
  77. $where = self::listsQuery($params);
  78. $count = LiveGoods::where($where)->count();
  79. $lists = LiveGoods::with(['shop'])->where($where)
  80. ->order(['id' => 'desc'])
  81. ->page($params['page'], $params['limit'])
  82. ->append(['audit_status_text', 'price_text'])
  83. ->select()->toArray();
  84. foreach ($lists as &$item) {
  85. $item['cover_img'] = UrlServer::getFileUrl($item['cover_img']);
  86. }
  87. return ['count' => $count, 'lists' => $lists];
  88. }
  89. /**
  90. * @notes 添加直播商品
  91. * @param array $params
  92. * @return bool
  93. * @throws \GuzzleHttp\Exception\GuzzleException
  94. * @author 段誉
  95. * @date 2023/2/15 18:26
  96. */
  97. public static function audit(array $params)
  98. {
  99. Db::startTrans();
  100. try {
  101. if ($params['status'] == LiveGoodsEnum::SYS_AUDIT_STATUS_FAIL && empty($params['audit_remark'])) {
  102. throw new \Exception('审核不通过请填写审核原因');
  103. }
  104. $liveGoods = LiveGoods::findOrEmpty($params['id'])->toArray();
  105. if ($liveGoods['sys_audit_status'] > LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_PLATFORM) {
  106. throw new \Exception('当前商品待微信审核或已审核完成');
  107. }
  108. // 更新信息
  109. $update_data = [
  110. 'sys_audit_status' => $params['status'],
  111. 'audit_remark' => $params['audit_remark'] ?? '',
  112. ];
  113. if ($params['status'] == LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_WECHAT) {
  114. $goods_res = self::addWechatGoods($liveGoods);
  115. $update_data['wx_goods_id'] = $goods_res['goodsId'];
  116. $update_data['wx_audit_id'] = $goods_res['auditId'];
  117. }
  118. // 提交审核,通过则待微信审核
  119. LiveGoods::where(['id' => $params['id']])->update($update_data);
  120. Db::commit();
  121. return true;
  122. } catch (\Exception $e) {
  123. Db::rollback();
  124. self::$error = $e->getMessage();
  125. return false;
  126. }
  127. }
  128. /**
  129. * @notes 提交微信审核
  130. * @param $goods
  131. * @return bool
  132. * @author 段誉
  133. * @date 2023/2/17 10:06
  134. */
  135. public static function addWechatGoods($goods)
  136. {
  137. $data = [
  138. 'coverImgUrl' => $goods['cover_img_url'],
  139. 'name' => $goods['name'],
  140. 'priceType' => $goods['price_type'],
  141. 'price' => $goods['price'],
  142. 'price2' => $goods['price2'],
  143. 'url' => $goods['url'],
  144. ];
  145. return (new WxMnpLiveServer())->handle('addAndAuditGoods', $data);
  146. }
  147. /**
  148. * @notes 直播商品详情
  149. * @param $id
  150. * @return array
  151. * @author 段誉
  152. * @date 2023/2/16 10:42
  153. */
  154. public static function detail($id)
  155. {
  156. $detail = LiveGoods::where(['id' => $id])
  157. ->append(['price_type_text', 'price_tips', 'source_type_text', 'audit_status_text'])
  158. ->findOrEmpty()->toArray();
  159. $detail['cover_img'] = UrlServer::getFileUrl($detail['cover_img']);
  160. return $detail;
  161. }
  162. /**
  163. * @notes 删除直播商品
  164. * @param array $params
  165. * @return bool|string
  166. * @author 段誉
  167. * @date 2023/2/16 10:37
  168. */
  169. public static function del(array $params)
  170. {
  171. Db::startTrans();
  172. try {
  173. $goods = LiveGoods::findOrEmpty($params['id'])->toArray();
  174. if ($goods['sys_audit_status'] < LiveGoodsEnum::SYS_AUDIT_STATUS_WAIT_WECHAT) {
  175. throw new \Exception('当前商品暂不可删除');
  176. }
  177. LiveGoods::where(['id' => $params['id']])->update([
  178. 'del' => 1,
  179. 'update_time' => time()
  180. ]);
  181. // 删除微信商品库
  182. if (!empty($goods['wx_goods_id'])) {
  183. (new WxMnpLiveServer())->handle('delGoods', $goods['wx_goods_id']);
  184. }
  185. Db::commit();
  186. return true;
  187. } catch (\Exception $e) {
  188. Db::rollback();
  189. return $e->getMessage();
  190. }
  191. }
  192. }