From 1c45eff50533d0b2c3901424237edc4739142b85 Mon Sep 17 00:00:00 2001 From: subtle4553 Date: Tue, 25 Mar 2025 23:34:19 +0100 Subject: [PATCH] [ManyVidsBridge] Create proper feed content (#4493) --- bridges/ManyVidsBridge.php | 110 +++++++++++++++++++++++++++++++------ 1 file changed, 94 insertions(+), 16 deletions(-) diff --git a/bridges/ManyVidsBridge.php b/bridges/ManyVidsBridge.php index 21ad950f..29ebd5f7 100644 --- a/bridges/ManyVidsBridge.php +++ b/bridges/ManyVidsBridge.php @@ -2,15 +2,15 @@ class ManyVidsBridge extends BridgeAbstract { - const NAME = 'MANYVIDS'; + const NAME = 'ManyVids'; const URI = 'https://www.manyvids.com'; const DESCRIPTION = 'Fetches the latest posts from a profile'; - const MAINTAINER = 'dvikan'; - const CACHE_TIMEOUT = 60 * 60; + const MAINTAINER = 'dvikan, subtle4553'; + const CACHE_TIMEOUT = 3600; const PARAMETERS = [ [ 'profile' => [ - 'name' => 'Profile', + 'name' => 'Profil', 'type' => 'text', 'required' => true, 'exampleValue' => '678459/Aziani-Studios', @@ -19,6 +19,8 @@ class ManyVidsBridge extends BridgeAbstract ] ]; + private $domCache = null; + public function collectData() { $profile = $this->getInput('profile'); @@ -29,21 +31,97 @@ class ManyVidsBridge extends BridgeAbstract } else { throw new \Exception('nope'); } - $url = sprintf('https://www.manyvids.com/Profile/%s/Store/Videos/', $profile); - $dom = getSimpleHTMLDOM($url); - $videos = $dom->find('div[class^="ProfileTabGrid_card"]'); - foreach ($videos as $item) { - $a = $item->find('a', 1); - $uri = 'https://www.manyvids.com' . $a->href; - if (preg_match('#Video/(\d+)/#', $uri, $m)) { - $uid = 'manyvids/' . $m[1]; + + $dom = $this->getHTML($profile); + $elements = $dom->find('div[class^="ProfileTabGrid_card__"]'); + + foreach ($elements as $element) { + $content = ''; + + $title = $element->find('span[class^="VideoCardUI_videoTitle__"] > a', 0); + if (!$title) { + continue; } + + $linkElement = $element->find('a[href^="/Video/"]', 0); + if ($linkElement) { + $itemUri = $this::URI . $linkElement->getAttribute('href'); + } + + $image = $element->find('img', 0); + if ($image) { + if (isset($itemUri)) { + $content .= sprintf('

', $itemUri, $image->getAttribute('src')); + } else { + $content .= sprintf('

', $image->getAttribute('src')); + } + } + + $contentSegments = []; + + $videoLength = $element->find('[class^="CardMedia_videoDuration__"] > span', 0); + if ($videoLength) { + $contentSegments[] = sprintf('%s', $videoLength->innertext); + } + + $price = $element->find('[class^="PriceUI_regularPrice__"], [class^="PriceUI_card_price__"] > p, [class^="PriceUI_card_free_text__"]', 0); + $discountedPrice = $element->find('[class^="PriceUI_discountedPrice__"]', 0); + + if ($price && $discountedPrice) { + $contentSegments[] = sprintf('%s %s', $price->innertext, $discountedPrice->innertext); + } elseif ($price && !$discountedPrice) { + $contentSegments[] = sprintf('%s', $price->innertext); + } + + $content .= implode(' • ', $contentSegments); + $this->items[] = [ - 'title' => $a->plaintext, - 'uri' => $uri, - 'uid' => $uid ?? $uri, - 'content' => $item->innertext, + 'title' => $title->innertext, + 'uri' => isset($itemUri) ? $itemUri : null, + 'content' => $content ]; } } + + public function getName() + { + $profile = $this->getInput('profile'); + + if ($profile) { + $dom = $this->getHTML($profile); + $profileNameElement = $dom->find('[class^="ProfileAboutMeUI_stageName__"]', 0); + if (!$profileNameElement) { + return parent::getName(); + } + + $profileNameElementContent = $profileNameElement->innertext; + $index = strpos($profileNameElementContent, '<'); + $profileName = substr($profileNameElementContent, 0, $index); + + return 'ManyVids: ' . $profileName; + } + + return parent::getName(); + } + + public function getUri() + { + $profile = $this->getInput('profile'); + if ($profile) { + return sprintf('%s/Profile/%s/Store/Videos', $this::URI, $profile); + } + + return parent::getUri(); + } + + private function getHTML($profile) + { + if (is_null($this->domCache)) { + $opt = [CURLOPT_COOKIE => 'sfwtoggle=false']; + $url = sprintf('https://manyvids.com/Profile/%s/Store/Videos?sort=newest', $profile); + $this->domCache = getSimpleHTMLDOM($url, [], $opt); + } + + return $this->domCache; + } }