1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 14:18:35 +01:00

[NVIDIADriverBridge] Initial Commit (#4198)

* [NVIDIADriverBridge] Initial Commit

Fetch the latest NVIDIA Linux driver updates

* Update NVIDIADriverBridge.php

* refactor

* rename

---------

Co-authored-by: Dag <me@dvikan.no>
This commit is contained in:
tillcash 2024-08-08 05:05:48 +05:30 committed by GitHub
parent db85015daa
commit 7073bb2f46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,49 @@
<?php
class NvidiaDriverBridge extends FeedExpander
{
const NAME = 'NVIDIA Linux Driver Releases';
const URI = 'https://www.nvidia.com/Download/processFind.aspx';
const DESCRIPTION = 'Fetch the latest NVIDIA Linux driver updates';
const MAINTAINER = 'tillcash';
const PARAMETERS = [
[
'whql' => [
'name' => 'Version',
'type' => 'list',
'values' => [
'All' => '',
'Beta' => '0',
'New Feature Branch' => '5',
'Recommended/Certified' => '1',
],
],
],
];
public function collectData()
{
$whql = $this->getInput('whql');
$parameters = [
'lid' => 1, // en-us
'psid' => 129, // GeForce
'osid' => 12, // Linux 64-bit
'whql' => $whql,
];
$url = 'https://www.nvidia.com/Download/processFind.aspx?' . http_build_query($parameters);
$dom = getSimpleHTMLDOM($url);
foreach ($dom->find('tr#driverList') as $element) {
$id = str_replace('img_', '', $element->find('img', 0)->id);
$this->items[] = [
'timestamp' => $element->find('td.gridItem', 3)->plaintext,
'title' => sprintf('NVIDIA Linux Driver %s', $element->find('td.gridItem', 2)->plaintext),
'uri' => 'https://www.nvidia.com/Download/driverResults.aspx/' . $id,
'content' => $dom->find('tr#tr_' . $id . ' span', 0)->innertext,
];
}
}
}