@@ -4,46 +4,46 @@ discard block |
||
| 4 | 4 | <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/s/classes/user_helper.php"); ?> |
| 5 | 5 | <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/s/classes/video_helper.php"); ?> |
| 6 | 6 | <?php |
| 7 | - $request = (object) [ |
|
| 8 | - "search_term" => htmlspecialchars($_GET['search_query']), |
|
| 9 | - "like_search_term" => "%" . htmlspecialchars($_GET['search_query']) . "%", |
|
| 10 | - "search_amount" => 0 /* [fallback] */ |
|
| 11 | - ]; |
|
| 7 | + $request = (object) [ |
|
| 8 | + "search_term" => htmlspecialchars($_GET['search_query']), |
|
| 9 | + "like_search_term" => "%" . htmlspecialchars($_GET['search_query']) . "%", |
|
| 10 | + "search_amount" => 0 /* [fallback] */ |
|
| 11 | + ]; |
|
| 12 | 12 | |
| 13 | - $stmt = $__db->prepare("SELECT * FROM videos WHERE lower(title) LIKE lower(:search) "); |
|
| 14 | - $stmt->bindParam(":search", $request->like_search_term); |
|
| 15 | - $stmt->execute(); |
|
| 16 | - $request->search_amount = $stmt->rowCount(); |
|
| 13 | + $stmt = $__db->prepare("SELECT * FROM videos WHERE lower(title) LIKE lower(:search) "); |
|
| 14 | + $stmt->bindParam(":search", $request->like_search_term); |
|
| 15 | + $stmt->execute(); |
|
| 16 | + $request->search_amount = $stmt->rowCount(); |
|
| 17 | 17 | |
| 18 | - $results_per_page = 12; |
|
| 19 | - $number_of_result = $request->search_amount; |
|
| 20 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
| 18 | + $results_per_page = 12; |
|
| 19 | + $number_of_result = $request->search_amount; |
|
| 20 | + $number_of_page = ceil ($number_of_result / $results_per_page); |
|
| 21 | 21 | |
| 22 | - if (!isset ($_GET['page']) ) { |
|
| 23 | - $page = 1; |
|
| 24 | - } else { |
|
| 25 | - $page = (int)$_GET['page']; |
|
| 26 | - } |
|
| 22 | + if (!isset ($_GET['page']) ) { |
|
| 23 | + $page = 1; |
|
| 24 | + } else { |
|
| 25 | + $page = (int)$_GET['page']; |
|
| 26 | + } |
|
| 27 | 27 | |
| 28 | - $page_first_result = ($page - 1) * $results_per_page; |
|
| 28 | + $page_first_result = ($page - 1) * $results_per_page; |
|
| 29 | 29 | |
| 30 | - $stmt6 = $__db->prepare("SELECT * FROM videos WHERE lower(title) LIKE lower(:search) ORDER BY id DESC LIMIT :pfirst, :pper"); |
|
| 31 | - $stmt6->bindParam(":search", $request->like_search_term); |
|
| 32 | - $stmt6->bindParam(":pfirst", $page_first_result); |
|
| 33 | - $stmt6->bindParam(":pper", $results_per_page); |
|
| 34 | - $stmt6->execute(); |
|
| 30 | + $stmt6 = $__db->prepare("SELECT * FROM videos WHERE lower(title) LIKE lower(:search) ORDER BY id DESC LIMIT :pfirst, :pper"); |
|
| 31 | + $stmt6->bindParam(":search", $request->like_search_term); |
|
| 32 | + $stmt6->bindParam(":pfirst", $page_first_result); |
|
| 33 | + $stmt6->bindParam(":pper", $results_per_page); |
|
| 34 | + $stmt6->execute(); |
|
| 35 | 35 | |
| 36 | - /* TODO :: Easy & Clean Pagination Class PLZ :((( ))) */ |
|
| 36 | + /* TODO :: Easy & Clean Pagination Class PLZ :((( ))) */ |
|
| 37 | 37 | ?> |
| 38 | 38 | <?php $__video_h = new video_helper($__db); ?> |
| 39 | 39 | <?php $__user_h = new user_helper($__db); ?> |
| 40 | 40 | <?php $__db_h = new db_helper(); ?> |
| 41 | 41 | <?php $__time_h = new time_helper(); ?> |
| 42 | 42 | <?php |
| 43 | - $__server->page_embeds->page_title = "SubRocks - Search"; |
|
| 44 | - $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
| 45 | - $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
| 46 | - $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
| 43 | + $__server->page_embeds->page_title = "SubRocks - Search"; |
|
| 44 | + $__server->page_embeds->page_description = "SubRocks is a site dedicated to bring back the 2012 layout of YouTube."; |
|
| 45 | + $__server->page_embeds->page_image = "/yt/imgbin/full-size-logo.png"; |
|
| 46 | + $__server->page_embeds->page_url = "https://subrock.rocks/"; |
|
| 47 | 47 | ?> |
| 48 | 48 | <!DOCTYPE html> |
| 49 | 49 | <html> |
@@ -219,14 +219,14 @@ discard block |
||
| 219 | 219 | <div id="results-main-content"> |
| 220 | 220 | <ol id="search-results"> |
| 221 | 221 | <?php |
| 222 | - while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
| 223 | - $video['video_responses'] = $__video_h->get_video_responses($video['rid']); |
|
| 224 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 225 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 226 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 227 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 228 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 229 | - $video['description'] = $__video_h->shorten_description($video['description'], 50, true); |
|
| 222 | + while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
| 223 | + $video['video_responses'] = $__video_h->get_video_responses($video['rid']); |
|
| 224 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 225 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 226 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 227 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 228 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 229 | + $video['description'] = $__video_h->shorten_description($video['description'], 50, true); |
|
| 230 | 230 | ?> |
| 231 | 231 | <li class="yt-grid-box result-item-video *sr "> |
| 232 | 232 | <div id="" class="yt-uix-tile yt-lockup-list yt-tile-default yt-grid-box "> |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | </li> |
| 255 | 255 | <?php } ?> |
| 256 | 256 | <?php if($request->search_amount == 0) |
| 257 | - echo "Your search query has brought no results.<br><br>"; |
|
| 257 | + echo "Your search query has brought no results.<br><br>"; |
|
| 258 | 258 | ?> |
| 259 | 259 | </ol> |
| 260 | 260 | </div> |
@@ -253,8 +253,9 @@ |
||
| 253 | 253 | </div> |
| 254 | 254 | </li> |
| 255 | 255 | <?php } ?> |
| 256 | - <?php if($request->search_amount == 0) |
|
| 256 | + <?php if($request->search_amount == 0) { |
|
| 257 | 257 | echo "Your search query has brought no results.<br><br>"; |
| 258 | +} |
|
| 258 | 259 | ?> |
| 259 | 260 | </ol> |
| 260 | 261 | </div> |
@@ -24,33 +24,33 @@ discard block |
||
| 24 | 24 | if($__user_h->if_cooldown($_SESSION['siteusername'])) { $error['message'] = "You are on a cooldown! Wait for a minute before posting another comment."; $error['status'] = true; } |
| 25 | 25 | |
| 26 | 26 | if(!isset($error['message'])) { |
| 27 | - $text = $_POST['comment']; |
|
| 27 | + $text = $_POST['comment']; |
|
| 28 | 28 | $stmt = $__db->prepare("INSERT INTO comments (toid, author, comment) VALUES (:v, :username, :comment)"); |
| 29 | 29 | $stmt->bindParam(":v", $_GET['v']); |
| 30 | - $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
| 31 | - $stmt->bindParam(":comment", $text); |
|
| 30 | + $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
| 31 | + $stmt->bindParam(":comment", $text); |
|
| 32 | 32 | $stmt->execute(); |
| 33 | 33 | |
| 34 | - $__user_u->update_cooldown_time($_SESSION['siteusername'], "cooldown_comment"); |
|
| 35 | - $__user_i->send_message($_SESSION['siteusername'], "New comment", $_video['author'], "I commented \"" . $_POST['comment'] . "\" on your video!", $_video['rid'], "nt"); |
|
| 34 | + $__user_u->update_cooldown_time($_SESSION['siteusername'], "cooldown_comment"); |
|
| 35 | + $__user_i->send_message($_SESSION['siteusername'], "New comment", $_video['author'], "I commented \"" . $_POST['comment'] . "\" on your video!", $_video['rid'], "nt"); |
|
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - /* |
|
| 39 | + /* |
|
| 40 | 40 | PREPARE EMBEDS CLASS -- function(string $page_title, string $page_description...) |
| 41 | 41 | Returns a list of arrays for compatibility purposes & but downside is ugly for loop codes |
| 42 | 42 | Work on this tomorrow or some shit idk lol |
| 43 | 43 | */ |
| 44 | 44 | |
| 45 | - /* |
|
| 45 | + /* |
|
| 46 | 46 | USE THE GOD DAMN __CONFIG MORE -- idiot |
| 47 | 47 | Work on this tomorrow or some shit |
| 48 | 48 | */ |
| 49 | 49 | |
| 50 | - $__server->page_embeds->page_title = htmlspecialchars($_video['title']); |
|
| 51 | - $__server->page_embeds->page_description = htmlspecialchars($_video['description']); |
|
| 52 | - $__server->page_embeds->page_image = "/dynamic/thumbs/" . $_video['thumbnail']; |
|
| 53 | - $__server->page_embeds->page_url = "https://subrock.rocks/watch?v=" . htmlspecialchars($_video['rid']); |
|
| 50 | + $__server->page_embeds->page_title = htmlspecialchars($_video['title']); |
|
| 51 | + $__server->page_embeds->page_description = htmlspecialchars($_video['description']); |
|
| 52 | + $__server->page_embeds->page_image = "/dynamic/thumbs/" . $_video['thumbnail']; |
|
| 53 | + $__server->page_embeds->page_url = "https://subrock.rocks/watch?v=" . htmlspecialchars($_video['rid']); |
|
| 54 | 54 | ?> |
| 55 | 55 | <!DOCTYPE html> |
| 56 | 56 | <html> |
@@ -80,29 +80,29 @@ discard block |
||
| 80 | 80 | if (window.yt.timing) {yt.timing.tick("ct");} |
| 81 | 81 | </script> |
| 82 | 82 | <?php |
| 83 | - $_video['dislikes'] = $__video_h->get_video_stars_level($_video['rid'], 1); |
|
| 84 | - $_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2); |
|
| 83 | + $_video['dislikes'] = $__video_h->get_video_stars_level($_video['rid'], 1); |
|
| 84 | + $_video['dislikes'] += $__video_h->get_video_stars_level($_video['rid'], 2); |
|
| 85 | 85 | |
| 86 | - $_video['likes'] = $__video_h->get_video_stars_level($_video['rid'], 4); |
|
| 87 | - $_video['likes'] += $__video_h->get_video_stars_level($_video['rid'], 5); |
|
| 86 | + $_video['likes'] = $__video_h->get_video_stars_level($_video['rid'], 4); |
|
| 87 | + $_video['likes'] += $__video_h->get_video_stars_level($_video['rid'], 5); |
|
| 88 | 88 | |
| 89 | - $_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false); |
|
| 90 | - $_video['likes'] += $__video_h->get_video_likes($_video['rid'], true); |
|
| 89 | + $_video['dislikes'] += $__video_h->get_video_likes($_video['rid'], false); |
|
| 90 | + $_video['likes'] += $__video_h->get_video_likes($_video['rid'], true); |
|
| 91 | 91 | |
| 92 | - if($_video['likes'] == 0 && $_video['dislikes'] == 0) { |
|
| 93 | - $_video['likeswidth'] = 50; |
|
| 94 | - $_video['dislikeswidth'] = 50; |
|
| 95 | - } else { |
|
| 96 | - $_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100; |
|
| 97 | - $_video['dislikeswidth'] = 100 - $_video['likeswidth']; |
|
| 98 | - } |
|
| 92 | + if($_video['likes'] == 0 && $_video['dislikes'] == 0) { |
|
| 93 | + $_video['likeswidth'] = 50; |
|
| 94 | + $_video['dislikeswidth'] = 50; |
|
| 95 | + } else { |
|
| 96 | + $_video['likeswidth'] = $_video['likes'] / ($_video['likes'] + $_video['dislikes']) * 100; |
|
| 97 | + $_video['dislikeswidth'] = 100 - $_video['likeswidth']; |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - $_video['liked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], true); |
|
| 101 | - $_video['disliked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], false); |
|
| 102 | - $_video['author_videos'] = $__video_h->fetch_user_videos($_video['author']); |
|
| 103 | - $_video['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_video['author']); |
|
| 104 | - $_video['favorited'] = $__video_h->if_favorited(@$_SESSION['siteusername'], $_video['rid']); |
|
| 105 | - ?> |
|
| 100 | + $_video['liked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], true); |
|
| 101 | + $_video['disliked'] = $__video_h->if_liked(@$_SESSION['siteusername'], $_video['rid'], false); |
|
| 102 | + $_video['author_videos'] = $__video_h->fetch_user_videos($_video['author']); |
|
| 103 | + $_video['subscribed'] = $__user_h->if_subscribed(@$_SESSION['siteusername'], $_video['author']); |
|
| 104 | + $_video['favorited'] = $__video_h->if_favorited(@$_SESSION['siteusername'], $_video['rid']); |
|
| 105 | + ?> |
|
| 106 | 106 | </head> |
| 107 | 107 | <body id="" class="date-20120927 en_US ltr ytg-old-clearfix guide-feed-v2 gecko gecko-15" dir="ltr"> |
| 108 | 108 | <form name="logoutForm" method="POST" action="/logout"> |
@@ -324,21 +324,21 @@ discard block |
||
| 324 | 324 | <hr><br> |
| 325 | 325 | <h3>Add to a Playlist</h3> |
| 326 | 326 | <?php |
| 327 | - $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY id DESC LIMIT 20"); |
|
| 328 | - $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
| 329 | - $stmt->execute(); |
|
| 330 | - while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 331 | - $buffer = json_decode($playlist['videos']); |
|
| 332 | - @$rid = $buffer[0]; |
|
| 333 | - if(!empty($rid)) { |
|
| 334 | - @$video = $__video_h->fetch_video_rid($rid); |
|
| 335 | - } else { |
|
| 336 | - $video['thumbnail'] = ""; |
|
| 337 | - $video['duration'] = 0; |
|
| 338 | - } |
|
| 327 | + $stmt = $__db->prepare("SELECT * FROM playlists WHERE author = :username ORDER BY id DESC LIMIT 20"); |
|
| 328 | + $stmt->bindParam(":username", $_SESSION['siteusername']); |
|
| 329 | + $stmt->execute(); |
|
| 330 | + while($playlist = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 331 | + $buffer = json_decode($playlist['videos']); |
|
| 332 | + @$rid = $buffer[0]; |
|
| 333 | + if(!empty($rid)) { |
|
| 334 | + @$video = $__video_h->fetch_video_rid($rid); |
|
| 335 | + } else { |
|
| 336 | + $video['thumbnail'] = ""; |
|
| 337 | + $video['duration'] = 0; |
|
| 338 | + } |
|
| 339 | 339 | |
| 340 | - $videos = count($buffer); |
|
| 341 | - ?> |
|
| 340 | + $videos = count($buffer); |
|
| 341 | + ?> |
|
| 342 | 342 | <a href="/get/add_to_playlist?id=<?php echo $_video['rid']; ?>&playlist=<?php echo $playlist['rid']; ?>">Add to <?php echo htmlspecialchars($playlist['title']); ?></a> |
| 343 | 343 | <?php } ?> |
| 344 | 344 | <?php } ?> |
@@ -603,10 +603,10 @@ discard block |
||
| 603 | 603 | </div> |
| 604 | 604 | </div> |
| 605 | 605 | <?php |
| 606 | - $stmt = $__db->prepare("SELECT * FROM video_response WHERE toid = :v ORDER BY id DESC LIMIT 4"); |
|
| 607 | - $stmt->bindParam(":v", $_GET['v']); |
|
| 608 | - $stmt->execute(); |
|
| 609 | - ?> |
|
| 606 | + $stmt = $__db->prepare("SELECT * FROM video_response WHERE toid = :v ORDER BY id DESC LIMIT 4"); |
|
| 607 | + $stmt->bindParam(":v", $_GET['v']); |
|
| 608 | + $stmt->execute(); |
|
| 609 | + ?> |
|
| 610 | 610 | |
| 611 | 611 | <?php if($stmt->rowCount() != 0) { ?> |
| 612 | 612 | <div class="comments-section"> |
@@ -616,16 +616,16 @@ discard block |
||
| 616 | 616 | <h4>Video Responses</h4> |
| 617 | 617 | <ul class="video-list"> |
| 618 | 618 | <?php |
| 619 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 620 | - if($__video_h->video_exists($video['video'])) { |
|
| 621 | - $video = $__video_h->fetch_video_rid($video['video']); |
|
| 622 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 623 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 624 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 625 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 626 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 627 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 628 | - ?> |
|
| 619 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 620 | + if($__video_h->video_exists($video['video'])) { |
|
| 621 | + $video = $__video_h->fetch_video_rid($video['video']); |
|
| 622 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 623 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 624 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 625 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 626 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 627 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 628 | + ?> |
|
| 629 | 629 | <li class="video-list-item yt-tile-default"> |
| 630 | 630 | <a href="/watch?v=<?php echo $video['rid']; ?>" class="related-video yt-uix-contextlink yt-uix-sessionlink" data-sessionlink="<?php echo htmlspecialchars($_video['author']); ?>&feature=watch_response"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="<?php echo $video['title']; ?>" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 631 | 631 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="cjls0QsHOBE" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
@@ -707,35 +707,35 @@ discard block |
||
| 707 | 707 | </div> |
| 708 | 708 | <ul class="comment-list" id="live_comments"> |
| 709 | 709 | <?php |
| 710 | - $results_per_page = 20; |
|
| 710 | + $results_per_page = 20; |
|
| 711 | 711 | |
| 712 | - $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC"); |
|
| 713 | - $stmt->bindParam(":rid", $_video['rid']); |
|
| 714 | - $stmt->execute(); |
|
| 712 | + $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC"); |
|
| 713 | + $stmt->bindParam(":rid", $_video['rid']); |
|
| 714 | + $stmt->execute(); |
|
| 715 | 715 | |
| 716 | - $number_of_result = $stmt->rowCount(); |
|
| 717 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
| 716 | + $number_of_result = $stmt->rowCount(); |
|
| 717 | + $number_of_page = ceil ($number_of_result / $results_per_page); |
|
| 718 | 718 | |
| 719 | - if (!isset ($_GET['page']) ) { |
|
| 720 | - $page = 1; |
|
| 721 | - } else { |
|
| 722 | - $page = (int)$_GET['page']; |
|
| 723 | - } |
|
| 719 | + if (!isset ($_GET['page']) ) { |
|
| 720 | + $page = 1; |
|
| 721 | + } else { |
|
| 722 | + $page = (int)$_GET['page']; |
|
| 723 | + } |
|
| 724 | 724 | |
| 725 | - $page_first_result = ($page - 1) * $results_per_page; |
|
| 725 | + $page_first_result = ($page - 1) * $results_per_page; |
|
| 726 | 726 | |
| 727 | - $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper"); |
|
| 728 | - $stmt->bindParam(":rid", $_video['rid']); |
|
| 729 | - $stmt->bindParam(":pfirst", $page_first_result); |
|
| 730 | - $stmt->bindParam(":pper", $results_per_page); |
|
| 731 | - $stmt->execute(); |
|
| 727 | + $stmt = $__db->prepare("SELECT * FROM comments WHERE toid = :rid ORDER BY id DESC LIMIT :pfirst, :pper"); |
|
| 728 | + $stmt->bindParam(":rid", $_video['rid']); |
|
| 729 | + $stmt->bindParam(":pfirst", $page_first_result); |
|
| 730 | + $stmt->bindParam(":pper", $results_per_page); |
|
| 731 | + $stmt->execute(); |
|
| 732 | 732 | |
| 733 | - while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 734 | - if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], true)) |
|
| 735 | - $comment['liked'] = true; |
|
| 736 | - else if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], false)) |
|
| 737 | - $comment['disliked'] = true; |
|
| 738 | - ?> |
|
| 733 | + while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 734 | + if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], true)) |
|
| 735 | + $comment['liked'] = true; |
|
| 736 | + else if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], false)) |
|
| 737 | + $comment['disliked'] = true; |
|
| 738 | + ?> |
|
| 739 | 739 | |
| 740 | 740 | <li class="comment yt-tile-default " data-author-viewing="" data-author-id="-uD01K8FQTeOSS5sniRFzQ" data-id="<?php echo $comment['id']; ?>" data-score="0"> |
| 741 | 741 | <div class="comment-body"> |
@@ -814,16 +814,16 @@ discard block |
||
| 814 | 814 | <ul id="watch-related" class="video-list"> |
| 815 | 815 | <div id="ppv-container" class="hid"></div> |
| 816 | 816 | <?php |
| 817 | - $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20"); |
|
| 818 | - $stmt->execute(); |
|
| 819 | - while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 820 | - $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 821 | - $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 822 | - $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 823 | - $video['author'] = htmlspecialchars($video['author']); |
|
| 824 | - $video['title'] = htmlspecialchars($video['title']); |
|
| 825 | - $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 826 | - ?> |
|
| 817 | + $stmt = $__db->prepare("SELECT * FROM videos ORDER BY rand() LIMIT 20"); |
|
| 818 | + $stmt->execute(); |
|
| 819 | + while($video = $stmt->fetch(PDO::FETCH_ASSOC)) { |
|
| 820 | + $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
|
| 821 | + $video['duration'] = $__time_h->timestamp($video['duration']); |
|
| 822 | + $video['views'] = $__video_h->fetch_video_views($video['rid']); |
|
| 823 | + $video['author'] = htmlspecialchars($video['author']); |
|
| 824 | + $video['title'] = htmlspecialchars($video['title']); |
|
| 825 | + $video['description'] = $__video_h->shorten_description($video['description'], 50); |
|
| 826 | + ?> |
|
| 827 | 827 | <li class="video-list-item"><a href="/watch?v=<?php echo $video['rid']; ?>" class="related-video yt-uix-contextlink yt-uix-sessionlink" data-sessionlink="ved=CAIQzRooAA%3D%3D&<?php echo htmlspecialchars($_video['author']); ?>&feature=relmfu"><span class="ux-thumb-wrap contains-addto "><span class="video-thumb ux-thumb yt-thumb-default-120 "><span class="yt-thumb-clip"><span class="yt-thumb-clip-inner"><img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="<?php echo $video['title']; ?>" onerror="this.onerror=null;this.src='/dynamic/thumbs/default.jpg';" data-thumb="/dynamic/thumbs/<?php echo $video['thumbnail']; ?>" width="120"><span class="vertical-align"></span></span></span></span><span class="video-time"><?php echo $video['duration']; ?></span> |
| 828 | 828 | <button onclick=";return false;" title="Watch Later" type="button" class="addto-button video-actions addto-watch-later-button-sign-in yt-uix-button yt-uix-button-default yt-uix-button-short yt-uix-tooltip" data-button-menu-id="shared-addto-watch-later-login" data-video-ids="gyAaIKF6tSQ" role="button"><span class="yt-uix-button-content"> <img src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt="Watch Later"> |
| 829 | 829 | </span><img class="yt-uix-button-arrow" src="//s.ytimg.com/yt/img/pixel-vfl3z5WfW.gif" alt=""></button> |
@@ -731,10 +731,11 @@ |
||
| 731 | 731 | $stmt->execute(); |
| 732 | 732 | |
| 733 | 733 | while($comment = $stmt->fetch(PDO::FETCH_ASSOC)) { |
| 734 | - if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], true)) |
|
| 735 | - $comment['liked'] = true; |
|
| 736 | - else if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], false)) |
|
| 737 | - $comment['disliked'] = true; |
|
| 734 | + if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], true)) { |
|
| 735 | + $comment['liked'] = true; |
|
| 736 | + } else if($__video_h->if_comment_liked($comment['id'], $_SESSION['siteusername'], false)) { |
|
| 737 | + $comment['disliked'] = true; |
|
| 738 | + } |
|
| 738 | 739 | ?> |
| 739 | 740 | |
| 740 | 741 | <li class="comment yt-tile-default " data-author-viewing="" data-author-id="-uD01K8FQTeOSS5sniRFzQ" data-id="<?php echo $comment['id']; ?>" data-score="0"> |
@@ -14,11 +14,13 @@ |
||
| 14 | 14 | "action" => "l" /* fallback */ |
| 15 | 15 | ]; |
| 16 | 16 | |
| 17 | -if(!isset($_SESSION['siteusername']) || !isset($_GET['id'])) |
|
| 18 | - header('Location: ' . $_SERVER['HTTP_REFERER']); |
|
| 17 | +if(!isset($_SESSION['siteusername']) || !isset($_GET['id'])) { |
|
| 18 | + header('Location: ' . $_SERVER['HTTP_REFERER']); |
|
| 19 | +} |
|
| 19 | 20 | |
| 20 | -if(isset($_GET['a']) && $_GET['a'] == "-1") |
|
| 21 | +if(isset($_GET['a']) && $_GET['a'] == "-1") { |
|
| 21 | 22 | $request->action = "d"; |
| 23 | +} |
|
| 22 | 24 | |
| 23 | 25 | $stmt = $__db->prepare("SELECT * FROM comment_likes WHERE sender = :username AND reciever = :reciever AND type = 'l'"); |
| 24 | 26 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (empty($_FILES) || $_FILES["file"]["error"]) { |
| 4 | - die('{"OK": 0}'); |
|
| 4 | + die('{"OK": 0}'); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | $fileName = $_FILES["file"]["name"]; |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | |
| 18 | 18 | { |
| 19 | 19 | "html_content": "<section class=\"comment-thread-renderer vve-check-visible vve-check-hidden\" data-visibility-tracking=\"CL4BEMJ1GAAiEwjpsvbIjMTtAhU3yMEKHRZcD6w\" data-visibility-types=\"12\" data-priority=\"0\">\r\n<div class=\"comment-renderer vve-check-visible vve-check-hidden\" data-visibility-tracking=\"CMMBELZ1IhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-visibility-types=\"12\" data-cid=\"UgyQ8iceYjqMY000mJ54AaABAg\">\r\n<a href=\"https:\/\/www.youtube.com\/channel\/UCn_XMhUHYRHuB0tZPyNGoSw\/undefined\" class=\" yt-uix-sessionlink spf-link \" data-sessionlink=\"itct=CMMBELZ1IhMI6bL2yIzE7QIVN8jBCh0WXA-s\"> <span class=\"video-thumb comment-author-thumbnail yt-thumb yt-thumb-48\">\r\n <span class=\"yt-thumb-square\">\r\n <span class=\"yt-thumb-clip\">\r\n \r\n <img alt=\"F\" data-ytimg=\"1\" onload=\";window.__ytRIL && __ytRIL(this)\" role=\"img\" tabindex=\"0\" src=\"https:\/\/yt3.ggpht.com\/yti\/APfAmoEOgcOsU3tuc92fkZ2LUIQXv5R2rGIgfdzw3pjH=s88-c-k-c0x00ffffff-no-rj-mo\" width=\"48\" height=\"48\">\r\n\r\n <span class=\"vertical-align\"><\/span>\r\n <\/span>\r\n <\/span>\r\n <\/span>\r\n<\/a>\r\n\r\n\r\n <div id=\"comment-renderer-edit-UgyQ8iceYjqMY000mJ54AaABAg\" class=\"comment-simplebox-edit\" data-editable-content-text=\"\" data-image-src=\"\" data-video-id=\"\">\r\n <\/div>\r\n<div class=\"comment-renderer-content\"><div class=\"comment-renderer-header\"><a href=\"https:\/\/www.youtube.com\/channel\/UCn_XMhUHYRHuB0tZPyNGoSw\/undefined\" class=\"comment-author-text yt-uix-sessionlink spf-link \" data-sessionlink=\"itct=CMMBELZ1IhMI6bL2yIzE7QIVN8jBCh0WXA-s\">Valmoiiaa<\/a><span class=\"comment-renderer-time\" tabindex=\"0\"><a href=\"https:\/\/www.youtube.com\/watch?v=dQw4w9WgXcQ&lc=UgyQ8iceYjqMY000mJ54AaABAg\" class=\"yt-uix-sessionlink spf-link \" data-sessionlink=\"itct=CMMBELZ1IhMI6bL2yIzE7QIVN8jBCh0WXA-s\">1 second ago<\/a><\/span><\/div><div class=\"comment-renderer-text\" tabindex=\"0\" role=\"article\"><div class=\"comment-renderer-text-content\"><?php |
| 20 | - echo $data->content; |
|
| 21 | - ?><\/div><div class=\"comment-text-toggle hid\"><div class=\"comment-text-toggle-link read-more\"><button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-link\" type=\"button\" onclick=\"return false;\"><span class=\"yt-uix-button-content\">Read more\r\n<\/span><\/button><\/div><div class=\"comment-text-toggle-link show-less hid\"><button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-link\" type=\"button\" onclick=\"return false;\"><span class=\"yt-uix-button-content\">Show less\r\n<\/span><\/button><\/div><\/div><\/div>\r\n\r\n<div class=\"comment-renderer-footer\" data-vote-status=\"INDIFFERENT\"><div class=\"comment-action-buttons-toolbar\">\r\n\r\n\r\n <button class=\"yt-uix-button yt-uix-button-size-small yt-uix-button-link comment-renderer-reply comment-simplebox-trigger\" type=\"button\" onclick=\";return false;\" data-placeholder=\"Add a public reply...\" data-simplebox-event=\"replycreated\" data-simplebox-id=\"comment-simplebox-reply-UgyQ8iceYjqMY000mJ54AaABAg\" data-simplebox-label=\"Reply\" data-simplebox-params=\"EgtteTJoX19sNDFxYyIaVWd5UThpY2VZanFNWTAwMG1KNTRBYUFCQWcqAggAUAc%3D\" data-simplebox-sessionlink=\"itct=CMgBEPBbIhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-simplebox-target=\"\/comment_service_ajax?action_create_comment_reply=1\"><span class=\"yt-uix-button-content\">Reply<\/span><\/button>\r\n\r\n\r\n \r\n\r\n <span role=\"radiogroup\">\r\n <button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-default yt-uix-button-empty yt-uix-button-has-icon no-icon-markup comment-action-buttons-renderer-thumb yt-uix-sessionlink sprite-comment-actions sprite-like i-a-v-sprite-like\" type=\"button\" onclick=\";return false;\" aria-checked=\"false\" aria-label=\"Like\" role=\"radio\" data-action=\"CAUQAhoaVWd5UThpY2VZanFNWTAwMG1KNTRBYUFCQWcqC215MmhfX2w0MXFjMAA4AEoVMTEyOTM1MjAzMzA1OTEyODQ0ODg1UACoAQy6ARhVQ202eUQyNkhsYWZ6cU5sWWFLN3VFYUE%3D\" data-action-type=\"like\" data-sessionlink=\"itct=CMkBEPBbIhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-sessionlink-target=\"\/comment_service_ajax?action_perform_comment_action=1\" data-url=\"\/comment_service_ajax?action_perform_comment_action=1\"><\/button>\r\n\r\n <button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-default yt-uix-button-empty yt-uix-button-has-icon no-icon-markup comment-action-buttons-renderer-thumb yt-uix-sessionlink sprite-comment-actions sprite-dislike i-a-v-sprite-dislike\" type=\"button\" onclick=\";return false;\" aria-checked=\"false\" aria-label=\"Dislike\" role=\"radio\" data-action=\"CAQQAhoaVWd5UThpY2VZanFNWTAwMG1KNTRBYUFCQWcqC215MmhfX2w0MXFjMAA4AEoVMTEyOTM1MjAzMzA1OTEyODQ0ODg1UACoAQy6ARhVQ202eUQyNkhsYWZ6cU5sWWFLN3VFYUE%3D\" data-action-type=\"dislike\" data-sessionlink=\"itct=CMcBEPBbIhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-sessionlink-target=\"\/comment_service_ajax?action_perform_comment_action=1\" data-url=\"\/comment_service_ajax?action_perform_comment_action=1\"><\/button>\r\n\r\n <\/span>\r\n <div class=\"yt-uix-menu-container comment-renderer-action-menu yt-section-hover-container\">\r\n \r\n <div class=\"yt-uix-menu yt-uix-menu-flipped hide-until-delayloaded\"> <button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-action-menu yt-uix-button-empty yt-uix-button-has-icon no-icon-markup yt-uix-menu-trigger\" type=\"button\" onclick=\";return false;\" aria-haspopup=\"true\" aria-label=\"Action menu.\" aria-pressed=\"false\" role=\"button\" aria-controls=\"aria-menu-id-20\" id=\"kbd-nav-113790\"><span class=\"yt-uix-button-arrow yt-sprite\"><\/span><\/button>\r\n<div class=\"yt-uix-menu-content yt-ui-menu-content yt-uix-kbd-nav yt-uix-menu-content-hidden\" role=\"menu\" style=\"min-width: 18px; left: 661.5px; top: 1126.07px;\" aria-expanded=\"false\" id=\"aria-menu-id-20\" data-kbd-nav-move-out=\"kbd-nav-113790\"> <ul tabindex=\"0\" class=\"yt-uix-kbd-nav yt-uix-kbd-nav-list\">\r\n <li role=\"menuitem\">\r\n <div class=\"service-endpoint-action-container hid\">\r\n <\/div>\r\n\r\n <button type=\"button\" class=\"yt-ui-menu-item yt-uix-menu-close-on-select report-form-modal-renderer\" data-innertube-clicktracking=\"CMMBELZ1IhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-params=\"GhpVZ3lROGljZVlqcU1ZMDAwbUo1NEFhQUJBZygCMgFGOmkIARACGhpVZ3lROGljZVlqcU1ZMDAwbUo1NEFhQUJBZyoLbXkyaF9fbDQxcWMwAEoVMTEyOTM1MjAzMzA1OTEyODQ0ODg1UACoAQy6ARhVQ202eUQyNkhsYWZ6cU5sWWFLN3VFYUHgAQA%3D\" data-url=\"\/flag_service_ajax?action_get_report_form=1\">\r\n <span class=\"yt-ui-menu-item-label\">Report<\/span>\r\n <\/button>\r\n\r\n\r\n <\/li>\r\n <\/ul>\r\n<\/div><\/div>\r\n <\/div>\r\n<\/div><div class=\"comment-renderer-replybox\" id=\"comment-simplebox-reply-UgyQ8iceYjqMY000mJ54AaABAg\">\r\n <span class=\"video-thumb comment-author-thumbnail yt-thumb yt-thumb-32\">\r\n <span class=\"yt-thumb-square\">\r\n <span class=\"yt-thumb-clip\">\r\n \r\n <img alt=\"F\" data-ytimg=\"1\" onload=\";window.__ytRIL && __ytRIL(this)\" role=\"img\" src=\".\/and old youtube page maybe_ - YouTube_files\/unnamed(3).png\" tabindex=\"0\" width=\"32\" height=\"32\">\r\n\r\n <span class=\"vertical-align\"><\/span>\r\n <\/span>\r\n <\/span>\r\n <\/span>\r\n<\/div><\/div><\/div><\/div><div class=\"comment-replies-renderer\" data-visibility-tracking=\"CL8BEL51IhMI6bL2yIzE7QIVN8jBCh0WXA-s\">\r\n <div class=\"yt-uix-expander yt-uix-expander-collapsed comment-replies-renderer-header\" tabindex=\"0\">\r\n <div class=\"yt-uix-expander-collapsed-body\">\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n <div class=\"yt-uix-expander-head comment-replies-renderer-expander-down comment-replies-renderer-view hid\" tabindex=\"0\">\r\n View reply\r\n <\/div>\r\n\r\n\r\n \r\n <\/div>\r\n <div id=\"comment-replies-renderer-UgyQ8iceYjqMY000mJ54AaABAg\" class=\"yt-uix-expander-body comment-replies-renderer-pages\">\r\n <div class=\"yt-uix-expander-head comment-replies-renderer-expander-up comment-replies-renderer-hide\" tabindex=\"0\">\r\n Hide reply\r\n <\/div>\r\n aaaaaaaa<\/div>\r\n <\/div>\r\n<\/div><\/section>", |
|
| 20 | + echo $data->content; |
|
| 21 | + ?><\/div><div class=\"comment-text-toggle hid\"><div class=\"comment-text-toggle-link read-more\"><button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-link\" type=\"button\" onclick=\"return false;\"><span class=\"yt-uix-button-content\">Read more\r\n<\/span><\/button><\/div><div class=\"comment-text-toggle-link show-less hid\"><button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-link\" type=\"button\" onclick=\"return false;\"><span class=\"yt-uix-button-content\">Show less\r\n<\/span><\/button><\/div><\/div><\/div>\r\n\r\n<div class=\"comment-renderer-footer\" data-vote-status=\"INDIFFERENT\"><div class=\"comment-action-buttons-toolbar\">\r\n\r\n\r\n <button class=\"yt-uix-button yt-uix-button-size-small yt-uix-button-link comment-renderer-reply comment-simplebox-trigger\" type=\"button\" onclick=\";return false;\" data-placeholder=\"Add a public reply...\" data-simplebox-event=\"replycreated\" data-simplebox-id=\"comment-simplebox-reply-UgyQ8iceYjqMY000mJ54AaABAg\" data-simplebox-label=\"Reply\" data-simplebox-params=\"EgtteTJoX19sNDFxYyIaVWd5UThpY2VZanFNWTAwMG1KNTRBYUFCQWcqAggAUAc%3D\" data-simplebox-sessionlink=\"itct=CMgBEPBbIhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-simplebox-target=\"\/comment_service_ajax?action_create_comment_reply=1\"><span class=\"yt-uix-button-content\">Reply<\/span><\/button>\r\n\r\n\r\n \r\n\r\n <span role=\"radiogroup\">\r\n <button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-default yt-uix-button-empty yt-uix-button-has-icon no-icon-markup comment-action-buttons-renderer-thumb yt-uix-sessionlink sprite-comment-actions sprite-like i-a-v-sprite-like\" type=\"button\" onclick=\";return false;\" aria-checked=\"false\" aria-label=\"Like\" role=\"radio\" data-action=\"CAUQAhoaVWd5UThpY2VZanFNWTAwMG1KNTRBYUFCQWcqC215MmhfX2w0MXFjMAA4AEoVMTEyOTM1MjAzMzA1OTEyODQ0ODg1UACoAQy6ARhVQ202eUQyNkhsYWZ6cU5sWWFLN3VFYUE%3D\" data-action-type=\"like\" data-sessionlink=\"itct=CMkBEPBbIhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-sessionlink-target=\"\/comment_service_ajax?action_perform_comment_action=1\" data-url=\"\/comment_service_ajax?action_perform_comment_action=1\"><\/button>\r\n\r\n <button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-default yt-uix-button-empty yt-uix-button-has-icon no-icon-markup comment-action-buttons-renderer-thumb yt-uix-sessionlink sprite-comment-actions sprite-dislike i-a-v-sprite-dislike\" type=\"button\" onclick=\";return false;\" aria-checked=\"false\" aria-label=\"Dislike\" role=\"radio\" data-action=\"CAQQAhoaVWd5UThpY2VZanFNWTAwMG1KNTRBYUFCQWcqC215MmhfX2w0MXFjMAA4AEoVMTEyOTM1MjAzMzA1OTEyODQ0ODg1UACoAQy6ARhVQ202eUQyNkhsYWZ6cU5sWWFLN3VFYUE%3D\" data-action-type=\"dislike\" data-sessionlink=\"itct=CMcBEPBbIhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-sessionlink-target=\"\/comment_service_ajax?action_perform_comment_action=1\" data-url=\"\/comment_service_ajax?action_perform_comment_action=1\"><\/button>\r\n\r\n <\/span>\r\n <div class=\"yt-uix-menu-container comment-renderer-action-menu yt-section-hover-container\">\r\n \r\n <div class=\"yt-uix-menu yt-uix-menu-flipped hide-until-delayloaded\"> <button class=\"yt-uix-button yt-uix-button-size-default yt-uix-button-action-menu yt-uix-button-empty yt-uix-button-has-icon no-icon-markup yt-uix-menu-trigger\" type=\"button\" onclick=\";return false;\" aria-haspopup=\"true\" aria-label=\"Action menu.\" aria-pressed=\"false\" role=\"button\" aria-controls=\"aria-menu-id-20\" id=\"kbd-nav-113790\"><span class=\"yt-uix-button-arrow yt-sprite\"><\/span><\/button>\r\n<div class=\"yt-uix-menu-content yt-ui-menu-content yt-uix-kbd-nav yt-uix-menu-content-hidden\" role=\"menu\" style=\"min-width: 18px; left: 661.5px; top: 1126.07px;\" aria-expanded=\"false\" id=\"aria-menu-id-20\" data-kbd-nav-move-out=\"kbd-nav-113790\"> <ul tabindex=\"0\" class=\"yt-uix-kbd-nav yt-uix-kbd-nav-list\">\r\n <li role=\"menuitem\">\r\n <div class=\"service-endpoint-action-container hid\">\r\n <\/div>\r\n\r\n <button type=\"button\" class=\"yt-ui-menu-item yt-uix-menu-close-on-select report-form-modal-renderer\" data-innertube-clicktracking=\"CMMBELZ1IhMI6bL2yIzE7QIVN8jBCh0WXA-s\" data-params=\"GhpVZ3lROGljZVlqcU1ZMDAwbUo1NEFhQUJBZygCMgFGOmkIARACGhpVZ3lROGljZVlqcU1ZMDAwbUo1NEFhQUJBZyoLbXkyaF9fbDQxcWMwAEoVMTEyOTM1MjAzMzA1OTEyODQ0ODg1UACoAQy6ARhVQ202eUQyNkhsYWZ6cU5sWWFLN3VFYUHgAQA%3D\" data-url=\"\/flag_service_ajax?action_get_report_form=1\">\r\n <span class=\"yt-ui-menu-item-label\">Report<\/span>\r\n <\/button>\r\n\r\n\r\n <\/li>\r\n <\/ul>\r\n<\/div><\/div>\r\n <\/div>\r\n<\/div><div class=\"comment-renderer-replybox\" id=\"comment-simplebox-reply-UgyQ8iceYjqMY000mJ54AaABAg\">\r\n <span class=\"video-thumb comment-author-thumbnail yt-thumb yt-thumb-32\">\r\n <span class=\"yt-thumb-square\">\r\n <span class=\"yt-thumb-clip\">\r\n \r\n <img alt=\"F\" data-ytimg=\"1\" onload=\";window.__ytRIL && __ytRIL(this)\" role=\"img\" src=\".\/and old youtube page maybe_ - YouTube_files\/unnamed(3).png\" tabindex=\"0\" width=\"32\" height=\"32\">\r\n\r\n <span class=\"vertical-align\"><\/span>\r\n <\/span>\r\n <\/span>\r\n <\/span>\r\n<\/div><\/div><\/div><\/div><div class=\"comment-replies-renderer\" data-visibility-tracking=\"CL8BEL51IhMI6bL2yIzE7QIVN8jBCh0WXA-s\">\r\n <div class=\"yt-uix-expander yt-uix-expander-collapsed comment-replies-renderer-header\" tabindex=\"0\">\r\n <div class=\"yt-uix-expander-collapsed-body\">\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n <div class=\"yt-uix-expander-head comment-replies-renderer-expander-down comment-replies-renderer-view hid\" tabindex=\"0\">\r\n View reply\r\n <\/div>\r\n\r\n\r\n \r\n <\/div>\r\n <div id=\"comment-replies-renderer-UgyQ8iceYjqMY000mJ54AaABAg\" class=\"yt-uix-expander-body comment-replies-renderer-pages\">\r\n <div class=\"yt-uix-expander-head comment-replies-renderer-expander-up comment-replies-renderer-hide\" tabindex=\"0\">\r\n Hide reply\r\n <\/div>\r\n aaaaaaaa<\/div>\r\n <\/div>\r\n<\/div><\/section>", |
|
| 22 | 22 | "feedback_text": "aaa" |
| 23 | 23 | } |
| 24 | 24 | \ No newline at end of file |