2023-02-02 17:57:01 +00:00
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
"""
|
|
|
|
Created on 05.11.23
|
|
|
|
|
|
|
|
@author: DJ2LS
|
|
|
|
"""
|
|
|
|
# pylint: disable=invalid-name, line-too-long, c-extension-no-member
|
|
|
|
# pylint: disable=import-outside-toplevel, attribute-defined-outside-init
|
|
|
|
|
|
|
|
import requests
|
|
|
|
import ujson as json
|
|
|
|
import structlog
|
|
|
|
|
|
|
|
log = structlog.get_logger("stats")
|
|
|
|
|
|
|
|
|
|
|
|
class stats():
|
2023-11-17 22:33:30 +00:00
|
|
|
def __init__(self, config, event_queue, states):
|
2023-02-02 17:57:01 +00:00
|
|
|
self.explorer_url = "https://api.freedata.app/stats.php"
|
2023-11-17 22:33:30 +00:00
|
|
|
self.states = states
|
|
|
|
|
2023-02-03 12:30:42 +00:00
|
|
|
|
2023-02-03 15:48:37 +00:00
|
|
|
def push(self, frame_nack_counter, status, duration):
|
2023-02-17 20:17:38 +00:00
|
|
|
crcerror = status in ["crc_error", "wrong_crc"]
|
2023-02-03 15:48:37 +00:00
|
|
|
# get avg snr
|
|
|
|
try:
|
2023-11-17 22:33:30 +00:00
|
|
|
snr_raw = [item["snr"] for item in self.states.arq_speed_list]
|
2023-02-03 15:48:37 +00:00
|
|
|
avg_snr = round(sum(snr_raw) / len(snr_raw), 2 )
|
|
|
|
except Exception:
|
|
|
|
avg_snr = 0
|
2023-02-02 17:57:01 +00:00
|
|
|
|
|
|
|
headers = {"Content-Type": "application/json"}
|
|
|
|
station_data = {
|
2023-11-17 22:33:30 +00:00
|
|
|
'callsign': str(self.states.mycallsign, "utf-8"),
|
|
|
|
'dxcallsign': str(self.states.dxcallsign, "utf-8"),
|
|
|
|
'gridsquare': str(self.states.mygrid, "utf-8"),
|
|
|
|
'dxgridsquare': str(self.states.dxgrid, "utf-8"),
|
|
|
|
'frequency': 0 if self.states.radio_frequency is None else self.states.radio_frequency,
|
2023-02-02 17:57:01 +00:00
|
|
|
'avgstrength': 0,
|
2023-02-03 15:48:37 +00:00
|
|
|
'avgsnr': avg_snr,
|
2023-11-17 22:33:30 +00:00
|
|
|
'bytesperminute': self.states.arq_bytes_per_minute,
|
|
|
|
'filesize': self.states.arq_total_bytes,
|
|
|
|
'compressionfactor': self.states.arq_compression_factor,
|
2023-02-03 15:48:37 +00:00
|
|
|
'nacks': frame_nack_counter,
|
|
|
|
'crcerror': crcerror,
|
|
|
|
'duration': duration,
|
2023-11-17 22:33:30 +00:00
|
|
|
'percentage': self.states.arq_transmission_percent,
|
2023-02-06 16:42:58 +00:00
|
|
|
'status': status,
|
2023-11-17 22:33:30 +00:00
|
|
|
'version': self.states.modem_version
|
2023-02-02 17:57:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
station_data = json.dumps(station_data)
|
2023-02-03 12:30:42 +00:00
|
|
|
print(station_data)
|
2023-02-02 17:57:01 +00:00
|
|
|
try:
|
|
|
|
response = requests.post(self.explorer_url, json=station_data, headers=headers)
|
|
|
|
log.info("[STATS] push", code=response.status_code)
|
|
|
|
|
|
|
|
# print(response.status_code)
|
|
|
|
# print(response.content)
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
log.warning("[EXPLORER] connection lost")
|