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

AdLogic.php 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\decoration;
  20. use app\common\basics\Logic;
  21. use app\common\enum\AdEnum;
  22. use app\common\server\UrlServer;
  23. use think\facade\Db;
  24. class AdLogic extends Logic{
  25. /**
  26. * Notes:广告列表
  27. * @param $get
  28. * @return array
  29. * @author: cjhao 2021/4/20 10:23
  30. */
  31. public static function lists($get){
  32. $where[] = ['A.del','=',0];
  33. $where[] = ['A.terminal','=',$get['terminal']];
  34. if(isset($get['pid']) && $get['pid']){
  35. $where[] = ['A.pid','=',$get['pid']];
  36. }
  37. $lists = Db::name('ad')->alias('A')
  38. ->join('ad_position AP','A.pid = AP.id')
  39. ->where($where)
  40. ->order('A.sort asc, A.id desc')
  41. ->field('A.*,AP.name as pname')
  42. ->paginate(['list_rows'=>$get['limit'],'page'=>$get['page']]);
  43. $list = $lists->items();
  44. $count = $lists->total();
  45. foreach ($list as $key => $ad){
  46. $list[$key]['terminal_desc'] = AdEnum::getTerminal($ad['terminal']);
  47. $list[$key]['image'] = UrlServer::getFileUrl($ad['image']);
  48. switch ($ad['link_type']) {
  49. case 1:
  50. $page = AdEnum::getLinkPage($ad['terminal'], $ad['link']);
  51. $url = '商城页面:' . $page['name'];
  52. break;
  53. case 2:
  54. $goods = Db::name('goods')
  55. ->where(['id' => $ad['link']])
  56. ->field('name,min_price,max_price')
  57. ->find();
  58. if ($goods) {
  59. $price = '¥' . $goods['max_price'];
  60. if ($goods['max_price'] !== $goods['min_price']) {
  61. $price = '¥' . $goods['min_price'] . '~' . $goods['max_price'];
  62. }
  63. $url = '商品页面:' . $goods['name'] . '价格:' . $price;
  64. }
  65. break;
  66. case 3:
  67. $url = '自定义链接:' . $ad['link'];
  68. break;
  69. default:
  70. $url = '';
  71. break;
  72. }
  73. $list[$key]['link'] = $url;
  74. }
  75. return ['count'=>$count,'lists'=>$list];
  76. }
  77. /**
  78. * Notes:添加广告
  79. * @param $post
  80. * @return bool
  81. * @author: cjhao 2021/4/20 10:54
  82. */
  83. public static function add($post){
  84. $post['status'] = isset($post['status']) ? $post['status'] : 0;
  85. $post['link_type'] = isset($post['link_type']) ? $post['link_type'] : '';
  86. $link = '';
  87. switch ($post['link_type']) {
  88. case '1':
  89. $link = $post['page'];
  90. break;
  91. case '2':
  92. $link = $post['goods_id'];
  93. break;
  94. case '3':
  95. $link = $post['url'];
  96. break;
  97. }
  98. $now = time();
  99. $data = [
  100. 'title' => $post['title'],
  101. 'terminal' => $post['terminal'],
  102. 'pid' => $post['pid'],
  103. 'image' => isset($post['image']) ? clearDomain($post['image']) : '',
  104. 'link_type' => $post['link_type'],
  105. 'link' => $link,
  106. 'status' => $post['status'],
  107. 'category_id' => $post['category_id'] ?? 0,
  108. 'sort' => $post['sort'] > 0 ? $post['sort'] : 50,
  109. 'create_time' => $now,
  110. ];
  111. return Db::name('ad')->insert($data);
  112. }
  113. /**
  114. * Notes:编辑广告
  115. * @param $post
  116. * @return bool
  117. * @author: cjhao 2021/4/20 10:54
  118. */
  119. public static function edit($post){
  120. $post['status'] = isset($post['status']) ? $post['status'] : 0;
  121. $post['link_type'] = isset($post['link_type']) ? $post['link_type'] : '';
  122. $link = '';
  123. switch ($post['link_type']) {
  124. case '1':
  125. $link = $post['page'];
  126. break;
  127. case '2':
  128. $link = $post['goods_id'];
  129. break;
  130. case '3':
  131. $link = $post['url'];
  132. break;
  133. }
  134. $now = time();
  135. $data = [
  136. 'title' => $post['title'],
  137. 'pid' => $post['pid'],
  138. 'image' => isset($post['image']) ? clearDomain($post['image']) : '',
  139. 'link_type' => $post['link_type'],
  140. 'link' => $link,
  141. 'status' => $post['status'],
  142. 'category_id' => $post['category_id'] ?? 0,
  143. 'sort' => $post['sort'] > 0 ? $post['sort'] : 50,
  144. 'update_time' => $now,
  145. ];
  146. return Db::name('ad')->where(['id'=>$post['id']])->update($data);;
  147. }
  148. /**
  149. * Notes:获取广告信息
  150. * @param $id
  151. * @return array|\think\Model|null
  152. * @author: cjhao 2021/4/20 10:55
  153. */
  154. public static function getAd($id){
  155. $detail = Db::name('ad')
  156. ->where(['id'=>$id,'del'=>0])
  157. ->find();
  158. if($detail) {
  159. $detail['image'] = UrlServer::getFileUrl($detail['image']);
  160. }
  161. $detail['goods'] = [];
  162. if ($detail['link_type'] == 2) {
  163. $goods = Db::name('goods')
  164. ->where(['id' => $detail['link']])
  165. ->field('id,name,image,min_price,max_price')
  166. ->find();
  167. $price = '¥' . $goods['max_price'];
  168. if ($goods['max_price'] !== $goods['min_price']) {
  169. $price = '¥' . $goods['min_price'] . '~' . $goods['max_price'];
  170. }
  171. $goods['price'] = $price;
  172. $detail['goods'] = $goods;
  173. }
  174. return $detail;
  175. }
  176. /**
  177. * Notes:删除广告
  178. * @param $id
  179. * @return int
  180. * @author: cjhao 2021/4/20 10:55
  181. */
  182. public static function del($id){
  183. return Db::name('ad')
  184. ->where(['id'=>$id,'del'=>0])
  185. ->update(['update_time'=>time(),'del'=>1]);
  186. }
  187. /**
  188. * Notes:切换广告状态
  189. * @param $post
  190. * @return int
  191. * @author: cjhao 2021/4/20 10:56
  192. */
  193. public static function swtichStatus($post){
  194. return Db::name('ad')
  195. ->update($post);
  196. }
  197. /**
  198. * Notes:获取广告位列表
  199. * @param $terminal
  200. * @return array|\think\Model|null
  201. * @author: cjhao 2021/4/20 11:04
  202. */
  203. public static function getPositionList($terminal){
  204. return Db::name('ad_position')
  205. ->where(['del'=>0,'terminal'=>$terminal,'status'=>1])
  206. ->field('id,name,height,width')
  207. ->select();
  208. }
  209. /**
  210. * Notes:获取分类列表
  211. * @return \think\Collection
  212. * @author: cjhao 2021/4/20 11:06
  213. */
  214. public static function getCategoryList(){
  215. return Db::name('goods_category')
  216. ->where(['del'=>0,'level'=>1])
  217. ->select();
  218. }
  219. }