2020-07-04 19:47:56 +00:00
|
|
|
from .receiverid import ReceiverIdController
|
2020-02-23 16:22:13 +00:00
|
|
|
from owrx.version import openwebrx_version
|
|
|
|
from owrx.sdr import SdrService
|
2020-03-21 21:40:39 +00:00
|
|
|
from owrx.config import Config
|
2020-02-23 16:22:13 +00:00
|
|
|
import json
|
2020-06-10 18:09:40 +00:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2020-02-23 16:22:13 +00:00
|
|
|
|
|
|
|
|
2020-07-04 19:47:56 +00:00
|
|
|
class StatusController(ReceiverIdController):
|
2020-02-23 16:22:13 +00:00
|
|
|
def getProfileStats(self, profile):
|
|
|
|
return {
|
|
|
|
"name": profile["name"],
|
|
|
|
"center_freq": profile["center_freq"],
|
|
|
|
"sample_rate": profile["samp_rate"],
|
|
|
|
}
|
|
|
|
|
|
|
|
def getReceiverStats(self, receiver):
|
|
|
|
stats = {
|
|
|
|
"name": receiver.getName(),
|
|
|
|
# TODO would be better to have types from the config here
|
|
|
|
"type": type(receiver).__name__,
|
|
|
|
"profiles": [self.getProfileStats(p) for p in receiver.getProfiles().values()]
|
|
|
|
}
|
|
|
|
return stats
|
|
|
|
|
2020-06-01 14:03:22 +00:00
|
|
|
def indexAction(self):
|
2020-03-21 21:40:39 +00:00
|
|
|
pm = Config.get()
|
2020-02-23 16:22:13 +00:00
|
|
|
status = {
|
|
|
|
"receiver": {
|
|
|
|
"name": pm["receiver_name"],
|
|
|
|
"admin": pm["receiver_admin"],
|
2020-03-29 16:08:26 +00:00
|
|
|
"gps": pm["receiver_gps"],
|
2020-02-23 16:22:13 +00:00
|
|
|
"asl": pm["receiver_asl"],
|
|
|
|
"location": pm["receiver_location"],
|
|
|
|
},
|
|
|
|
"max_clients": pm["max_clients"],
|
|
|
|
"version": openwebrx_version,
|
|
|
|
"sdrs": [self.getReceiverStats(r) for r in SdrService.getSources().values()]
|
|
|
|
}
|
2020-07-04 19:47:56 +00:00
|
|
|
self.send_response(json.dumps(status), content_type="application/json")
|