1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 22:28:22 +01:00
php-rss-bridge/bridges/ParksOnTheAirBridge.php

40 lines
1.0 KiB
PHP

<?php
class ParksOnTheAirBridge extends BridgeAbstract {
const MAINTAINER = 's0lesurviv0r';
const NAME = 'Parks On The Air Spots';
const URI = 'https://api.pota.app/spot/activator';
const CACHE_TIMEOUT = 60; // 1m
const DESCRIPTION = 'Parks On The Air Activator Spots';
public function collectData() {
$header = array('Content-type:application/json');
$opts = array(CURLOPT_HTTPGET => 1);
$json = getContents($this->getURI(), $header, $opts);
$spots = json_decode($json, true);
foreach ($spots as $spot) {
$title = $spot['activator'] . ' @ ' . $spot['reference'] . ' ' .
$spot['frequency'] . ' kHz';
$content = <<<EOL
<a href="https://pota.us/#/parks/{$spot['reference']}">
{$spot['reference']}, {$spot['name']}</a><br />
Location: {$spot['locationDesc']}<br />
Frequency: {$spot['frequency']} kHz<br />
Spotter: {$spot['spotter']}<br />
Comments: {$spot['comments']}
EOL;
$this->items[] = array(
'uri' => 'https://pota.us/#/',
'title' => $title,
'content' => $content,
'timestamp' => $spot['spotTime']
);
}
}
}