mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[HinduTamilBridge] fix image (#4237)
This commit is contained in:
parent
d51cc8f1a7
commit
e010fd4d52
@ -4,6 +4,7 @@ class HinduTamilBridge extends FeedExpander
|
|||||||
{
|
{
|
||||||
const NAME = 'HinduTamil';
|
const NAME = 'HinduTamil';
|
||||||
const URI = 'https://www.hindutamil.in';
|
const URI = 'https://www.hindutamil.in';
|
||||||
|
const FEED_BASE_URL = 'https://feeds.feedburner.com/Hindu_Tamil_';
|
||||||
const DESCRIPTION = 'Retrieve full articles from hindutamil.in feeds';
|
const DESCRIPTION = 'Retrieve full articles from hindutamil.in feeds';
|
||||||
const MAINTAINER = 'tillcash';
|
const MAINTAINER = 'tillcash';
|
||||||
const PARAMETERS = [
|
const PARAMETERS = [
|
||||||
@ -45,8 +46,6 @@ class HinduTamilBridge extends FeedExpander
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
const FEED_BASE_URL = 'https://feeds.feedburner.com/Hindu_Tamil_';
|
|
||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
$topic = $this->getKey('topic');
|
$topic = $this->getKey('topic');
|
||||||
@ -69,34 +68,30 @@ class HinduTamilBridge extends FeedExpander
|
|||||||
return $item;
|
return $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
$date = $dom->find('p span.date', 1);
|
$item['timestamp'] = $this->getTimestamp($dom) ?? $item['timestamp'];
|
||||||
if ($date) {
|
$item['content'] = $this->getImage($dom) . $this->cleanContent($content);
|
||||||
$item['timestamp'] = $this->toRFC3339($date->plaintext);
|
|
||||||
}
|
|
||||||
|
|
||||||
$image = $dom->find('#LoadArticle figure', 0) ?? '';
|
|
||||||
$item['content'] = $image . $this->cleanContent($content);
|
|
||||||
|
|
||||||
return $item;
|
return $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function cleanContent($content)
|
private function cleanContent($content): string
|
||||||
{
|
{
|
||||||
foreach ($content->find('div[align="center"], script') as $remove) {
|
foreach ($content->find('div[align="center"], script, .adsplacement') as $remove) {
|
||||||
$remove->outertext = '';
|
$remove->outertext = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $content;
|
return $content->innertext;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function toRFC3339($dateString)
|
private function getTimestamp($dom): ?string
|
||||||
{
|
{
|
||||||
$timestamp = strtotime(trim($dateString));
|
$date = $dom->find('meta[property="article:published_time"]', 0);
|
||||||
|
return $date ? $date->getAttribute('content') : null;
|
||||||
|
}
|
||||||
|
|
||||||
if ($timestamp === false) {
|
private function getImage($dom): string
|
||||||
return null;
|
{
|
||||||
}
|
$image = $dom->find('meta[property="og:image"]', 0);
|
||||||
|
return $image ? sprintf('<p><img src="%s"></p>', $image->getAttribute('content')) : '';
|
||||||
return date('Y-m-d\TH:i:s', $timestamp) . '+05:30';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user