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

AdPositionLogic.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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\enum\AdEnum;
  21. use app\common\enum\AdPositionEnum;
  22. use app\common\basics\Logic;
  23. use think\facade\Db;
  24. class AdPositionLogic extends Logic{
  25. /**
  26. * Notes:广告位列表
  27. * @param $get
  28. * @return array
  29. * @author: cjhao 2021/4/17 14:23
  30. */
  31. public static function lists($get){
  32. $where[] = ['del','=',0];
  33. $where[] = ['terminal','=',$get['terminal']];
  34. $lists = Db::name('ad_position')
  35. ->where($where)
  36. ->withAttr('terminal_desc',function ($value,$data){
  37. return AdEnum::getTerminal($data['terminal']);
  38. })
  39. ->paginate(['list_rows'=>$get['limit'],'page'=>$get['page']]);
  40. $list = $lists->items();
  41. $count = $lists->total();
  42. return ['count'=>$count,'lists'=>$list];
  43. }
  44. /**
  45. * Notes:添加广告
  46. * @param $post
  47. * @return int|string
  48. * @author: cjhao 2021/4/17 14:51
  49. */
  50. public static function add($post){
  51. $post['attr'] = 1;
  52. $post['create_time'] = time();
  53. if(!empty(trim($post['size']))) {
  54. $tempArr = explode('*', $post['size']);
  55. $post['width'] = $tempArr[0];
  56. $post['height'] = $tempArr[1];
  57. }
  58. unset($post['size']);
  59. return Db::name('ad_position')->insert($post);
  60. }
  61. /**
  62. * Notes:编辑广告位
  63. * @param $post
  64. * @return int
  65. * @author: cjhao 2021/4/17 14:52
  66. */
  67. public static function edit($post){
  68. if(!empty($post['size'])) {
  69. $tempArr = explode('*', $post['size']);
  70. $post['width'] = $tempArr[0];
  71. $post['height'] = $tempArr[1];
  72. unset($post['size']);
  73. }else{
  74. $post['width'] = '';
  75. $post['height'] = '';
  76. unset($post['size']);
  77. }
  78. $post['update_time'] = time();
  79. return Db::name('ad_position')->update($post,['id'=>$post['id']]);
  80. }
  81. /**
  82. * Notes:获取广告位
  83. * @param $id
  84. * @return \think\Collection
  85. * @author: cjhao 2021/4/17 14:56
  86. */
  87. public static function getPosition($id){
  88. $info = Db::name('ad_position')
  89. ->where(['id'=>$id,'del'=>0])
  90. ->find();
  91. if(!empty($info['width']) && !empty($info['height'])) {
  92. $info['size'] = $info['width'] . '*' . $info['height'];
  93. }else{
  94. $info['size'] = '';
  95. }
  96. return $info;
  97. }
  98. /**
  99. * Notes:删除广告位
  100. * @param $id
  101. * @return int
  102. * @author: cjhao 2021/4/19 11:36
  103. */
  104. public static function del($id){
  105. return Db::name('ad_position')
  106. ->where(['id'=>$id])
  107. ->update(['del'=>1]);
  108. }
  109. /**
  110. * Notes:切换广告位状态
  111. * @param $post
  112. * @return int
  113. * @author: cjhao 2021/4/19 11:38
  114. */
  115. public static function swtichStatus($post){
  116. return Db::name('ad_position')
  117. ->update($post);
  118. }
  119. }