[MaalaimalarBridge] fix image (#4222)

* [NvidiaDriverBridge] Added Windows support

* Update NvidiaDriverBridge.php

* Update NvidiaDriverBridge.php

* [MaalaimalarBridge] fix image

* [MaalaimalarBridge] fix lint
This commit is contained in:
tillcash 2024-08-19 22:47:42 +05:30 committed by GitHub
parent c0e37bcf35
commit 320afc3f32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 78 additions and 16 deletions

View File

@ -103,8 +103,12 @@ class MaalaimalarBridge extends BridgeAbstract
{ {
$content = ''; $content = '';
$imageElement = $article->find('div.ignore-autoplay img', 0); $imageElement = $article->find('div.ignore-autoplay img', 0);
if ($imageElement) { if ($imageElement && isset($imageElement->{'data-src'})) {
$content .= '<p><img src="' . $imageElement->{'data-src'} . '"></p>'; $url = str_replace('500x300_', '', $imageElement->{'data-src'});
if (filter_var($url, FILTER_VALIDATE_URL)) {
$content = sprintf('<p><img src="%s"></p>', htmlspecialchars($url, ENT_QUOTES, 'UTF-8'));
}
} }
$storyElement = $article->find('div.story-content', 0); $storyElement = $article->find('div.story-content', 0);

View File

@ -2,36 +2,83 @@
class NvidiaDriverBridge extends FeedExpander class NvidiaDriverBridge extends FeedExpander
{ {
const NAME = 'NVIDIA Linux Driver Releases'; const NAME = 'NVIDIA Driver Releases';
const URI = 'https://www.nvidia.com/Download/processFind.aspx'; const URI = 'https://www.nvidia.com/Download/processFind.aspx';
const DESCRIPTION = 'Fetch the latest NVIDIA Linux driver updates'; const DESCRIPTION = 'Fetch the latest NVIDIA driver updates';
const MAINTAINER = 'tillcash'; const MAINTAINER = 'tillcash';
const PARAMETERS = [ const PARAMETERS = [
[ 'Windows' => [
'whql' => [ 'wwhql' => [
'name' => 'Version', 'name' => 'Driver Type',
'type' => 'list', 'type' => 'list',
'values' => [ 'values' => [
'All' => '', 'All' => '',
'Beta' => '0', 'Certified' => '1',
'New Feature Branch' => '5', 'Studio' => '4',
'Recommended/Certified' => '1',
], ],
'defaultValue' => '1',
],
],
'Linux' => [
'lwhql' => [
'name' => 'Driver Type',
'type' => 'list',
'values' => [
'All' => '',
'Beta' => '0',
'Branch' => '5',
'Certified' => '1',
],
'defaultValue' => '1',
],
],
'FreeBSD' => [
'fwhql' => [
'name' => 'Driver Type',
'type' => 'list',
'values' => [
'All' => '',
'Beta' => '0',
'Branch' => '5',
'Certified' => '1',
],
'defaultValue' => '1',
], ],
], ],
]; ];
private $operatingSystem = '';
public function collectData() public function collectData()
{ {
$whql = $this->getInput('whql');
$parameters = [ $parameters = [
'lid' => 1, // en-us 'lid' => 1, // en-us
'psid' => 129, // GeForce 'psid' => 129, // GeForce
'osid' => 12, // Linux 64-bit
'whql' => $whql,
]; ];
switch ($this->queriedContext) {
case 'Windows':
$whql = $this->getInput('wwhql');
$parameters['osid'] = 57;
$parameters['dtcid'] = 1; // Windows Driver DCH
$parameters['whql'] = $whql;
$this->operatingSystem = 'Windows';
break;
case 'Linux':
$whql = $this->getInput('lwwhql');
$parameters['osid'] = 12;
$parameters['whql'] = $whql;
$this->operatingSystem = 'Linux';
break;
case 'FreeBSD':
$whql = $this->getInput('fwwhql');
$parameters['osid'] = 22;
$parameters['whql'] = $whql;
$this->operatingSystem = 'FreeBSD';
break;
}
$url = 'https://www.nvidia.com/Download/processFind.aspx?' . http_build_query($parameters); $url = 'https://www.nvidia.com/Download/processFind.aspx?' . http_build_query($parameters);
$dom = getSimpleHTMLDOM($url); $dom = getSimpleHTMLDOM($url);
@ -40,10 +87,21 @@ class NvidiaDriverBridge extends FeedExpander
$this->items[] = [ $this->items[] = [
'timestamp' => $element->find('td.gridItem', 3)->plaintext, 'timestamp' => $element->find('td.gridItem', 3)->plaintext,
'title' => sprintf('NVIDIA Linux Driver %s', $element->find('td.gridItem', 2)->plaintext), 'title' => sprintf('NVIDIA Driver %s', $element->find('td.gridItem', 2)->plaintext),
'uri' => 'https://www.nvidia.com/Download/driverResults.aspx/' . $id, 'uri' => 'https://www.nvidia.com/Download/driverResults.aspx/' . $id,
'content' => $dom->find('tr#tr_' . $id . ' span', 0)->innertext, 'content' => $dom->find('tr#tr_' . $id . ' span', 0)->innertext,
]; ];
} }
} }
public function getIcon()
{
return 'https://www.nvidia.com/favicon.ico';
}
public function getName()
{
$version = $this->getKey('whql') ?? '';
return sprintf('NVIDIA %s %s Driver Releases', $this->operatingSystem, $version);
}
} }