mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2025-12-15 16:43:38 +00:00
76 lines
2.9 KiB
Python
76 lines
2.9 KiB
Python
import logging
|
|
import re
|
|
from datetime import datetime
|
|
|
|
import pytz
|
|
from rss_parser import RSSParser
|
|
|
|
from data.sig_ref import SIGRef
|
|
from data.spot import Spot
|
|
from spotproviders.http_spot_provider import HTTPSpotProvider
|
|
|
|
|
|
# Spot provider for Wainwrights on the Air
|
|
class WOTA(HTTPSpotProvider):
|
|
POLL_INTERVAL_SEC = 120
|
|
SPOTS_URL = "http://127.0.0.1:8000/spots_rss.php"
|
|
LIST_URL = "https://www.wota.org.uk/mapping/data/summits.json"
|
|
RSS_DATE_TIME_FORMAT = "%a, %d %b %Y %H:%M:%S %z"
|
|
|
|
def __init__(self, provider_config):
|
|
super().__init__(provider_config, self.SPOTS_URL, self.POLL_INTERVAL_SEC)
|
|
|
|
def http_response_to_spots(self, http_response):
|
|
new_spots = []
|
|
rss = RSSParser.parse(http_response.content.decode())
|
|
# Iterate through source data
|
|
for source_spot in rss.channel.items:
|
|
|
|
try:
|
|
# Reject GUID missing or zero
|
|
if not source_spot.guid or not source_spot.guid.content or source_spot.guid.content == "http://www.wota.org.uk/spots/0":
|
|
continue
|
|
|
|
# Pick apart the title
|
|
title_split = source_spot.title.split(" on ")
|
|
dx_call = title_split[0]
|
|
ref = None
|
|
ref_name = None
|
|
if len(title_split) > 1:
|
|
ref_split = title_split[1].split(" - ")
|
|
ref = ref_split[0]
|
|
if len(ref_split) > 1:
|
|
ref_name = ref_split[1]
|
|
|
|
# Pick apart the description
|
|
desc_split = source_spot.description.split(". ")
|
|
freq_mode = desc_split[0].replace("Frequencies/modes:", "").strip()
|
|
freq_mode_split = re.split(r'[\-\s]+', freq_mode)
|
|
freq_hz = float(freq_mode_split[0]) * 1000000
|
|
mode = freq_mode_split[1].upper()
|
|
|
|
comment = None
|
|
if len(desc_split) > 1:
|
|
comment = desc_split[1].strip()
|
|
spotter = None
|
|
if len(desc_split) > 2:
|
|
spotter = desc_split[2].replace("Spotted by ", "").replace(".", "").upper().strip()
|
|
|
|
time = datetime.strptime(source_spot.pub_date.content, self.RSS_DATE_TIME_FORMAT).astimezone(pytz.UTC)
|
|
|
|
# Convert to our spot format
|
|
spot = Spot(source=self.name,
|
|
source_id=source_spot.guid.content,
|
|
dx_call=dx_call,
|
|
de_call=spotter,
|
|
freq=freq_hz,
|
|
mode=mode,
|
|
comment=comment,
|
|
sig_refs=[SIGRef(id=ref, sig="WOTA", name=ref_name)] if ref else [],
|
|
time=time.timestamp())
|
|
|
|
new_spots.append(spot)
|
|
except Exception as e:
|
|
logging.error("Exception parsing WOTA spot", e)
|
|
return new_spots
|