Example #1
0
 /**
  * Action Detail
  * @param $id int 资讯id
  */
 public function actionDetail($id)
 {
     //增加总访问量
     $mPostAttrStat = new PostAttrStat();
     $mPostAttrStat->modify('attr_stat_view_num', intval($id), 1, true);
     //访问日志
     $mViewsLog = new ViewsLog();
     $mViewsLog->modify(intval($id), ViewsLog::ARTICLE_TYPE);
     //增加周访问量,月访问量
     $week_num = $mViewsLog->ViewsNum(intval($id), ViewsLog::ARTICLE_TYPE, 7);
     $month_num = $mViewsLog->ViewsNum(intval($id), ViewsLog::ARTICLE_TYPE, 30);
     $mPostAttrStat->modifyviewnum('week_views_num', intval($id), $week_num);
     $mPostAttrStat->modifyviewnum('month_views_num', intval($id), $month_num);
     //获取资讯详情信息
     $mNewsMessage = new Post();
     $mNewsMessage = $mNewsMessage->getNewsDetail($id);
     if (!empty($mNewsMessage[0]['news_video_url'])) {
         $url = preg_match_all('/http:\\/\\/(.*?)?\\.(.*?)?\\.com\\/(.*)/', $mNewsMessage[0]['news_video_url'], $types);
         if (!empty($types) && !empty($types[2]) && $types[2][0] == "youku") {
             $mNewsMessage[0]['news_video_url'] = Yii::$app->util->generalVideo($mNewsMessage[0]['news_video_url']);
             //视频地址处理
         } else {
             $mNewsMessage[0]['news_video_url'] = "";
         }
     }
     // echo "<pre>";
     // var_dump($mNewsMessage[0]);die;
     //获取热门产品
     $mProductStat = new IProductStat();
     $HotProducts = $mProductStat->getHotProduct();
     // echo "<pre>";
     // var_dump($HotProducts);die;
     //获取热门文章
     $mPostStat = new PostAttrStat();
     $HotArticles = $mPostStat->getHotArticle();
     // echo "<pre>";
     // var_dump($HotArticles);die;
     //获取相关用户
     $mPostMember = new PostAttrVal();
     $similarMember = $mPostMember->getSimilarMember($id);
     // echo "<pre>";
     // var_dump($HotArticles);die;
     //获取相关文章
     $mPostNews = new PostAttrVal();
     $similarNews = $mPostNews->getSimilarNews($id);
     // echo "<pre>";
     // var_dump($HotArticles);die;
     //登录用户获取用户信息
     $follow = ['follow' => false, 'like' => false];
     if ($user = Yii::$app->util->isLogin()) {
         $mMember = new Member();
         $re = $mMember->getByUid($user['uid']);
         $user['avatar'] = $re['avatar'];
         // 获取用户是否喜欢/Like
         $mFollow = new Follow();
         $follow['follow'] = $mFollow->getUserFollow($id, $user['uid']);
         $follow['like'] = $mFollow->getUserLike($id, $user['uid']);
     }
     //评论
     $mComment = new Comment();
     $comment = $mComment->getCommentsByNewsId($id, false, 0, Comment::NEWS_COMMENT_PAGESIZE);
     $total = $mComment->getCommentsByNewsId($id, true);
     // print_r($comment);exit;
     // print_r($total);exit;
     if (isset($mNewsMessage[0])) {
         return $this->render('detail', ['detail' => $mNewsMessage[0], 'products' => $HotProducts, 'article' => $HotArticles, 'similarMember' => $similarMember, 'similarNews' => $similarNews, 'user' => $user ? $user : '', 'comment' => $comment, 'total' => $total, 'follow' => $follow]);
     } else {
         return $this->redirect(['news/index']);
         //跳转到资讯首页
     }
 }
Example #2
0
 /**
  * cmt 点赞数计算
  *
  * @return void
  * @author niancode(修改zhanglu)
  **/
 protected function _store_cmt_like_num($cmt_id, $sum = true)
 {
     $num = $sum ? 1 : -1;
     $follow_num = 0;
     $attr_stat_model = Comment::findOne(['cmt_id' => $cmt_id]);
     if ($attr_stat_model) {
         $attr_stat_model->updateCounters(['cmt_like_num' => $num]);
         $follow_num = $attr_stat_model->cmt_like_num;
     }
     return $follow_num;
 }
Example #3
0
 /**
  * 查看更多回复(评论)接口
  *
  * @return void
  * @author 
  **/
 public function actionReplyMore()
 {
     // 获取数据
     $parent_id = Yii::$app->request->post('parent_id');
     if ($parent_id) {
         $comment_model = new Comment();
         $data = $comment_model->getAllRelyResult($parent_id);
         echo Yii::$app->util->formatResEncode('0', '成功', $data);
     } else {
         echo Yii::$app->util->formatResEncode('1002', '参数异常');
     }
     return;
 }