This commit is contained in:
Hellow2 2023-04-20 15:34:03 +02:00
parent 322010cb8a
commit 804bf34a16
2 changed files with 41 additions and 0 deletions

View File

@ -1,4 +1,9 @@
from urllib.parse import urlparse
import re
from .base_classes import Section, FloatAttribute, IntAttribute, BoolAttribute, ListAttribute
from ..regex import URL_PATTERN
from ..exception.config import SettingValueError
class ProxAttribute(ListAttribute):
@ -9,6 +14,21 @@ class ProxAttribute(ListAttribute):
'ftp': value
}
class UrlListAttribute(ListAttribute):
def validate(self, value: str):
v = value.strip()
url = re.match(URL_PATTERN, v)
if v != url:
raise SettingValueError(
setting_name=self.name,
setting_value=v,
rule="has to be a valid url"
)
def single_object_from_element(self, value: str):
return urlparse(value)
class ConnectionSection(Section):
def __init__(self):
@ -42,6 +62,25 @@ class ConnectionSection(Section):
"all the error messages are shown.",
value="0.3"
)
# INVIDIOUS INSTANCES LIST
self.INVIDIOUS_INSTANCE_LIST = UrlListAttribute(
name="invidious_instances",
description="This is a List, where you can define the invidious instances,\n"
"the youtube downloader should use.\n"
"Here is a list of active ones: https://docs.invidious.io/instances/\n"
"Instances that use cloudflare or have source code changes could cause issues.\n"
"Hidden instances (.onion) will only work, when setting 'tor=true'.",
value=[
"https://yt.artemislena.eu/",
"https://watch.thekitty.zone/",
"https://y.com.sb/"
]
)
# INVIDIOUS PROXY
self.INVIDIOUS_PROXY_VIDEOS = BoolAttribute(
name="invidious_proxy_video",
)
self.attribute_list = [
self.USE_TOR,

View File

@ -0,0 +1,2 @@
URL_PATTERN = 'https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+'