2021-02-13 16:08:56 +00:00
|
|
|
from owrx.controllers.template import WebpageController
|
|
|
|
from owrx.controllers.admin import AuthorizationMixin
|
2021-04-18 15:49:13 +00:00
|
|
|
from owrx.controllers.settings import SettingsBreadcrumb
|
2021-02-13 17:35:15 +00:00
|
|
|
from owrx.bookmarks import Bookmark, Bookmarks
|
2021-02-13 22:53:16 +00:00
|
|
|
from owrx.modes import Modes
|
2021-04-18 15:49:13 +00:00
|
|
|
from owrx.breadcrumb import Breadcrumb, BreadcrumbItem, BreadcrumbMixin
|
2021-02-13 23:41:03 +00:00
|
|
|
import json
|
2021-03-27 22:08:43 +00:00
|
|
|
import math
|
2021-02-13 23:41:03 +00:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2021-02-13 16:08:56 +00:00
|
|
|
|
|
|
|
|
2021-04-18 15:49:13 +00:00
|
|
|
class BookmarksController(AuthorizationMixin, BreadcrumbMixin, WebpageController):
|
|
|
|
def get_breadcrumb(self) -> Breadcrumb:
|
|
|
|
return SettingsBreadcrumb().append(BreadcrumbItem("Bookmark editor", "settings/bookmarks"))
|
|
|
|
|
2021-02-13 17:35:15 +00:00
|
|
|
def template_variables(self):
|
|
|
|
variables = super().template_variables()
|
|
|
|
variables["bookmarks"] = self.render_table()
|
|
|
|
return variables
|
|
|
|
|
|
|
|
def render_table(self):
|
2021-04-18 19:15:02 +00:00
|
|
|
bookmarks = Bookmarks.getSharedInstance().getBookmarks()
|
|
|
|
emptyText = """
|
|
|
|
<tr class="emptytext"><td colspan="4">
|
|
|
|
No bookmarks in storage. You can add new bookmarks using the buttons below.
|
|
|
|
</td></tr>
|
|
|
|
"""
|
2021-02-13 22:53:16 +00:00
|
|
|
|
2021-02-13 17:35:15 +00:00
|
|
|
return """
|
2021-03-28 14:51:34 +00:00
|
|
|
<table class="table" data-modes='{modes}'>
|
2021-02-13 17:35:15 +00:00
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th class="frequency">Frequency</th>
|
|
|
|
<th>Modulation</th>
|
2021-02-13 17:41:42 +00:00
|
|
|
<th>Actions</th>
|
2021-02-13 17:35:15 +00:00
|
|
|
</tr>
|
|
|
|
{bookmarks}
|
|
|
|
</table>
|
|
|
|
""".format(
|
2021-04-18 19:15:02 +00:00
|
|
|
bookmarks="".join(self.render_bookmark(b) for b in bookmarks) if bookmarks else emptyText,
|
2021-03-27 22:08:43 +00:00
|
|
|
modes=json.dumps({m.modulation: m.name for m in Modes.getAvailableModes()}),
|
2021-02-13 17:35:15 +00:00
|
|
|
)
|
|
|
|
|
2021-02-14 13:48:32 +00:00
|
|
|
def render_bookmark(self, bookmark: Bookmark):
|
2021-03-27 22:08:43 +00:00
|
|
|
def render_frequency(freq):
|
|
|
|
suffixes = {
|
|
|
|
0: "",
|
|
|
|
3: "k",
|
|
|
|
6: "M",
|
|
|
|
9: "G",
|
|
|
|
12: "T",
|
|
|
|
}
|
2021-03-30 16:19:23 +00:00
|
|
|
exp = 0
|
|
|
|
if freq > 0:
|
|
|
|
exp = int(math.log10(freq) / 3) * 3
|
2021-03-27 22:08:43 +00:00
|
|
|
num = freq
|
|
|
|
suffix = ""
|
|
|
|
if exp in suffixes:
|
|
|
|
num = freq / 10 ** exp
|
|
|
|
suffix = suffixes[exp]
|
|
|
|
return "{num:g} {suffix}Hz".format(num=num, suffix=suffix)
|
|
|
|
|
2021-02-13 22:53:16 +00:00
|
|
|
mode = Modes.findByModulation(bookmark.getModulation())
|
2021-02-13 17:35:15 +00:00
|
|
|
return """
|
2021-02-14 13:48:32 +00:00
|
|
|
<tr data-id="{id}">
|
2021-03-27 22:08:43 +00:00
|
|
|
<td data-editor="name" data-value="{name}">{name}</td>
|
|
|
|
<td data-editor="frequency" data-value="{frequency}" class="frequency">{rendered_frequency}</td>
|
|
|
|
<td data-editor="modulation" data-value="{modulation}">{modulation_name}</td>
|
2021-02-13 17:41:42 +00:00
|
|
|
<td>
|
2021-03-03 22:25:00 +00:00
|
|
|
<button type="button" class="btn btn-sm btn-danger bookmark-delete">delete</button>
|
2021-02-13 17:41:42 +00:00
|
|
|
</td>
|
2021-02-13 17:35:15 +00:00
|
|
|
</tr>
|
|
|
|
""".format(
|
2021-02-13 17:41:42 +00:00
|
|
|
id=id(bookmark),
|
2021-02-13 17:35:15 +00:00
|
|
|
name=bookmark.getName(),
|
2021-03-27 22:08:43 +00:00
|
|
|
# TODO render frequency in si units
|
2021-02-13 17:35:15 +00:00
|
|
|
frequency=bookmark.getFrequency(),
|
2021-03-27 22:08:43 +00:00
|
|
|
rendered_frequency=render_frequency(bookmark.getFrequency()),
|
2021-02-13 22:53:16 +00:00
|
|
|
modulation=bookmark.getModulation() if mode is None else mode.modulation,
|
|
|
|
modulation_name=bookmark.getModulation() if mode is None else mode.name,
|
2021-02-13 17:35:15 +00:00
|
|
|
)
|
|
|
|
|
2021-02-13 23:41:03 +00:00
|
|
|
def _findBookmark(self, bookmark_id):
|
|
|
|
bookmarks = Bookmarks.getSharedInstance()
|
|
|
|
try:
|
|
|
|
return next(b for b in bookmarks.getBookmarks() if id(b) == bookmark_id)
|
|
|
|
except StopIteration:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
bookmark_id = int(self.request.matches.group(1))
|
|
|
|
bookmark = self._findBookmark(bookmark_id)
|
|
|
|
if bookmark is None:
|
|
|
|
self.send_response("{}", content_type="application/json", code=404)
|
|
|
|
return
|
|
|
|
try:
|
2021-05-01 14:49:53 +00:00
|
|
|
data = json.loads(self.get_body().decode("utf-8"))
|
2021-02-13 23:41:03 +00:00
|
|
|
for key in ["name", "frequency", "modulation"]:
|
|
|
|
if key in data:
|
|
|
|
value = data[key]
|
|
|
|
if key == "frequency":
|
|
|
|
value = int(value)
|
|
|
|
setattr(bookmark, key, value)
|
|
|
|
Bookmarks.getSharedInstance().store()
|
2021-03-25 14:25:15 +00:00
|
|
|
# TODO this should not be called explicitly... bookmarks don't have any event capability right now, though
|
|
|
|
Bookmarks.getSharedInstance().notifySubscriptions(bookmark)
|
2021-02-13 23:41:03 +00:00
|
|
|
self.send_response("{}", content_type="application/json", code=200)
|
|
|
|
except json.JSONDecodeError:
|
|
|
|
self.send_response("{}", content_type="application/json", code=400)
|
|
|
|
|
2021-02-14 15:21:09 +00:00
|
|
|
def new(self):
|
|
|
|
bookmarks = Bookmarks.getSharedInstance()
|
2021-03-30 16:30:08 +00:00
|
|
|
|
|
|
|
def create(bookmark_data):
|
2021-02-14 15:21:09 +00:00
|
|
|
# sanitize
|
2021-03-25 14:25:15 +00:00
|
|
|
data = {
|
2021-03-30 16:30:08 +00:00
|
|
|
"name": bookmark_data["name"],
|
|
|
|
"frequency": int(bookmark_data["frequency"]),
|
|
|
|
"modulation": bookmark_data["modulation"],
|
2021-03-25 14:25:15 +00:00
|
|
|
}
|
2021-02-14 15:21:09 +00:00
|
|
|
bookmark = Bookmark(data)
|
|
|
|
bookmarks.addBookmark(bookmark)
|
2021-03-30 16:30:08 +00:00
|
|
|
return {"bookmark_id": id(bookmark)}
|
|
|
|
|
|
|
|
try:
|
2021-05-01 14:49:53 +00:00
|
|
|
data = json.loads(self.get_body().decode("utf-8"))
|
2021-03-30 16:30:08 +00:00
|
|
|
result = [create(b) for b in data]
|
2021-02-14 15:21:09 +00:00
|
|
|
bookmarks.store()
|
2021-03-30 16:30:08 +00:00
|
|
|
self.send_response(json.dumps(result), content_type="application/json", code=200)
|
2021-02-14 15:21:09 +00:00
|
|
|
except json.JSONDecodeError:
|
|
|
|
self.send_response("{}", content_type="application/json", code=400)
|
|
|
|
|
2021-02-14 15:51:16 +00:00
|
|
|
def delete(self):
|
|
|
|
bookmark_id = int(self.request.matches.group(1))
|
|
|
|
bookmark = self._findBookmark(bookmark_id)
|
|
|
|
if bookmark is None:
|
|
|
|
self.send_response("{}", content_type="application/json", code=404)
|
|
|
|
return
|
|
|
|
bookmarks = Bookmarks.getSharedInstance()
|
|
|
|
bookmarks.removeBookmark(bookmark)
|
|
|
|
bookmarks.store()
|
|
|
|
self.send_response("{}", content_type="application/json", code=200)
|
|
|
|
|
2021-02-13 16:08:56 +00:00
|
|
|
def indexAction(self):
|
|
|
|
self.serve_template("settings/bookmarks.html", **self.template_variables())
|