mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 09:56:57 -05:00
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
from flask import request, redirect
|
|
import urllib.parse
|
|
|
|
|
|
class Settings():
|
|
endpoints = ["/api/settings"]
|
|
endpoint_name = "api_settings"
|
|
endpoint_methods = ["GET", "POST"]
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
def __call__(self, *args):
|
|
return self.get(*args)
|
|
|
|
def get(self, *args):
|
|
|
|
method = request.args.get('method', default="get", type=str)
|
|
redirect_url = request.args.get('redirect', default=None, type=str)
|
|
|
|
if method == "update":
|
|
config_section = request.form.get('config_section', None)
|
|
config_name = request.form.get('config_name', None)
|
|
config_value = request.form.get('config_value', None)
|
|
|
|
if not config_section or not config_name or not config_value:
|
|
if redirect_url:
|
|
return redirect(redirect_url + "?retmessage=" + urllib.parse.quote("%s Failed" % method))
|
|
else:
|
|
return "%s Falied" % method
|
|
|
|
if config_section == "origin":
|
|
config_section = self.fhdhr.config.dict["main"]["dictpopname"]
|
|
|
|
self.fhdhr.config.write(config_section, config_name, config_value)
|
|
|
|
if redirect_url:
|
|
return redirect(redirect_url + "?retmessage=" + urllib.parse.quote("%s Success" % method))
|
|
else:
|
|
return "%s Success" % method
|