mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
more
This commit is contained in:
parent
4b92768e27
commit
0459101180
@ -6,6 +6,7 @@ class MerchantAndMillsBridge extends BridgeAbstract {
|
|||||||
const DESCRIPTION = 'The latest blog posts from Merchant and Mills.';
|
const DESCRIPTION = 'The latest blog posts from Merchant and Mills.';
|
||||||
const MAINTAINER = 'caseykulm';
|
const MAINTAINER = 'caseykulm';
|
||||||
const CACHE_TIMEOUT = 43200; // 12h
|
const CACHE_TIMEOUT = 43200; // 12h
|
||||||
|
const POST_LIMIT = 10; // Maximum number of blog posts to fetch
|
||||||
const PARAMETERS = [[
|
const PARAMETERS = [[
|
||||||
'selected_country_id' => [
|
'selected_country_id' => [
|
||||||
'name' => 'Country',
|
'name' => 'Country',
|
||||||
@ -19,8 +20,7 @@ class MerchantAndMillsBridge extends BridgeAbstract {
|
|||||||
]
|
]
|
||||||
]];
|
]];
|
||||||
|
|
||||||
private function getCountryBlogPath($countryName): string
|
private function getCountryBlogPath($countryName): string {
|
||||||
{
|
|
||||||
if ($countryName === 'European Union') {
|
if ($countryName === 'European Union') {
|
||||||
return '/eu/blog';
|
return '/eu/blog';
|
||||||
}
|
}
|
||||||
@ -36,57 +36,78 @@ class MerchantAndMillsBridge extends BridgeAbstract {
|
|||||||
return '/rw/blog';
|
return '/rw/blog';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData()
|
public function collectData() {
|
||||||
{
|
|
||||||
$selectedCountryKey = $this->getKey('selected_country_id');
|
$selectedCountryKey = $this->getKey('selected_country_id');
|
||||||
$selectedCountryBlogPath = $this->getCountryBlogPath($selectedCountryKey);
|
$selectedCountryBlogPath = $this->getCountryBlogPath($selectedCountryKey);
|
||||||
$url = self::URI . $selectedCountryBlogPath;
|
$url = self::URI . $selectedCountryBlogPath;
|
||||||
$html = getSimpleHTMLDOM($url)
|
$html = getSimpleHTMLDOM($url)
|
||||||
or returnServerError('Could not request ' . $url);
|
or returnServerError('Could not request ' . $url);
|
||||||
|
|
||||||
|
// Limit processing to POST_LIMIT blog posts
|
||||||
|
$counter = 0;
|
||||||
foreach ($html->find('.products .post') as $post) {
|
foreach ($html->find('.products .post') as $post) {
|
||||||
|
if ($counter >= self::POST_LIMIT) {
|
||||||
|
break; // Stop when the limit is reached
|
||||||
|
}
|
||||||
|
|
||||||
$item = [];
|
$item = [];
|
||||||
|
|
||||||
// Extract image
|
// Extract title and URI
|
||||||
$image = $post->find('.post_image img', 0);
|
|
||||||
if ($image) {
|
|
||||||
// Resolve the relative image URL
|
|
||||||
$imageUrl = $image->src;
|
|
||||||
if (!str_starts_with($imageUrl, 'http')) {
|
|
||||||
$imageUrl = rtrim(self::URI, '/') . '/' . ltrim($imageUrl, '/');
|
|
||||||
}
|
|
||||||
$item['image'] = $imageUrl;
|
|
||||||
} else {
|
|
||||||
$item['image'] = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Extract title
|
|
||||||
$titleLink = $post->find('.post_name a', 0);
|
$titleLink = $post->find('.post_name a', 0);
|
||||||
$item['title'] = $titleLink ? trim($titleLink->plaintext) : '';
|
$item['title'] = $titleLink ? trim($titleLink->plaintext) : 'No title';
|
||||||
$item['uri'] = $titleLink ? self::URI . $titleLink->href : '';
|
$item['uri'] = $titleLink ? self::URI . $titleLink->href : '';
|
||||||
|
|
||||||
// Extract date and views
|
// Extract date
|
||||||
$dateAndViews = $post->find('.post_date span');
|
$dateElement = $post->find('.post_date span', 0);
|
||||||
$item['date'] = isset($dateAndViews[0]) ? trim($dateAndViews[0]->plaintext) : '';
|
$item['timestamp'] = $dateElement ? strtotime(trim($dateElement->plaintext)) : null;
|
||||||
$item['views'] = isset($dateAndViews[1]) ? trim(str_replace('Viewed:', '', $dateAndViews[1]->plaintext)) : '';
|
|
||||||
|
|
||||||
// Extract description
|
// Extract and fetch content
|
||||||
$description = $post->find('.post_desc', 0);
|
if ($item['uri']) {
|
||||||
$item['content'] = '';
|
$item['content'] = $this->getPostContent($item['uri']);
|
||||||
|
} else {
|
||||||
// Add the image and description to content
|
$item['content'] = 'No content available.';
|
||||||
if (!empty($item['image'])) {
|
|
||||||
$item['content'] .= '<div style="text-align: center; max-width: 100%; overflow: hidden;">'
|
|
||||||
. '<img src="' . $item['image'] . '" alt="' . htmlspecialchars($titleLink->plaintext ?? '') . '" '
|
|
||||||
. 'style="max-width: 100%; height: auto; max-height: 700px;" />'
|
|
||||||
. '</div><br />';
|
|
||||||
}
|
|
||||||
if ($description) {
|
|
||||||
$item['content'] .= trim($description->plaintext);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add item to the feed
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
|
$counter++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch and parse the content of a single blog post.
|
||||||
|
*
|
||||||
|
* @param string $url The URL of the single blog post.
|
||||||
|
* @return string The HTML content of the post.
|
||||||
|
*/
|
||||||
|
private function getPostContent(string $url): string
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$postHtml = getSimpleHTMLDOM($url)
|
||||||
|
or returnServerError('Could not fetch content from ' . $url);
|
||||||
|
|
||||||
|
$contentElement = $postHtml->find('.box.w-blog-widget-post-description', 0);
|
||||||
|
|
||||||
|
// Adjust relative URLs for images and add scaling style
|
||||||
|
if ($contentElement) {
|
||||||
|
foreach ($contentElement->find('img') as $img) {
|
||||||
|
$src = $img->src;
|
||||||
|
if (strpos($src, 'http') !== 0) { // If it's a relative path
|
||||||
|
$img->src = self::URI . $src;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add inline styles for proper scaling
|
||||||
|
$img->style = 'max-width: 100%; height: auto; display: block; margin: auto;';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $contentElement ? $contentElement->innertext : 'Content not found.';
|
||||||
|
} catch (Exception $e) {
|
||||||
|
return 'Failed to fetch content: ' . $e->getMessage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getIcon(): string
|
||||||
|
{
|
||||||
|
return 'https://merchantandmills.com/uk/themes/theme-1/icons/apple-icon-57x57.png?6763';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user