Home.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. if (!session_id()) session_start();
  12. class Model_Home extends PhalApi_Model_NotORM {
  13. protected $live_fields='uid,title,city,stream,pull,thumb,isvideo,type,type_val,anyway,starttime';
  14. /* 轮播 */
  15. public function getSlide($where){
  16. $rs=DI()->notorm->slide_item
  17. ->select("image as slide_pic,url as slide_url")
  18. ->where($where)
  19. ->order("list_order asc")
  20. ->fetchAll();
  21. foreach($rs as $k=>$v){
  22. $rs[$k]['slide_pic']=get_upload_path($v['slide_pic']);
  23. }
  24. return $rs;
  25. }
  26. /* 热门主播 */
  27. public function getHot($p) {
  28. if($p<1){
  29. $p=1;
  30. }
  31. $pnum=50;
  32. $start=($p-1)*$pnum;
  33. $where=" islive= '1' ";
  34. if($p==1){
  35. $_SESSION['hot_starttime']=time();
  36. $hotvotes=DI()->notorm->live->where("islive= '1'")->max('hotvotes');
  37. $_SESSION['hot_hotvotes']=$hotvotes;
  38. }
  39. if($p>1){
  40. $endtime=$_SESSION['hot_starttime'];
  41. if($endtime){
  42. $where.=" and starttime < {$endtime}";
  43. }
  44. $hotvotes=$_SESSION['hot_hotvotes'];
  45. if($hotvotes>0){
  46. $where.=" and hotvotes < {$hotvotes}";
  47. }else{
  48. $where.=" and hotvotes = 0";
  49. }
  50. }
  51. $result=DI()->notorm->live
  52. ->select($this->live_fields.',hotvotes')
  53. ->where($where)
  54. ->order('hotvotes desc,starttime desc')
  55. ->limit($start,$pnum)
  56. ->fetchAll();
  57. foreach($result as $k=>$v){
  58. $v=handleLive($v);
  59. $result[$k]=$v;
  60. }
  61. if($result){
  62. $last=end($result);
  63. $_SESSION['hot_starttime']=$last['starttime'];
  64. $_SESSION['hot_hotvotes']=$last['hotvotes'];
  65. }
  66. return $result;
  67. }
  68. /* 搜索 */
  69. public function search($uid,$key,$p) {
  70. if($p<1){
  71. $p=1;
  72. }
  73. $pnum=50;
  74. $start=($p-1)*$pnum;
  75. $where=' user_type="2" and ( id=? or user_nicename like ? ) and id!=?';
  76. if($p!=1){
  77. $id=$_SESSION['search'];
  78. if($id){
  79. $where.=" and id < {$id}";
  80. }
  81. }
  82. $result=DI()->notorm->user
  83. ->select("id,user_nicename,avatar,sex,signature,consumption,votestotal")
  84. ->where($where,$key,'%'.$key.'%',$uid)
  85. ->order("id desc")
  86. ->limit($start,$pnum)
  87. ->fetchAll();
  88. foreach($result as $k=>$v){
  89. $v['level']=(string)getLevel($v['consumption']);
  90. $v['level_anchor']=(string)getLevelAnchor($v['votestotal']);
  91. $v['avatar']=get_upload_path($v['avatar']);
  92. unset($v['consumption']);
  93. $result[$k]=$v;
  94. }
  95. if($result){
  96. $last=end($result);
  97. $_SESSION['search']=$last['id'];
  98. }
  99. return $result;
  100. }
  101. /* 分类下直播 */
  102. public function getClassLive($liveclassid,$p) {
  103. if($p<1){
  104. $p=1;
  105. }
  106. $pnum=50;
  107. $start=0;
  108. $where=" islive='1' and liveclassid={$liveclassid}";
  109. if($p!=1){
  110. $endtime=$_SESSION['getClassLive_starttime'];
  111. if($endtime){
  112. $where.=" and starttime < {$endtime}";
  113. }
  114. }
  115. $last_starttime=0;
  116. $result=DI()->notorm->live
  117. ->select($this->live_fields)
  118. ->where($where)
  119. ->order("starttime desc")
  120. ->limit(0,$pnum)
  121. ->fetchAll();
  122. foreach($result as $k=>$v){
  123. $v=handleLive($v);
  124. $result[$k]=$v;
  125. }
  126. if($result){
  127. $last=end($result);
  128. $_SESSION['getClassLive_starttime']=$last['starttime'];
  129. }
  130. return $result;
  131. }
  132. }