This file is indexed.

/usr/share/rss-bridge/bridges/SuperbWallpapersBridge.php is in rss-bridge 2017-08-03-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<?php
class SuperbWallpapersBridge extends BridgeAbstract {

	const MAINTAINER = 'nel50n';
	const NAME = 'Superb Wallpapers Bridge';
	const URI = 'http://www.superbwallpapers.com/';
	const CACHE_TIMEOUT = 43200; // 12h
	const DESCRIPTION = 'Returns the latests wallpapers from SuperbWallpapers';

	const PARAMETERS = array( array(
		'c' => array(
			'name' => 'category',
			'required' => true
		),
		'm' => array(
			'name' => 'Max number of wallpapers',
			'type' => 'number'
		),
		'r' => array(
			'name' => 'resolution',
			'exampleValue' => '1920x1200, 1680x1050,…',
			'defaultValue' => '1920x1200'
		)
	));

	public function collectData(){
		$category = $this->getInput('c');
		$resolution = $this->getInput('r'); // Wide wallpaper default

		$num = 0;
		$max = $this->getInput('m') ?: 36;
		$lastpage = 1;

		// Get last page number
		$link = self::URI . '/' . $category . '/9999.html';
		$html = getSimpleHTMLDOM($link)
			or returnServerError('Could not load ' . $link);

		$lastpage = min($html->find('.paging .cpage', 0)->innertext(), ceil($max / 36));

		for($page = 1; $page <= $lastpage; $page++) {
			$link = self::URI . '/' . $category . '/' . $page . '.html';
			$html = getSimpleHTMLDOM($link)
				or returnServerError('No results for this query.');

			foreach($html->find('.wpl .i a') as $element) {
				$thumbnail = $element->find('img', 0);

				$item = array();
				$item['uri'] = str_replace('200x125', $this->resolution, $thumbnail->src);
				$item['timestamp'] = time();
				$item['title'] = $element->title;
				$item['content'] = $item['title'] . '<br><a href="' . $item['uri'] . '">' . $thumbnail . '</a>';
				$this->items[] = $item;

				$num++;
				if ($num >= $max)
					break 2;
			}
		}
	}

	public function getName(){
		if(!is_null($this->getInput('c')) && !is_null($this->getInput('r'))) {
			return self::NAME . '- ' . $this->getInput('c') . ' [' . $this->getInput('r') . ']';
		}

		return parent::getName();
	}
}