mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
76 lines
2.6 KiB
PHP
76 lines
2.6 KiB
PHP
<?php
|
|
|
|
class ArsTechnicaBridge extends FeedExpander
|
|
{
|
|
const MAINTAINER = 'phantop';
|
|
const NAME = 'Ars Technica';
|
|
const URI = 'https://arstechnica.com/';
|
|
const DESCRIPTION = 'Returns the latest articles from Ars Technica';
|
|
const PARAMETERS = [[
|
|
'section' => [
|
|
'name' => 'Site section',
|
|
'type' => 'list',
|
|
'defaultValue' => 'index',
|
|
'values' => [
|
|
'All' => 'index',
|
|
'Apple' => 'apple',
|
|
'Board Games' => 'cardboard',
|
|
'Cars' => 'cars',
|
|
'Features' => 'features',
|
|
'Gaming' => 'gaming',
|
|
'Information Technology' => 'technology-lab',
|
|
'Science' => 'science',
|
|
'Staff Blogs' => 'staff-blogs',
|
|
'Tech Policy' => 'tech-policy',
|
|
'Tech' => 'gadgets',
|
|
]
|
|
]
|
|
]];
|
|
|
|
public function collectData()
|
|
{
|
|
$url = 'https://feeds.arstechnica.com/arstechnica/' . $this->getInput('section');
|
|
$this->collectExpandableDatas($url, 10);
|
|
}
|
|
|
|
protected function parseItem(array $item)
|
|
{
|
|
$item_html = getSimpleHTMLDOMCached($item['uri'] . '&');
|
|
$item_html = defaultLinkTo($item_html, self::URI);
|
|
|
|
$item_content = $item_html->find('.article-content.post-page', 0);
|
|
if (!$item_content) {
|
|
// The dom selector probably broke. Let's just return the item as-is
|
|
return $item;
|
|
}
|
|
|
|
$item['content'] = $item_content;
|
|
|
|
// remove various ars advertising
|
|
$item['content']->find('#social-left', 0)->remove();
|
|
foreach ($item['content']->find('.ars-component-buy-box') as $ad) {
|
|
$ad->remove();
|
|
}
|
|
foreach ($item['content']->find('i-amphtml-sizer') as $ad) {
|
|
$ad->remove();
|
|
}
|
|
foreach ($item['content']->find('.sidebar') as $ad) {
|
|
$ad->remove();
|
|
}
|
|
|
|
foreach ($item['content']->find('a') as $link) { //remove amp redirect links
|
|
$url = $link->getAttribute('href');
|
|
if (str_contains($url, 'go.redirectingat.com')) {
|
|
$url = extractFromDelimiters($url, 'url=', '&');
|
|
$url = urldecode($url);
|
|
$link->setAttribute('href', $url);
|
|
}
|
|
}
|
|
|
|
$item['content'] = backgroundToImg(str_replace('data-amp-original-style="background-image', 'style="background-image', $item['content']));
|
|
|
|
$item['uid'] = explode('=', $item['uri'])[1];
|
|
|
|
return $item;
|
|
}
|
|
}
|