2022-05-08 05:08:55 +03:00
|
|
|
<?php
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
class GolemBridge extends FeedExpander
|
|
|
|
{
|
|
|
|
const MAINTAINER = 'Mynacol';
|
|
|
|
const NAME = 'Golem Bridge';
|
|
|
|
const URI = 'https://www.golem.de/';
|
|
|
|
const CACHE_TIMEOUT = 1800; // 30min
|
|
|
|
const DESCRIPTION = 'Returns the full articles instead of only the intro';
|
|
|
|
const PARAMETERS = [[
|
|
|
|
'category' => [
|
|
|
|
'name' => 'Category',
|
|
|
|
'type' => 'list',
|
|
|
|
'values' => [
|
|
|
|
'Alle News'
|
|
|
|
=> 'https://rss.golem.de/rss.php?feed=ATOM1.0',
|
|
|
|
'Audio/Video'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=audio-video&feed=ATOM1.0',
|
|
|
|
'Auto'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=auto&feed=ATOM1.0',
|
|
|
|
'Foto'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=foto&feed=ATOM1.0',
|
|
|
|
'Games'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=games&feed=ATOM1.0',
|
|
|
|
'Handy'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=handy&feed=ATOM1.0',
|
|
|
|
'Internet'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=internet&feed=ATOM1.0',
|
|
|
|
'Mobil'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=mobil&feed=ATOM1.0',
|
|
|
|
'Open Source'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=open-source&feed=ATOM1.0',
|
|
|
|
'Politik/Recht'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=politik-recht&feed=ATOM1.0',
|
|
|
|
'Security'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=security&feed=ATOM1.0',
|
|
|
|
'Desktop-Applikationen'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=desktop-applikationen&feed=ATOM1.0',
|
|
|
|
'Software-Entwicklung'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=softwareentwicklung&feed=ATOM1.0',
|
|
|
|
'Wirtschaft'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=wirtschaft&feed=ATOM1.0',
|
|
|
|
'Wissenschaft'
|
|
|
|
=> 'https://rss.golem.de/rss.php?ms=wissenschaft&feed=ATOM1.0'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'limit' => [
|
|
|
|
'name' => 'Limit',
|
|
|
|
'type' => 'number',
|
|
|
|
'required' => false,
|
|
|
|
'title' => 'Specify number of full articles to return',
|
|
|
|
'defaultValue' => 5
|
|
|
|
]
|
|
|
|
]];
|
|
|
|
const LIMIT = 5;
|
|
|
|
const HEADERS = ['Cookie: golem_consent20=simple|220101;'];
|
|
|
|
|
|
|
|
public function collectData()
|
|
|
|
{
|
|
|
|
$this->collectExpandableDatas(
|
|
|
|
$this->getInput('category'),
|
|
|
|
$this->getInput('limit') ?: static::LIMIT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function parseItem($item)
|
|
|
|
{
|
|
|
|
$item = parent::parseItem($item);
|
Fix coding style missed by phpbcf (#2901)
$ composer require --dev friendsofphp/php-cs-fixer
$ echo >.php-cs-fixer.dist.php "<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__);
$rules = [
'@PSR12' => true,
// '@PSR12:risky' => true,
'@PHP74Migration' => true,
// '@PHP74Migration:risky' => true,
// buggy, duplicates existing comment sometimes
'no_break_comment' => false,
'array_syntax' => true,
'lowercase_static_reference' => true,
'visibility_required' => false,
// Too much noise
'binary_operator_spaces' => false,
'heredoc_indentation' => false,
'trailing_comma_in_multiline' => false,
];
$config = new PhpCsFixer\Config();
return $config
->setRules($rules)
// ->setRiskyAllowed(true)
->setFinder($finder);
"
$ vendor/bin/php-cs-fixer --version
PHP CS Fixer 3.8.0 BerSzcz against war! by Fabien Potencier and Dariusz Ruminski.
PHP runtime: 8.1.7
$ vendor/bin/php-cs-fixer fix
$ rm .php-cs-fixer.cache
$ vendor/bin/php-cs-fixer fix
2022-07-08 14:00:52 +03:00
|
|
|
$item['content'] ??= '';
|
2022-07-01 16:10:30 +03:00
|
|
|
$uri = $item['uri'];
|
|
|
|
|
2022-10-25 15:30:01 +03:00
|
|
|
$urls = [];
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
while ($uri) {
|
2022-10-25 15:30:01 +03:00
|
|
|
if (isset($urls[$uri])) {
|
|
|
|
// Prevent forever a loop
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$urls[$uri] = true;
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$articlePage = getSimpleHTMLDOMCached($uri, static::CACHE_TIMEOUT, static::HEADERS);
|
|
|
|
|
|
|
|
// URI without RSS feed reference
|
|
|
|
$item['uri'] = $articlePage->find('head meta[name="twitter:url"]', 0)->content;
|
|
|
|
|
|
|
|
$author = $articlePage->find('article header .authors .authors__name', 0);
|
|
|
|
if ($author) {
|
2023-02-08 21:44:01 +03:00
|
|
|
$item['author'] = $author->plaintext;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2023-05-08 17:21:03 +03:00
|
|
|
$categories = $articlePage->find('ul.tags__list li');
|
|
|
|
foreach ($categories as $category) {
|
|
|
|
$trimmedcategories[] = trim(html_entity_decode($category->plaintext));
|
|
|
|
}
|
|
|
|
if (isset($trimmedcategories)) {
|
|
|
|
$item['categories'] = array_unique($trimmedcategories);
|
|
|
|
}
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$item['content'] .= $this->extractContent($articlePage);
|
|
|
|
|
|
|
|
// next page
|
|
|
|
$nextUri = $articlePage->find('link[rel="next"]', 0);
|
|
|
|
$uri = $nextUri ? static::URI . $nextUri->href : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function extractContent($page)
|
|
|
|
{
|
|
|
|
$item = '';
|
|
|
|
|
|
|
|
$article = $page->find('article', 0);
|
|
|
|
|
|
|
|
// delete known bad elements
|
|
|
|
foreach (
|
2023-05-10 23:14:34 +03:00
|
|
|
$article->find('div[id*="adtile"], #job-market, #seminars, iframe,
|
2023-06-28 16:51:42 +03:00
|
|
|
div.gbox_affiliate, div.toc, .embedcontent, script') as $bad
|
2022-07-01 16:10:30 +03:00
|
|
|
) {
|
|
|
|
$bad->remove();
|
|
|
|
}
|
|
|
|
// reload html, as remove() is buggy
|
|
|
|
$article = str_get_html($article->outertext);
|
|
|
|
|
|
|
|
if ($pageHeader = $article->find('header.paged-cluster-header h1', 0)) {
|
|
|
|
$item .= $pageHeader;
|
|
|
|
}
|
|
|
|
|
|
|
|
$header = $article->find('header', 0);
|
|
|
|
foreach ($header->find('p, figure') as $element) {
|
|
|
|
$item .= $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
$content = $article->find('div.formatted', 0);
|
|
|
|
|
|
|
|
// full image quality
|
|
|
|
foreach ($content->find('img[data-src-full][src*="."]') as $img) {
|
|
|
|
$img->src = $img->getAttribute('data-src-full');
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($content->find('p, h1, h3, img[src*="."]') as $element) {
|
|
|
|
$item .= $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $item;
|
|
|
|
}
|
2022-05-08 05:08:55 +03:00
|
|
|
}
|