public static function getComments($user_id, $type, $limit, $contentId, $contentType) { if ($contentId) { $date = (new Query())->select('date_time')->from('comments_' . $contentType)->where(['id' => $contentId])->scalar(); } if ($type == 'user') { $articles_id = false; $photos_id = false; $club_photos_id = false; } else { $articles_id = Blog::getAllArticlesIdByAuthor($user_id); $photos_id = Photo::getAllPhotosIdByAuthor($user_id); $club_photos_id = ClubPhoto::getAllClubPhotosIdByAuthor($user_id); } $comment_blog_query = CommentsBlog::getCommentsQuery($user_id, $type, $articles_id); $comment_photo_query = CommentsPhoto::getCommentsQuery($user_id, $type, $photos_id); $comment_club_query = CommentsClub::getCommentsQuery($user_id, $type, $club_photos_id); $all_comments = $comment_blog_query->union($comment_photo_query, true)->union($comment_club_query, true); $sql = (new Query())->from(['ac' => $all_comments])->limit($limit)->orderBy('comment_date_time desc'); if ($contentId) { $sql->andWhere(['<', 'comment_date_time', $date]); } $all_comments = $sql->all(); foreach ($all_comments as &$comment) { self::DateCommentsInCorrectFormat($comment); } return $all_comments; }
public function actionDeleteCommentBlog() { $post = Yii::$app->request->post(); CommentsBlog::deleteCommentBlog($post['id']); }
public function actionPost($slug) { $model = new CommentsBlog(); //витягнення статті $post = Blog::getPostByUrl($slug); //якщо немає 404 if (!$post['article_id']) { throw new \yii\web\HttpException(404); } //якщо стаття закрита адміністратором, то редірект на всі статті if (!$post['article_id'] || time() < $post['time_closed']) { return $this->redirect('/blog/all'); } View::viewArticle($post['article_id'], $post['views']); //перевірка чи користувач лайкнув if (!Yii::$app->user->isGuest) { $post['islike'] = Blog::isLikeArticle($post['article_id'], Yii::$app->user->getId()); } else { $post['islike'] = false; } $i_blocked = User::checkIfIInBlaclList($post['id_author']); $user_id = $post['user_id']; $marks = Marks::getArticleMarks(20); $categories = Category::getAllCategory(); //інші статті автора $other_articles = Blog::getOtherArticle($user_id, 0, 2, $post['article_id']); foreach ($other_articles as &$article) { $article['text'] = substr($article['text'], 0, 350) . '...'; } //// КОМЕНТАРІ //// //витягуємо всі коменті до статті $from = "comments_blog"; //отримання всіх коментарів до фотографії $comments = Comments::getCommentsNew($post['article_id'], $from); $request = Yii::$app->request; if ($request->isAjax && $model->load($request->post()) && $model->validate()) { if (!Yii::$app->user->isGuest) { $author_id = Blog::getIdAuthorArticle($model['id_article']); if (!User::checkIfIInBlaclList($author_id)) { Yii::$app->response->format = Response::FORMAT_JSON; $model->date_time = date('Y-m-d H:i:s'); $model->id_user = Yii::$app->user->getId(); $model->text = htmlspecialchars($model->text); //визначення чи це простий комент чи це ре-комент $text = explode(":", $model->text); //перевіряємо чи введено коректне ім'я користувача якому дана відповідь $true_name = 0; foreach ($comment as $key) { if ($key['name'] == $text[0]) { $true_name = 1; } } if (!$true_name) { $model->answer_id = 0; } if ($model->save()) { Blog::updateComments($post['article_id'], 1); $latest_id = $model->id; $user = User::find()->select('avatar, name')->where(["id" => $model->id_user])->one(); echo json_encode(['text' => $model->text, 'id_user' => $model->id_user, 'name' => $user['name'], 'avatar' => $user['avatar'], 'sex' => $user['sex'], 'id_comment' => $latest_id]); die; } else { echo 0; } } else { return json_encode('error'); } } //// КОМЕНТАРІ //// } else { return $this->render('post', ['post' => $post, 'other_articles' => $other_articles, 'marks' => $marks, 'categories' => $categories, 'user_id' => $user_id, 'model' => $model, 'comments' => $comments, 'i_blocked' => $i_blocked]); } }