Live.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. class Domain_Live {
  12. public function createRoom($uid,$data) {
  13. $rs = array();
  14. $model = new Model_Live();
  15. $rs = $model->createRoom($uid,$data);
  16. return $rs;
  17. }
  18. public function changeLive($uid,$stream,$status) {
  19. $rs = array();
  20. $model = new Model_Live();
  21. $rs = $model->changeLive($uid,$stream,$status);
  22. return $rs;
  23. }
  24. public function stopRoom($uid,$stream) {
  25. $rs = array();
  26. $model = new Model_Live();
  27. $rs = $model->stopRoom($uid,$stream);
  28. return $rs;
  29. }
  30. public function stopInfo($stream) {
  31. $rs = array();
  32. $model = new Model_Live();
  33. $rs = $model->stopInfo($stream);
  34. return $rs;
  35. }
  36. public function checkLive($uid,$liveuid,$stream) {
  37. $rs = array();
  38. $model = new Model_Live();
  39. $rs = $model->checkLive($uid,$liveuid,$stream);
  40. return $rs;
  41. }
  42. public function roomCharge($uid,$liveuid,$stream) {
  43. $rs = array();
  44. $model = new Model_Live();
  45. $rs = $model->roomCharge($uid,$liveuid,$stream);
  46. return $rs;
  47. }
  48. public function getUserCoin($uid) {
  49. $rs = array();
  50. $model = new Model_Live();
  51. $rs = $model->getUserCoin($uid);
  52. return $rs;
  53. }
  54. public function isZombie($uid) {
  55. $rs = array();
  56. $model = new Model_Live();
  57. $rs = $model->isZombie($uid);
  58. return $rs;
  59. }
  60. public function getPop($touid) {
  61. $rs = array();
  62. $model = new Model_Live();
  63. $rs = $model->getPop($touid);
  64. return $rs;
  65. }
  66. public function getGiftList() {
  67. $key='getGiftList';
  68. $list=getcaches($key);
  69. if(!$list){
  70. $model = new Model_Live();
  71. $list = $model->getGiftList();
  72. if($list){
  73. setcaches($key,$list);
  74. }
  75. }
  76. foreach($list as $k=>$v){
  77. $list[$k]['gifticon']=get_upload_path($v['gifticon']);
  78. }
  79. return $list;
  80. }
  81. public function sendGift($uid,$liveuid,$stream,$giftid,$giftcount,$touids) {
  82. $rs = array();
  83. $model = new Model_Live();
  84. $rs = $model->sendGift($uid,$liveuid,$stream,$giftid,$giftcount,$touids);
  85. return $rs;
  86. }
  87. public function sendBarrage($uid,$liveuid,$stream,$giftid,$giftcount,$content) {
  88. $rs = array();
  89. $model = new Model_Live();
  90. $rs = $model->sendBarrage($uid,$liveuid,$stream,$giftid,$giftcount,$content);
  91. return $rs;
  92. }
  93. public function getUserHome($uid,$touid) {
  94. $rs = array();
  95. $model = new Model_Live();
  96. $rs = $model->getUserHome($uid,$touid);
  97. return $rs;
  98. }
  99. public function getVotes($liveuid) {
  100. $rs = array();
  101. $model = new Model_Live();
  102. $rs = $model->getVotes($liveuid);
  103. return $rs;
  104. }
  105. public function getContribut($uid,$liveuid,$showid) {
  106. $rs = array();
  107. $model = new Model_Live();
  108. $rs = $model->getContribut($uid,$liveuid,$showid);
  109. return $rs;
  110. }
  111. public function checkLiveing($uid,$stream) {
  112. $rs = array();
  113. $model = new Model_Live();
  114. $rs = $model->checkLiveing($uid,$stream);
  115. return $rs;
  116. }
  117. public function getLiveInfo($liveuid) {
  118. $rs = array();
  119. $model = new Model_Live();
  120. $rs = $model->getLiveInfo($liveuid);
  121. return $rs;
  122. }
  123. }