Skip to content

Commit

Permalink
[NVIDIADriverBridge] Initial Commit (#4198)
Browse files Browse the repository at this point in the history
* [NVIDIADriverBridge] Initial Commit

Fetch the latest NVIDIA Linux driver updates

* Update NVIDIADriverBridge.php

* refactor

* rename

---------

Co-authored-by: Dag <[email protected]>
  • Loading branch information
tillcash and dvikan authored Aug 7, 2024
1 parent db85015 commit 7073bb2
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions bridges/NvidiaDriverBridge.php
Original file line number Diff line number Diff line change
@@ -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,
];
}
}
}

0 comments on commit 7073bb2

Please sign in to comment.