mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
parent
a364263810
commit
46c3971c88
@ -1457,6 +1457,19 @@ Description
|
||||
Process reposts.
|
||||
|
||||
|
||||
extractor.bunkr.tlds
|
||||
--------------------
|
||||
Type
|
||||
``bool``
|
||||
Default
|
||||
``false``
|
||||
Description
|
||||
Controls which ``bunkr`` TLDs to accept.
|
||||
|
||||
* ``true``: Match URLs with *all* possible TLDs (e.g. ``bunkr.xyz`` or ``bunkrrr.duck``)
|
||||
* ``false``: Match only URLs with known TLDs
|
||||
|
||||
|
||||
extractor.cien.files
|
||||
--------------------
|
||||
Type
|
||||
|
@ -9,13 +9,21 @@
|
||||
"""Extractors for https://bunkr.si/"""
|
||||
|
||||
from .lolisafe import LolisafeAlbumExtractor
|
||||
from .. import text
|
||||
from .. import text, config
|
||||
|
||||
BASE_PATTERN = (
|
||||
r"(?:bunkr:(?:https?://)?([^/?#]+)|"
|
||||
r"(?:https?://)?(?:app\.)?(bunkr+"
|
||||
r"\.(?:s[kiu]|[cf]i|ru|la|is|to|a[cx]|black|cat|media|red|site|ws|org)))"
|
||||
)
|
||||
|
||||
if config.get(("extractor", "bunkr"), "tlds"):
|
||||
BASE_PATTERN = (
|
||||
r"(?:bunkr:(?:https?://)?([^/?#]+)|"
|
||||
r"(?:https?://)?(?:app\.)?(bunkr+\.\w+))"
|
||||
)
|
||||
else:
|
||||
BASE_PATTERN = (
|
||||
r"(?:bunkr:(?:https?://)?([^/?#]+)|"
|
||||
r"(?:https?://)?(?:app\.)?(bunkr+"
|
||||
r"\.(?:s[kiu]|[cf]i|ru|la|is|to|a[cx]"
|
||||
r"|black|cat|media|red|site|ws|org)))"
|
||||
)
|
||||
|
||||
LEGACY_DOMAINS = {
|
||||
"bunkr.ru",
|
||||
|
Loading…
Reference in New Issue
Block a user