mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
37f1ab726b
* fix: Undefined offset: 4 * fix: Trying to access array offset on value of type bool * fix: Undefined variable: photo at bridges/TelegramBridge.php line 287 * fix: Trying to get property innertext of non-object at bridges/ZDNetBridge.php line 186 * fix: Undefined index: Category at bridges/UnraidCommunityApplicationsBridge.php line 42 * fix: Undefined index: fullUrl at bridges/EuronewsBridge.php line 61
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php
|
|
|
|
class UnraidCommunityApplicationsBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'Unraid Community Applications';
|
|
const URI = 'https://forums.unraid.net/topic/38582-plug-in-community-applications/';
|
|
const DESCRIPTION = 'Fetches the latest fifteen new apps/plugins from Unraid Community Applications';
|
|
const MAINTAINER = 'Paroleen';
|
|
const CACHE_TIMEOUT = 3600;
|
|
|
|
const APPSURI = 'https://raw.githubusercontent.com/Squidly271/AppFeed/master/applicationFeed.json';
|
|
|
|
private $apps = [];
|
|
|
|
private function fetchApps()
|
|
{
|
|
Debug::log('Fetching all applications/plugins');
|
|
$this->apps = getContents(self::APPSURI);
|
|
$this->apps = json_decode($this->apps, true)['applist'];
|
|
}
|
|
|
|
private function sortApps()
|
|
{
|
|
Debug::log('Sorting applications/plugins');
|
|
usort($this->apps, function ($app1, $app2) {
|
|
return $app1['FirstSeen'] < $app2['FirstSeen'] ? 1 : -1;
|
|
});
|
|
}
|
|
|
|
public function collectData()
|
|
{
|
|
$this->fetchApps();
|
|
$this->sortApps();
|
|
foreach ($this->apps as $app) {
|
|
if (array_key_exists('Language', $app)) {
|
|
continue;
|
|
}
|
|
$item = [];
|
|
$item['title'] = $app['Name'];
|
|
$item['timestamp'] = $app['FirstSeen'];
|
|
$item['author'] = explode('\'', $app['Repo'])[0];
|
|
$item['content'] = '';
|
|
|
|
if (isset($app['CategoryList'])) {
|
|
$item['categories'] = $app['CategoryList'];
|
|
}
|
|
|
|
if (array_key_exists('Icon', $app)) {
|
|
$item['content'] .= '<img style="width: 64px" src="'
|
|
. $app['Icon']
|
|
. '">';
|
|
}
|
|
|
|
if (array_key_exists('Overview', $app)) {
|
|
$item['content'] .= '<p>'
|
|
. $app['Overview']
|
|
. '</p>';
|
|
}
|
|
|
|
if (array_key_exists('Project', $app)) {
|
|
$item['uri'] = $app['Project'];
|
|
}
|
|
|
|
if (array_key_exists('Registry', $app)) {
|
|
$item['content'] .= '<br><a href="'
|
|
. $app['Registry']
|
|
. '">Docker Hub</a>';
|
|
}
|
|
|
|
if (array_key_exists('Support', $app)) {
|
|
$item['content'] .= '<br><a href="'
|
|
. $app['Support']
|
|
. '">Support</a>';
|
|
}
|
|
|
|
$this->items[] = $item;
|
|
|
|
if (count($this->items) >= 150) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|