You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
736 lines
22 KiB
Python
736 lines
22 KiB
Python
####
|
|
# Imports
|
|
####
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import datetime, timedelta
|
|
from functools import partial
|
|
import io
|
|
import itertools
|
|
import logging
|
|
import os
|
|
from urllib.parse import urlencode, quote_plus
|
|
from typing import (
|
|
Any,
|
|
Callable,
|
|
Dict,
|
|
Iterable,
|
|
List,
|
|
Optional,
|
|
Set,
|
|
Union,
|
|
)
|
|
|
|
from flask import (
|
|
Flask,
|
|
jsonify,
|
|
make_response,
|
|
redirect,
|
|
request,
|
|
send_file,
|
|
)
|
|
from flask.templating import render_template
|
|
from markupsafe import Markup
|
|
from pony.flask import Pony
|
|
from pony import orm
|
|
|
|
from entertainment_decider import common
|
|
from entertainment_decider.models import (
|
|
PreferenceScore,
|
|
Tag,
|
|
db,
|
|
MediaCollection,
|
|
MediaCollectionLink,
|
|
MediaElement,
|
|
generate_preference_list,
|
|
)
|
|
from entertainment_decider.extractors.collection import (
|
|
collection_extract_uri,
|
|
collection_update,
|
|
)
|
|
from entertainment_decider.extractors.media import (
|
|
media_extract_uri,
|
|
media_update,
|
|
)
|
|
|
|
|
|
####
|
|
# Logging Config
|
|
####
|
|
|
|
|
|
logging.basicConfig(format="%(asctime)s === %(message)s", level=logging.DEBUG)
|
|
|
|
|
|
####
|
|
# Flask Config
|
|
####
|
|
|
|
|
|
DEBUG_DATABASE = False
|
|
|
|
flask_app = Flask(
|
|
__name__,
|
|
)
|
|
flask_app.config.update(
|
|
dict(
|
|
CELERY=dict(),
|
|
DEBUG=True,
|
|
PONY=dict(
|
|
provider="sqlite",
|
|
filename="./db.sqlite",
|
|
create_db=True,
|
|
)
|
|
if DEBUG_DATABASE
|
|
else dict()
|
|
)
|
|
)
|
|
|
|
|
|
def environ_bool(value: Union[str, bool]) -> bool:
|
|
if type(value) == bool:
|
|
return value
|
|
return value.strip()[0].lower() in ["1", "t", "y"]
|
|
|
|
|
|
def environ_int(value: Union[str, int]) -> int:
|
|
if type(value) == int:
|
|
return value
|
|
return int(value)
|
|
|
|
|
|
ConfigKeySetter: Callable[[str, Any], Any]
|
|
ConfigSingleTranslator = Callable[[Any], Any]
|
|
ConfigTranslatorIterable = Iterable[ConfigSingleTranslator]
|
|
ConfigTranslatorCreator = Callable[[str], ConfigTranslatorIterable]
|
|
|
|
|
|
def config_suffixer(
|
|
setter: ConfigKeySetter, prefix: str, lower: bool = True
|
|
) -> ConfigTranslatorCreator:
|
|
def creator(key: str):
|
|
if not key.startswith(prefix):
|
|
raise Exception(f"Environment key {key!r} is missing suffix {prefix!r}")
|
|
new_key = key[len(prefix) :]
|
|
new_key = new_key.lower() if lower else new_key
|
|
return (partial(setter, new_key),)
|
|
|
|
return creator
|
|
|
|
|
|
def celery_config_setter(key: str, val: Any):
|
|
flask_app.config["CELERY"][key] = val
|
|
|
|
|
|
celery_config_same = config_suffixer(celery_config_setter, "CELERY_")
|
|
|
|
|
|
def flask_config_setter(key: str, val: Any):
|
|
flask_app.config[key] = val
|
|
|
|
|
|
flask_config_same = config_suffixer(flask_config_setter, "FLASK_", lower=False)
|
|
|
|
|
|
def pony_config_setter(key: str, val: Any):
|
|
flask_app.config["PONY"][key] = val
|
|
|
|
|
|
pony_config_same = config_suffixer(pony_config_setter, "PONY_")
|
|
|
|
CONFIG_TRANSLATE_TABLE: Dict[
|
|
str, Union[ConfigTranslatorIterable, ConfigTranslatorCreator]
|
|
] = {
|
|
"CELERY_BROKER_URL": celery_config_same,
|
|
"CELERY_RESULT_BACKEND": celery_config_same,
|
|
"FLASK_DEBUG": (
|
|
environ_bool,
|
|
partial(flask_config_setter, "DEBUG"),
|
|
),
|
|
"PONY_PROVIDER": pony_config_same,
|
|
"PONY_FILENAME": pony_config_same,
|
|
"PONY_CREATE_DB": (
|
|
environ_bool,
|
|
partial(pony_config_setter, "create_db"),
|
|
),
|
|
"PONY_HOST": pony_config_same,
|
|
"PONY_PORT": (
|
|
environ_int,
|
|
partial(pony_config_setter, "port"),
|
|
),
|
|
"PONY_DATABASE": pony_config_same,
|
|
"PONY_DB": pony_config_same,
|
|
"PONY_USER": pony_config_same,
|
|
"PONY_PASSWORD": pony_config_same,
|
|
"PONY_PASSWD": pony_config_same,
|
|
"PONY_DSN": pony_config_same,
|
|
}
|
|
|
|
for key, val in os.environ.items():
|
|
trans = CONFIG_TRANSLATE_TABLE.get(key)
|
|
if trans is not None:
|
|
trans = trans(key) if callable(trans) else trans
|
|
res: Any = val
|
|
for caller in trans:
|
|
new_res = caller(res)
|
|
if new_res is not None:
|
|
res = new_res
|
|
|
|
|
|
####
|
|
# Pony init
|
|
####
|
|
|
|
|
|
db.bind(**flask_app.config["PONY"])
|
|
db.generate_mapping(create_tables=True)
|
|
|
|
Pony(flask_app)
|
|
|
|
|
|
####
|
|
# Return filters
|
|
####
|
|
|
|
|
|
@flask_app.template_filter()
|
|
def encode_options(opts: dict[str, Any]):
|
|
return urlencode({k: str(v) for k, v in opts.items()}, quote_via=quote_plus)
|
|
|
|
@flask_app.template_filter()
|
|
def as_link(uri: str):
|
|
uri = Markup.escape(uri)
|
|
return Markup(f'<a href="{uri}">{uri}</a>')
|
|
|
|
|
|
@flask_app.template_filter()
|
|
def tenary(b: bool, true_str: str, false_str: str) -> str:
|
|
return true_str if b else false_str
|
|
|
|
|
|
TIMEDELTA_FORMAT = (
|
|
timedelta(hours=1),
|
|
timedelta(minutes=1),
|
|
)
|
|
|
|
|
|
@flask_app.template_filter()
|
|
def timedelta(seconds: int) -> str:
|
|
delta = timedelta(seconds=seconds)
|
|
ret = ""
|
|
for unit in TIMEDELTA_FORMAT:
|
|
if ret or unit <= delta:
|
|
unit_size = delta // unit
|
|
delta -= unit * unit_size
|
|
if ret:
|
|
ret += f"{unit_size:02}:"
|
|
else:
|
|
ret += f"{unit_size}:"
|
|
ret += f"{delta.seconds:02}"
|
|
return ret
|
|
|
|
|
|
####
|
|
# Routes
|
|
####
|
|
|
|
|
|
@flask_app.route("/")
|
|
def dashboard():
|
|
# config
|
|
began_limit = 8
|
|
pinned_limit = 16
|
|
media_limit = 24
|
|
already_listed = set[MediaElement]()
|
|
# for began videos
|
|
began_videos: Iterable[MediaElement] = orm.select(
|
|
m for m in MediaElement if m.started
|
|
).order_by(MediaElement.release_date, MediaElement.title, MediaElement.id)
|
|
began_videos = list(common.limit_iter(began_videos, began_limit))
|
|
already_listed.update(began_videos)
|
|
# for links from pinned collections
|
|
pinned_collections: Iterable[MediaCollection] = orm.select(
|
|
m for m in MediaCollection if m.pinned and not m.ignored
|
|
).order_by(MediaCollection.release_date, MediaCollection.title, MediaCollection.id)
|
|
links_from_pinned_collections = set[MediaCollectionLink]()
|
|
for coll in pinned_collections:
|
|
next_link = coll.next_episode
|
|
if (
|
|
next_link is not None
|
|
and next_link not in links_from_pinned_collections
|
|
and next_link.element not in already_listed
|
|
and next_link.element.can_considered
|
|
):
|
|
links_from_pinned_collections.add(next_link)
|
|
links_from_pinned_collections = sorted(
|
|
links_from_pinned_collections, key=lambda l: l.element.release_date
|
|
)[:pinned_limit]
|
|
already_listed.update(link.element for link in links_from_pinned_collections)
|
|
# for media
|
|
media_list: Iterable[MediaElement] = orm.select(m for m in MediaElement if not (m.ignored or m.watched)).order_by(orm.desc(MediaElement.release_date), MediaElement.id)
|
|
def get_considerable():
|
|
for element in media_list:
|
|
if element not in episodes_from_pinned_collections and element.can_considered:
|
|
yield element
|
|
# render
|
|
return render_template(
|
|
"dashboard.htm",
|
|
began_videos=began_videos,
|
|
links_from_pinned_collections = links_from_pinned_collections,
|
|
media_list = common.limit_iter(get_considerable(), media_limit),
|
|
)
|
|
|
|
|
|
def _list_collections(filter: Callable[[MediaCollection], bool]):
|
|
collection_list: Iterable[MediaCollection] = orm.select(c for c in MediaCollection).order_by(orm.desc(MediaCollection.release_date), MediaCollection.title, MediaCollection.id)
|
|
return render_template(
|
|
"collection_list.htm",
|
|
collection_list=[collection for collection in collection_list if filter(collection)],
|
|
)
|
|
|
|
@flask_app.route("/collection")
|
|
def list_collection():
|
|
return _list_collections(lambda _: True)
|
|
|
|
@flask_app.route("/collection/extract")
|
|
def extract_collection():
|
|
return render_template("collection_extract.htm")
|
|
|
|
@flask_app.route("/collection/to_watch")
|
|
def list_collections_with_unwatched():
|
|
return _list_collections(lambda collection: not collection.ignored and not collection.completed)
|
|
|
|
@flask_app.route("/collection/pinned")
|
|
def list_pinned_collection():
|
|
collection_list: Iterable[MediaCollection] = orm.select(
|
|
c for c in MediaCollection if c.pinned
|
|
).order_by(
|
|
orm.desc(MediaCollection.release_date),
|
|
MediaCollection.title,
|
|
MediaCollection.id,
|
|
)
|
|
return render_template("collection_list.htm", collection_list=collection_list)
|
|
|
|
|
|
@flask_app.route("/collection/<int:collection_id>")
|
|
def show_collection(collection_id):
|
|
collection: MediaCollection = MediaCollection.get(id=collection_id)
|
|
if collection is None:
|
|
return make_response(f"Not found", 404)
|
|
return render_template(
|
|
"collection_element.htm",
|
|
collection=collection,
|
|
media_links=MediaCollectionLink.sorted(MediaCollectionLink.select(lambda l: l.collection == collection)) if orm.count(collection.media_links) <= 100 else None,
|
|
)
|
|
|
|
|
|
@flask_app.route("/collection/<int:collection_id>/episodes")
|
|
def show_collection_episodes(collection_id):
|
|
collection: MediaCollection = MediaCollection.get(id=collection_id)
|
|
if collection is None:
|
|
return make_response(f"Not found", 404)
|
|
return render_template(
|
|
"collection_episodes.htm",
|
|
collection=collection,
|
|
media_links=MediaCollectionLink.sorted(MediaCollectionLink.select(lambda l: l.collection == collection)),
|
|
)
|
|
|
|
|
|
@flask_app.route("/media")
|
|
def list_media():
|
|
media_list: Iterable[MediaElement] = orm.select(m for m in MediaElement if not (m.ignored or m.watched)).order_by(orm.desc(MediaElement.release_date), MediaElement.id)
|
|
def get_considerable():
|
|
for element in media_list:
|
|
if element.can_considered:
|
|
yield element
|
|
return render_template(
|
|
"media_list.htm",
|
|
media_list=list(itertools.islice(get_considerable(), 100))
|
|
)
|
|
|
|
|
|
@flask_app.route("/media/short")
|
|
@flask_app.route("/media/short/<int:seconds>")
|
|
def list_short_media(seconds: int = 10 * 60):
|
|
media_list: Iterable[MediaElement] = orm.select(m for m in MediaElement).order_by(orm.desc(MediaElement.release_date), MediaElement.id)
|
|
def get_considerable():
|
|
for element in media_list:
|
|
if element.left_length <= seconds and element.can_considered:
|
|
yield element
|
|
return render_template(
|
|
"media_list.htm",
|
|
media_list=list(itertools.islice(get_considerable(), 100))
|
|
)
|
|
|
|
@flask_app.route("/media/unsorted")
|
|
def list_unsorted_media():
|
|
media_list: Iterable[MediaElement] = orm.select(
|
|
m for m in MediaElement if len(m.collection_links) == 0
|
|
).order_by(orm.desc(MediaElement.release_date), MediaElement.id)
|
|
return render_template(
|
|
"media_list.htm",
|
|
media_list=media_list,
|
|
)
|
|
|
|
|
|
@flask_app.route("/media/extract")
|
|
def extract_media():
|
|
return render_template("media_extract.htm")
|
|
|
|
|
|
@flask_app.route("/media/<int:media_id>")
|
|
def show_media(media_id):
|
|
element: MediaElement = MediaElement.get(id=media_id)
|
|
if element is None:
|
|
return make_response(f"Not found", 404)
|
|
return render_template("media_element.htm", element=element)
|
|
|
|
|
|
@flask_app.route("/media/<int:media_id>/thumbnail")
|
|
def show_media_thumb(media_id: int):
|
|
element: MediaElement = MediaElement.get(id=media_id)
|
|
if element is None:
|
|
# TODO add default thumbnail if not found
|
|
return make_response(f"Not found", 404)
|
|
if element.thumbnail is None:
|
|
return redirect("/static/thumbnail_missing.webp")
|
|
thumb = element.thumbnail
|
|
# TODO do not load data from database until send_file requires that
|
|
return send_file(
|
|
io.BytesIO(thumb.receive_data()),
|
|
mimetype=thumb.mime_type,
|
|
etag=True,
|
|
as_attachment=False,
|
|
last_modified=thumb.last_downloaded,
|
|
cache_timeout=24 * 60 * 60,
|
|
)
|
|
|
|
|
|
@flask_app.route("/api/refresh/collections", methods=["POST"])
|
|
def refresh_collections():
|
|
collection_ids = set[int](
|
|
orm.select(c.id for c in MediaCollection if c.keep_updated)
|
|
)
|
|
errors = []
|
|
for coll_id in collection_ids:
|
|
try:
|
|
coll = MediaCollection[coll_id]
|
|
collection_update(coll)
|
|
orm.commit()
|
|
# TODO make Exception more specific
|
|
except Exception as e:
|
|
orm.rollback()
|
|
coll = MediaCollection[coll_id]
|
|
errors.append(
|
|
{
|
|
"collection": {
|
|
"id": coll.id,
|
|
"title": coll.title,
|
|
"uri": coll.uri,
|
|
},
|
|
"error": {
|
|
"args": repr(e.args),
|
|
},
|
|
},
|
|
)
|
|
if errors:
|
|
return (
|
|
{
|
|
"status": False,
|
|
"error": {
|
|
"msg": "Failed to update all collections successfully",
|
|
"data": errors,
|
|
},
|
|
},
|
|
501,
|
|
)
|
|
return redirect_back_or_okay()
|
|
|
|
|
|
@flask_app.route("/api/refresh/collection/<int:collection_id>", methods=["POST"])
|
|
def force_refresh_collection(collection_id: int):
|
|
coll: MediaCollection = MediaCollection.get(id=collection_id)
|
|
if coll is None:
|
|
return "404 Not Found", 404
|
|
collection_update(coll, check_cache_expired=False)
|
|
update_element_lookup_cache([coll.id])
|
|
return redirect_back_or_okay()
|
|
|
|
|
|
@flask_app.route("/api/refresh/media/<int:media_id>", methods=["POST"])
|
|
def force_refresh_media(media_id: int):
|
|
elem: MediaElement = MediaElement.get(id=media_id)
|
|
if elem is None:
|
|
return "404 Not Found", 404
|
|
media_update(elem, check_cache_expired=False)
|
|
return redirect_back_or_okay()
|
|
|
|
|
|
@flask_app.route("/stats")
|
|
def show_stats():
|
|
elements: List[MediaElement] = MediaElement.select()
|
|
collections: List[MediaCollection] = MediaCollection.select()
|
|
return render_template(
|
|
"stats.htm",
|
|
stats={
|
|
"last_updated": orm.max(c.last_updated for c in collections),
|
|
"media": {
|
|
"known": orm.count(elements),
|
|
"known_seconds": orm.sum(m.length for m in elements),
|
|
"watched": orm.count(m for m in elements if m.watched),
|
|
"watched_seconds": orm.sum(
|
|
(m.length if m.watched else m.progress)
|
|
for m in elements
|
|
if m.watched
|
|
),
|
|
"ignored": orm.count(m for m in elements if m.ignored),
|
|
"ignored_seconds": orm.sum(
|
|
m.length - m.progress for m in elements if m.ignored
|
|
),
|
|
"to_watch": orm.count(
|
|
m for m in elements if not m.ignored and not m.watched
|
|
),
|
|
"to_watch_seconds": orm.sum(
|
|
m.length - m.progress
|
|
for m in elements
|
|
if not m.ignored and not m.watched
|
|
),
|
|
},
|
|
},
|
|
)
|
|
|
|
|
|
@flask_app.route("/tag")
|
|
def show_tag():
|
|
tag_list: List[Tag] = Tag.select()
|
|
return render_template(
|
|
"tag_list.htm",
|
|
tag_list=tag_list,
|
|
)
|
|
|
|
|
|
@flask_app.route("/debug/test")
|
|
def test():
|
|
first: MediaElement = MediaElement.select().first()
|
|
return {
|
|
"data": first.to_dict(),
|
|
}, 200
|
|
|
|
|
|
# TODO add table for failed attempts so these may be resolved afterwards with increasing delays (add to MediaElement with flag "retrieved" and "last_updated" as date to resolve last try)
|
|
|
|
|
|
def redirect_back_or_okay():
|
|
if "redirect" not in request.form:
|
|
return {
|
|
"status": True,
|
|
}, 200
|
|
uri = request.form.get("redirect", type=str)
|
|
if not uri.startswith("/"):
|
|
return "400 Bad Request : Invalid Redirect Specified", 400
|
|
return redirect(uri)
|
|
|
|
|
|
@flask_app.route("/api/collection/list")
|
|
def api_collection_list():
|
|
collection_list: Iterable[MediaCollection] = MediaCollection.select()
|
|
return {
|
|
"status": True,
|
|
"data": [
|
|
{
|
|
"id": collection.id,
|
|
"title": collection.title,
|
|
"release_date": collection.release_date,
|
|
"length": collection.length,
|
|
"progress": collection.progress,
|
|
}
|
|
for collection in collection_list
|
|
],
|
|
}, 200
|
|
|
|
|
|
@flask_app.route("/api/collection/extract", methods=["POST"])
|
|
def api_collection_extract():
|
|
data = request.form.to_dict()
|
|
if "uri" not in data:
|
|
return {
|
|
"status": False,
|
|
"error": f"Missing uri value to extract",
|
|
}
|
|
c = collection_extract_uri(data["uri"])
|
|
orm.flush()
|
|
if c and environ_bool(data.get("redirect_to_object", False)):
|
|
return redirect(c.info_link)
|
|
return redirect_back_or_okay()
|
|
|
|
@flask_app.route("/api/collection/<int:collection_id>", methods=["GET", "POST"])
|
|
def api_collection_element(collection_id: int):
|
|
collection: MediaCollection = MediaCollection.get(id=collection_id)
|
|
if collection is None:
|
|
return {
|
|
"status": False,
|
|
"error": f"Object not found",
|
|
}, 404
|
|
if request.method == "GET":
|
|
return {
|
|
"status": True,
|
|
"data": {
|
|
"id": collection.id,
|
|
"title": collection.title,
|
|
"notes": collection.notes,
|
|
"release_date": collection.release_date,
|
|
"ignored": collection.ignored,
|
|
"media_links": [
|
|
{
|
|
"media": {
|
|
"id": link.element.id,
|
|
"title": link.element.title,
|
|
},
|
|
"season": link.season,
|
|
"episode": link.episode,
|
|
}
|
|
for link in collection.media_links
|
|
],
|
|
},
|
|
}, 200
|
|
elif request.method == "POST":
|
|
data = request.form.to_dict()
|
|
if "redirect" in data:
|
|
del data["redirect"]
|
|
KEY_CONVERTER = {
|
|
"title": str,
|
|
"notes": str,
|
|
"pinned": environ_bool,
|
|
"ignored": environ_bool,
|
|
"keep_updated": environ_bool,
|
|
"watch_in_order": environ_bool,
|
|
}
|
|
for key in data:
|
|
if key not in KEY_CONVERTER:
|
|
return {
|
|
"status": False,
|
|
"error": f"Cannot set key {key!r} on MediaCollection",
|
|
}, 400
|
|
collection.set(**{key: KEY_CONVERTER[key](val) for key, val in data.items()})
|
|
if "watch_in_order" in data: # TODO move both to property inside class
|
|
collection.watch_in_order_auto = False
|
|
return redirect_back_or_okay()
|
|
else:
|
|
return {
|
|
"status": False,
|
|
"error": "405 Method Not Allowed",
|
|
}, 405
|
|
|
|
|
|
@flask_app.route("/api/collection/<int:collection_id>", methods=["DELETE"])
|
|
@flask_app.route("/api/collection/<int:collection_id>/delete", methods=["POST"])
|
|
def api_collection_delete(collection_id: int):
|
|
collection: MediaCollection = MediaCollection.get(id=collection_id)
|
|
if collection is None:
|
|
return {
|
|
"status": False,
|
|
"error": f"Object not found",
|
|
}, 404
|
|
collection.delete()
|
|
update_element_lookup_cache([collection_id])
|
|
return redirect_back_or_okay()
|
|
|
|
|
|
@flask_app.route("/api/element_lookup_cache/update", methods=["POST"])
|
|
def api_element_lookup_cache_rebuild():
|
|
update_element_lookup_cache()
|
|
return redirect_back_or_okay()
|
|
|
|
|
|
@flask_app.route("/api/media/list")
|
|
def api_media_list():
|
|
media_list: Iterable[MediaElement] = MediaElement.select()
|
|
return {
|
|
"status": True,
|
|
"data": [
|
|
{
|
|
"id": media.id,
|
|
"title": media.title,
|
|
"release_date": media.release_date,
|
|
"length": media.length,
|
|
"progress": media.progress,
|
|
}
|
|
for media in media_list
|
|
],
|
|
}, 200
|
|
|
|
|
|
@flask_app.route("/api/media/extract", methods=["POST"])
|
|
def api_media_extract():
|
|
data = request.form.to_dict()
|
|
if "uri" not in data:
|
|
return {
|
|
"status": False,
|
|
"error": f"Missing uri value to extract",
|
|
}
|
|
m = media_extract_uri(data["uri"])
|
|
orm.flush()
|
|
if m and environ_bool(data.get("redirect_to_object", False)):
|
|
return redirect(m.info_link)
|
|
return redirect_back_or_okay()
|
|
|
|
@flask_app.route("/api/media/<int:media_id>", methods=["GET", "POST"])
|
|
def api_media_element(media_id: int):
|
|
element: MediaElement = MediaElement.get(id=media_id)
|
|
if element is None:
|
|
return {
|
|
"status": False,
|
|
"error": f"Object not found",
|
|
}, 404
|
|
if request.method == "GET":
|
|
return {
|
|
"status": True,
|
|
"data": {
|
|
"id": element.id,
|
|
"title": element.title,
|
|
"notes": element.notes,
|
|
"release_date": element.release_date,
|
|
"length": element.length,
|
|
"progress": element.progress,
|
|
"ignored": element.ignored,
|
|
"watched": element.watched,
|
|
"can_considered": element.can_considered,
|
|
"collection_links": [
|
|
{
|
|
"collection": {
|
|
"id": link.collection.id,
|
|
"title": link.collection.title,
|
|
},
|
|
"season": link.season,
|
|
"episode": link.episode,
|
|
}
|
|
for link in element.collection_links
|
|
],
|
|
},
|
|
}, 200
|
|
elif request.method == "POST":
|
|
data = request.form.to_dict()
|
|
if "redirect" in data:
|
|
del data["redirect"]
|
|
KEY_CONVERTER = {
|
|
"title": str,
|
|
"notes": str,
|
|
"progress": int,
|
|
"ignored": environ_bool,
|
|
"watched": environ_bool,
|
|
}
|
|
for key in data:
|
|
if key not in KEY_CONVERTER:
|
|
return {
|
|
"status": False,
|
|
"error": f"Cannot set key {key!r} on MediaElement",
|
|
}, 400
|
|
element.set(**{key: KEY_CONVERTER[key](val) for key, val in data.items()})
|
|
return redirect_back_or_okay()
|
|
else:
|
|
return {
|
|
"status": False,
|
|
"error": "405 Method Not Allowed",
|
|
}, 405
|