Index.class.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <?php
  2. namespace Cas\Controller;
  3. use KIF\Core\Request;
  4. use Cas\Dao\LotteryEvents;
  5. use Cas\Module\Lottery;
  6. use KIF\Dao\SqlHelper;
  7. use Cas\Dao\UserInfo;
  8. use Cas\Module\LotteryLog;
  9. use Cas\Dao\LotteryData;
  10. use Cas\Module\User;
  11. use Cas\Dao\LotteryUserExpress;
  12. use Cas\Dao\Category;
  13. /**
  14. * 活动列表页 - 首页
  15. * lihuanchun
  16. */
  17. class Index extends EventsController {
  18. public function doSetUser() {
  19. $objUserData = new User();
  20. $objUserData->setAvatar();
  21. echo 'yes';
  22. }
  23. /**
  24. * 页面:默认新版首页
  25. */
  26. public function doDefault() {
  27. # 检查是否移动端
  28. $title = '精彩活动';
  29. $this->checkIsFromMobile($title);
  30. $plat_form_id = $this->getPlatFormId();
  31. $thisTime = time();
  32. $this->objMLottery = new Lottery();
  33. # 获取登录地址
  34. $url = Request::g('url');
  35. $thisUrl = Request::schemeDomain().'/list/'.$url;
  36. $loginUrl = $this -> getLoginUrl($thisUrl);
  37. $this->setOutput('loginUrl', $loginUrl);
  38. $this->setOutput('url', $url);
  39. # 判断是否需要登录
  40. $ckLogin = $this->ckLogin();
  41. $this->setOutput('ckLogin', $ckLogin);
  42. # 获取用户信息
  43. $objUserData = new UserInfo();
  44. $uid = $this->getRunTimeUid();
  45. $userData = $objUserData -> get($uid);
  46. $this->setOutput('userData', $userData);
  47. # 获取焦点图
  48. $order = 'begin_time desc';
  49. $focusCondition = array(
  50. 'display' => LotteryEvents::EVENT_DISPLAY_SHOW, // 已发布的
  51. 'focus_display' => LotteryEvents::FOCUS_DISPLAY_SHOW,//焦点图
  52. 'begin_time' => SqlHelper::addCompareOperator('<=', time()),
  53. 'platform_ids' => SqlHelper::addCompareOperator('&', $plat_form_id),
  54. );
  55. $focusData = $this->objMLottery -> getLotteryEventsList($focusCondition, "0,5", 'id desc');
  56. $this->setOutput('focusData', $focusData);
  57. # 热门活动
  58. $condition = array(
  59. 'display' => LotteryEvents::EVENT_DISPLAY_SHOW, // 已发布的
  60. //'list_display' => LotteryEvents::LIST_DISPLAY_SHOW, // 列表中是否显示
  61. 'top_display' => LotteryEvents::TOP_DISPLAY_SHOW, // 是否置顶
  62. 'begin_time' => SqlHelper::addCompareOperator('<=', time()),
  63. 'platform_ids' => SqlHelper::addCompareOperator('&', $plat_form_id),
  64. );
  65. $totals = $this->objMLottery -> getLotteryEventsListNum($condition);
  66. $offset = 0;
  67. $size = 10;
  68. # 开始时间排序
  69. $order = 'begin_time desc';
  70. # 热门活动
  71. $eventsData = $this->objMLottery -> getLotteryEventsList($condition, "{$offset},{$size}", $order);
  72. $TIME = time();
  73. foreach ($eventsData as $tmpKey => $tmpData) {
  74. # 剩余天数
  75. $rday = ($tmpData['end_time'] - $TIME) / (24 * 60 * 60);
  76. $eventsData[$tmpKey]['rday'] = ceil($rday);
  77. # 参与人数
  78. $objMLotteryLog = new LotteryLog ( null, $tmpData['id'] );
  79. $eventsData[$tmpKey]['user_total'] = $objMLotteryLog->getUserParticipateLogNumGroupByUid ();
  80. }
  81. # 获得福利
  82. $this->prize($eventsData, $plat_form_id, 6);
  83. # 获取分类
  84. $this->objDCategory = new Category ();
  85. $order = 'id desc';
  86. $condition = array ();
  87. $ids = $this->objDCategory->findIdsBy ( $condition, '0,5', $order );
  88. $categoryData = $this->objDCategory->gets ( $ids );
  89. $this->setOutput('categoryData', $categoryData);
  90. $this->setOutput('domain', Request::schemeDomain ());
  91. $this->setOutput('eventsData', $eventsData);
  92. $this->setOutput('title', '精彩活动');
  93. $this->setOutput('totals', ceil($totals / $size));
  94. $this->tpl = 'index';
  95. $this->setOutput('plat_form_id', $plat_form_id);
  96. $this->setOutput('display', 1);
  97. $this->setOutput('url', $url);
  98. }
  99. /**
  100. * 页面:默认首页
  101. *
  102. public function doOldDefault() {
  103. # 检查是否移动端
  104. $title = '精彩活动';
  105. $this->checkIsFromMobile($title);
  106. $plat_form_id = $this->getPlatFormId();
  107. $thisTime = time();
  108. $objMLottery = new Lottery();
  109. $condition = array(
  110. 'display' => LotteryEvents::EVENT_DISPLAY_SHOW, // 已发布的
  111. 'list_display' => LotteryEvents::LIST_DISPLAY_SHOW, // 列表中是否显示
  112. 'begin_time' => SqlHelper::addCompareOperator('<=', time()),
  113. 'platform_ids' => SqlHelper::addCompareOperator('&', $plat_form_id),
  114. );
  115. # 获取登录地址
  116. $url = Request::g('url');
  117. $thisUrl = Request::schemeDomain().'/list/'.$url;
  118. $loginUrl = $this -> getLoginUrl($thisUrl);
  119. $this->setOutput('loginUrl', $loginUrl);
  120. # 判断是否需要登录
  121. $ckLogin = $this->ckLogin();
  122. $this->setOutput('ckLogin', $ckLogin);
  123. # 获取用户信息
  124. $objUserData = new UserInfo();
  125. $uid = $this->getRunTimeUid();
  126. $userData = $objUserData -> get($uid);
  127. $this->setOutput('userData', $userData);
  128. $totals = $objMLottery -> getLotteryEventsListNum($condition);
  129. $offset = 0;
  130. $size = 6;
  131. $order = 'id desc';
  132. $eventsData = $allLotteryEventsIds = $objMLottery -> getLotteryEventsList($condition, "{$offset},{$size}", $order);
  133. # 剩余天数
  134. $TIME = time();
  135. foreach ($eventsData as $tmpKey => $tmpData) {
  136. $rday = ($tmpData['end_time'] - $TIME) / (24 * 60 * 60);
  137. $eventsData[$tmpKey]['rday'] = ceil($rday);
  138. }
  139. $this->setOutput('eventsData', $eventsData);
  140. $this->setOutput('title', '精彩活动');
  141. $this->setOutput('totals', ceil($totals / $size));
  142. $this->tpl = 'index';
  143. $this->setOutput('plat_form_id', $plat_form_id);
  144. $this->setOutput('url', $url);
  145. }
  146. /**
  147. * 事件:ajax翻页
  148. */
  149. public function doAjax() {
  150. $page = Request::varGetInt('page', 1);
  151. $thisTime = time();
  152. $objMLottery = new Lottery();
  153. $plat_form_id = Request::g('plat_form_id');
  154. $condition = array(
  155. 'display' => LotteryEvents::EVENT_DISPLAY_SHOW, // 已发布的
  156. 'list_display' => LotteryEvents::LIST_DISPLAY_SHOW, // 列表中是否显示
  157. 'top_display' => LotteryEvents::TOP_DISPLAY_SHOW, // 是否置顶
  158. 'begin_time' => SqlHelper::addCompareOperator('<=', time()),
  159. 'platform_ids' => SqlHelper::addCompareOperator('&', $plat_form_id),
  160. );
  161. $totals = $objMLottery -> getLotteryEventsListNum($condition);
  162. $order = 'begin_time desc';
  163. $size = 10;
  164. $offset = ($page - 1) * $size;
  165. $limit = "{$offset},{$size}";
  166. $eventsData = $allLotteryEventsIds = $objMLottery -> getLotteryEventsList($condition,$limit,$order);
  167. # 剩余天数
  168. $TIME = time();
  169. foreach ($eventsData as $tmpKey => $tmpData) {
  170. $rday = ($tmpData['end_time'] - $TIME) / (24 * 60 * 60);
  171. $eventsData[$tmpKey]['rday'] = ceil($rday);
  172. }
  173. $this->tpl = 'ajax_index';
  174. $data = array_fill(0, 4, 1);
  175. $this->setOutput('eventsData', $eventsData);
  176. $this->ajax_success_exit($this->render(true));
  177. }
  178. public function display() {
  179. $this->setOutput('action', 'index');
  180. return $this->render();
  181. }
  182. }