rss-bridge/bridges/EngadgetBridge.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1019 B
PHP
Raw Normal View History

<?php
class EngadgetBridge extends FeedExpander
{
const MAINTAINER = 'IceWreck';
const NAME = 'Engadget Bridge';
const URI = 'https://www.engadget.com/';
const CACHE_TIMEOUT = 3600;
const DESCRIPTION = 'Article content for Engadget.';
public function collectData()
{
2023-09-23 17:50:41 +02:00
$max = 10;
$this->collectExpandableDatas(static::URI . 'rss.xml', $max);
}
protected function parseItem($newsItem)
{
$item = parent::parseItem($newsItem);
2023-09-23 17:50:41 +02:00
$url = (string) $newsItem->link;
if (!$url) {
return $item;
}
// todo: remove querystring tracking
$articlePage = getSimpleHTMLDOM($url);
// figure contain's the main article image
$article = $articlePage->find('figure', 0);
// .article-text has the actual article
foreach ($articlePage->find('.article-text') as $element) {
$article = $article . $element;
}
$item['content'] = $article;
return $item;
}
}