From eb2b4747ae8019109c7011a8d591819626a51c9c Mon Sep 17 00:00:00 2001 From: Thomas Date: Sun, 2 Jul 2023 22:56:08 +0200 Subject: [PATCH] [YouTubeCommunityTabBridge] Add timestamps (#3477) As YouTube doesn't provide precise dates for community posts, an increasing multiple of 60 seconds is subtracted from each timestamp. This ensures that the original order is always preserved, even if there are multiple posts with the same date (e.g. "1 month ago"). --- bridges/YouTubeCommunityTabBridge.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bridges/YouTubeCommunityTabBridge.php b/bridges/YouTubeCommunityTabBridge.php index c44e9557..4ee0f0bc 100644 --- a/bridges/YouTubeCommunityTabBridge.php +++ b/bridges/YouTubeCommunityTabBridge.php @@ -78,7 +78,7 @@ class YouTubeCommunityTabBridge extends BridgeAbstract returnServerError('Channel does not have a community tab'); } - foreach ($this->getCommunityPosts($json) as $post) { + foreach ($this->getCommunityPosts($json) as $key => $post) { $this->itemTitle = ''; if (!isset($post->backstagePostThreadRenderer)) { @@ -102,6 +102,12 @@ class YouTubeCommunityTabBridge extends BridgeAbstract $item['content'] .= $this->getAttachments($details); $item['title'] = $this->itemTitle; + $date = strtotime(str_replace(' (edited)', '', $details->publishedTimeText->runs[0]->text)); + if (is_int($date)) { + // subtract an increasing multiple of 60 seconds to always preserve the original order + $item['timestamp'] = $date - $key * 60; + } + $this->items[] = $item; } }