[HinduTamilBridge] fix image

This commit is contained in:
tillcash 2024-08-28 21:55:18 +05:30 committed by GitHub
parent 6516e31c1b
commit 4b68708088
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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';
} }
} }