mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
33 lines
932 B
PHP
33 lines
932 B
PHP
<?php
|
|
|
|
class VarietyBridge extends FeedExpander
|
|
{
|
|
const MAINTAINER = 'IceWreck';
|
|
const NAME = 'Variety Bridge';
|
|
const URI = 'https://variety.com';
|
|
const CACHE_TIMEOUT = 3600;
|
|
const DESCRIPTION = 'RSS feed for Variety';
|
|
|
|
public function collectData()
|
|
{
|
|
$this->collectExpandableDatas('https://feeds.feedburner.com/variety/headlines', 15);
|
|
}
|
|
|
|
protected function parseItem($newsItem)
|
|
{
|
|
$item = parent::parseItem($newsItem);
|
|
// $articlePage gets the entire page's contents
|
|
$articlePage = getSimpleHTMLDOM($newsItem->link);
|
|
|
|
// Remove Script tags
|
|
foreach ($articlePage->find('script') as $script_tag) {
|
|
$script_tag->remove();
|
|
}
|
|
$article = $articlePage->find('div.c-featured-media', 0);
|
|
$article = $article . $articlePage->find('.c-content', 0);
|
|
|
|
$item['content'] = $article;
|
|
|
|
return $item;
|
|
}
|
|
}
|