From 41b7984a4ea4127d2a916406912c1be9b8055e87 Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Mon, 19 Mar 2018 17:41:53 +0500 Subject: [PATCH] [YoutubeBridge] Playlist mode: faster feed generating if item count is less or equal to 15 (#648) * [YoutubeBridge] Playlist mode: faster feed generating if item count is less or equal to 15 --- bridges/YoutubeBridge.php | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/bridges/YoutubeBridge.php b/bridges/YoutubeBridge.php index 72392590..8ec1f148 100644 --- a/bridges/YoutubeBridge.php +++ b/bridges/YoutubeBridge.php @@ -110,8 +110,8 @@ class YoutubeBridge extends BridgeAbstract { $this->feedName = $this->ytBridgeFixTitle($xml->find('feed > title', 0)->plaintext); // feedName will be used by getName() } - private function ytBridgeParseHtmlListing($html, $element_selector, $title_selector){ - $limit = 10; + private function ytBridgeParseHtmlListing($html, $element_selector, $title_selector, $add_parsed_items = true) { + $limit = $add_parsed_items ? 10 : INF; $count = 0; foreach($html->find($element_selector) as $element) { if($count < $limit) { @@ -122,12 +122,15 @@ class YoutubeBridge extends BridgeAbstract { $vid = substr($vid, 0, strpos($vid, '&') ?: strlen($vid)); $title = $this->ytBridgeFixTitle($element->find($title_selector, 0)->plaintext); if($title != '[Private Video]' && strpos($vid, 'googleads') === false) { - $this->ytBridgeQueryVideoInfo($vid, $author, $desc, $time); - $this->ytBridgeAddItem($vid, $title, $author, $desc, $time); + if ($add_parsed_items) { + $this->ytBridgeQueryVideoInfo($vid, $author, $desc, $time); + $this->ytBridgeAddItem($vid, $title, $author, $desc, $time); + } $count++; } } } + return $count; } private function ytBridgeFixTitle($title) { @@ -176,10 +179,16 @@ class YoutubeBridge extends BridgeAbstract { } } elseif($this->getInput('p')) { /* playlist mode */ $this->request = $this->getInput('p'); + $url_feed = self::URI . 'feeds/videos.xml?playlist_id=' . urlencode($this->request); $url_listing = self::URI . 'playlist?list=' . urlencode($this->request); $html = $this->ytGetSimpleHTMLDOM($url_listing) or returnServerError("Could not request YouTube. Tried:\n - $url_listing"); - $this->ytBridgeParseHtmlListing($html, 'tr.pl-video', '.pl-video-title a'); + $item_count = $this->ytBridgeParseHtmlListing($html, 'tr.pl-video', '.pl-video-title a', false); + if ($item_count <= 15 && ($xml = $this->ytGetSimpleHTMLDOM($url_feed))) { + $this->ytBridgeParseXmlFeed($xml); + } else { + $this->ytBridgeParseHtmlListing($html, 'tr.pl-video', '.pl-video-title a'); + } $this->feedName = 'Playlist: ' . str_replace(' - YouTube', '', $html->find('title', 0)->plaintext); // feedName will be used by getName() usort($this->items, function ($item1, $item2) { return $item2['timestamp'] - $item1['timestamp'];