1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?php
class NvidiaDriverBridge extends FeedExpander
{
const NAME = 'NVIDIA Driver Releases';
const URI = 'https://www.nvidia.com/Download/processFind.aspx';
const DESCRIPTION = 'Fetch the latest NVIDIA driver updates';
const MAINTAINER = 'tillcash';
const PARAMETERS = [
'Windows' => [
'wwhql' => [
'name' => 'Driver Type',
'type' => 'list',
'values' => [
'All' => '',
'Certified' => '1',
'Studio' => '4',
],
'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()
{
$parameters = [
'lid' => 1, // en-us
'psid' => 129, // GeForce
];
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('lwhql');
$parameters['osid'] = 12;
$parameters['whql'] = $whql;
$this->operatingSystem = 'Linux';
break;
case 'FreeBSD':
$whql = $this->getInput('fwhql');
$parameters['osid'] = 22;
$parameters['whql'] = $whql;
$this->operatingSystem = 'FreeBSD';
break;
}
$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 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,
];
}
}
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);
}
}
|