2018-04-15 13:13:10 +02:00
|
|
|
<?php
|
|
|
|
class FDroidBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
const MAINTAINER = 'Mitsukarenai';
|
|
|
|
const NAME = 'F-Droid Bridge';
|
|
|
|
const URI = 'https://f-droid.org/';
|
2018-04-15 13:21:48 +02:00
|
|
|
const CACHE_TIMEOUT = 60 * 60 * 2; // 2 hours
|
2018-04-15 13:13:10 +02:00
|
|
|
const DESCRIPTION = 'Returns latest added/updated apps on the open-source Android apps repository F-Droid';
|
|
|
|
|
|
|
|
const PARAMETERS = array( array(
|
|
|
|
'u' => array(
|
|
|
|
'name' => 'Widget selection',
|
|
|
|
'type' => 'list',
|
|
|
|
'values' => array(
|
|
|
|
'Latest added apps' => 'added',
|
|
|
|
'Latest updated apps' => 'updated'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
2018-10-26 18:07:34 +02:00
|
|
|
public function getIcon() {
|
|
|
|
return self::URI . 'assets/favicon.ico?v=8j6PKzW9Mk';
|
|
|
|
}
|
|
|
|
|
2018-04-15 13:13:10 +02:00
|
|
|
public function collectData(){
|
|
|
|
$url = self::URI;
|
|
|
|
$html = getSimpleHTMLDOM($url)
|
|
|
|
or returnServerError('Could not request F-Droid.');
|
|
|
|
|
|
|
|
// targetting the corresponding widget based on user selection
|
2019-04-04 22:52:59 +02:00
|
|
|
// "updated" is the 5th widget on the page, "added" is the 6th
|
2018-04-15 13:13:10 +02:00
|
|
|
|
|
|
|
switch($this->getInput('u')) {
|
|
|
|
case 'updated':
|
2019-04-04 22:52:59 +02:00
|
|
|
$html_widget = $html->find('div.sidebar-widget', 5);
|
2018-04-15 13:13:10 +02:00
|
|
|
break;
|
|
|
|
default:
|
2019-04-04 22:52:59 +02:00
|
|
|
$html_widget = $html->find('div.sidebar-widget', 6);
|
2018-04-15 13:13:10 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// and now extracting app info from the selected widget (and yeah turns out icons are of heterogeneous sizes)
|
|
|
|
|
|
|
|
foreach($html_widget->find('a') as $element) {
|
|
|
|
$item = array();
|
|
|
|
$item['uri'] = self::URI . $element->href;
|
|
|
|
$item['title'] = $element->find('h4', 0)->plaintext;
|
|
|
|
$item['icon'] = $element->find('img', 0)->src;
|
|
|
|
$item['summary'] = $element->find('span.package-summary', 0)->plaintext;
|
2018-04-15 13:21:48 +02:00
|
|
|
$item['content'] = '
|
2018-11-05 12:55:58 +01:00
|
|
|
<a href="' . $item['uri'] . '">
|
|
|
|
<img alt="" style="max-height:128px" src="' . $item['icon'] . '">
|
|
|
|
</a><br>' . $item['summary'];
|
2018-04-15 13:13:10 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|