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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\logic\QrCodeLogic;
  5. use app\common\model\bargain\Bargain;
  6. use app\common\model\user\User;
  7. use app\common\model\Client_;
  8. use app\common\server\JsonServer;
  9. use app\common\server\QrCodeServer;
  10. use app\common\server\UrlServer;
  11. use think\facade\Db;
  12. use app\common\model\bargain\BargainLaunch;
  13. /**
  14. * Class ShareLogic
  15. * @package app\api\logic
  16. */
  17. class ShareLogic extends Logic
  18. {
  19. /**
  20. * @notes 分享商品海报
  21. * @param $user_id
  22. * @param $goods_id
  23. * @param $url
  24. * @param $client
  25. * @return array|string|\think\response\Json
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\DbException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. * @throws \think\exception\DbException
  30. * @author suny
  31. * @date 2021/7/13 6:25 下午
  32. */
  33. public static function shareGoods($user_id, $goods_id, $url, $client)
  34. {
  35. $qr_code_logic = new QrCodeLogic();
  36. $goods = Db::name('goods')->where(['id' => $goods_id])->find();
  37. $result = '';
  38. if ($goods) {
  39. $user = User::where(['id' => $user_id])->find();
  40. switch ($client) {
  41. case Client_::mnp: //小程序
  42. $url_type = 'path';
  43. break;
  44. case Client_::oa: //公众号.
  45. case Client_::h5: //H5.
  46. $url_type = 'url';
  47. $url = url($url, [], '', true) . '?' . http_build_query(['id' => $goods_id, 'invite_code' => $user['distribution_code']]);
  48. break;
  49. case Client_::android:
  50. case Client_::ios:
  51. $url_type = 'url';
  52. $url = url($url, [], '', true) . '?' . http_build_query(['id' => $goods_id, 'invite_code' => $user['distribution_code'], 'isapp' => 1]);
  53. }
  54. $result = $qr_code_logic->makeGoodsPoster($user, $goods, $url, $url_type);
  55. }
  56. return $result;
  57. }
  58. /**
  59. * @notes 分销用户海报
  60. * @param $user_id
  61. * @param $url
  62. * @param $client
  63. * @return \think\response\Json
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\DbException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. * @author suny
  68. * @date 2021/7/13 6:25 下午
  69. */
  70. public static function getUserPoster($user_id, $url, $client)
  71. {
  72. //判断用户是否已有生成二维码分享海报
  73. $user = User::where(['id' => $user_id])->find();
  74. $url_type = 'url';
  75. $invite_code_text = 'distribution_app_qr_code';
  76. if ($client == Client_::mnp || $client == Client_::oa) {
  77. if (empty($url)) {
  78. return JsonServer::error('参数缺失');
  79. }
  80. }
  81. switch ($client) {
  82. case Client_::mnp:
  83. $url_type = 'path';
  84. $invite_code_text = 'distribution_mnp_qr_code';
  85. $content = $url;
  86. break;
  87. case Client_::oa:
  88. case Client_::h5:
  89. $invite_code_text = 'distribution_h5_qr_code';
  90. $url = request()->domain() . $url;
  91. $content = $url . '?invite_code=' . $user['distribution_code'];
  92. break;
  93. case Client_::ios:
  94. case Client_::android:
  95. $content = url('index/index/app', '', '', true);
  96. break;
  97. default:
  98. return JsonServer::error('系统错误');
  99. }
  100. //是否存在
  101. if (file_exists($user[$invite_code_text])) {
  102. $poster_url = $user[$invite_code_text];
  103. return JsonServer::success('', ['url' => UrlServer::getFileUrl($poster_url)]);
  104. }
  105. $qr_code_logic = new QrCodeLogic();
  106. $poster = $qr_code_logic->makeUserPoster($user, $content, $url_type, $client);
  107. if ($poster['status'] != 1) {
  108. return JsonServer::error($poster['msg']);
  109. }
  110. $poster_url = $poster['data'];
  111. //更新user表
  112. User::where(['id' => $user_id])->update([$invite_code_text => $poster_url]);
  113. return JsonServer::success('', ['url' => UrlServer::getFileUrl($poster_url)]);
  114. }
  115. /**
  116. * @notes 砍价分享海报
  117. * @param $user_id
  118. * @param $id
  119. * @param $url
  120. * @param $client
  121. * @return array|\think\response\Json
  122. * @throws \think\db\exception\DataNotFoundException
  123. * @throws \think\db\exception\DbException
  124. * @throws \think\db\exception\ModelNotFoundException
  125. * @throws \think\exception\DbException
  126. * @author suny
  127. * @date 2021/7/13 6:25 下午
  128. */
  129. public static function shareBargain($user_id, $id, $url, $client)
  130. {
  131. $user = Db::name('user')->where(['id' => $user_id])->find();
  132. $client = Client_::h5;
  133. switch ($client) {
  134. case Client_::mnp: //小程序
  135. $url_type = 'path';
  136. break;
  137. case Client_::h5: //H5.
  138. case Client_::oa: //公众号.
  139. $url_type = 'url';
  140. $url = url($url, [], '', true) . '?' . 'id=' . $id;
  141. break;
  142. case Client_::android:
  143. case Client_::ios:
  144. $url_type = 'url';
  145. $url = url($url, [], '', true) . '?' . http_build_query(['id' => $id, 'isapp' => 1]);
  146. }
  147. $bargain_launch = new BargainLaunch();
  148. $bargain_launch = $bargain_launch->where(['id' => $id])->find()->toarray();
  149. $qr_code_logic = new QrCodeLogic();
  150. $result = $qr_code_logic->makeBargainPoster($user, $bargain_launch, $url, $url_type);
  151. return $result;
  152. }
  153. /**
  154. * @notes 获取小程序码
  155. * @param $user_id
  156. * @param $get
  157. * @return mixed|string
  158. * @author cjhao
  159. * @date 2021/11/27 15:35
  160. */
  161. public static function getMnQrcode($user_id,$get)
  162. {
  163. $type = $get['type'] ?? 0;
  164. $scene = null;
  165. $extra = [];
  166. if(2 != $type){
  167. //用户分销码
  168. $distribution_code = User::where(['id' => $user_id])->value('distribution_code');
  169. $scene = 'invite_code='.$distribution_code;
  170. if(1 == $type){
  171. $scene .= '&id='.$get['id'];
  172. }
  173. } else {
  174. $launch = BargainLaunch::where(['id'=>$get['id']])->value('bargain_id');
  175. $extra = Bargain::where(['id' => $launch])
  176. ->field('share_title,share_intro')
  177. ->find()->toArray();
  178. $scene = 'id='.$get['id'];
  179. }
  180. $param = [
  181. 'page' => $get['url'],
  182. 'scene' => $scene
  183. ];
  184. return QrCodeServer::makeMpWechatQrcode($param,'base64', $extra);
  185. }
  186. }