mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[ManyVidsBridge] Create proper feed content (#4493)
This commit is contained in:
parent
68ff39e164
commit
1c45eff505
@ -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('<p><a href="%s"><img src="%s"></a></p>', $itemUri, $image->getAttribute('src'));
|
||||
} else {
|
||||
$content .= sprintf('<p><img src="%s"></p>', $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</s> <strong>%s</strong>', $price->innertext, $discountedPrice->innertext);
|
||||
} elseif ($price && !$discountedPrice) {
|
||||
$contentSegments[] = sprintf('<strong>%s</strong>', $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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user