[utils] accept only supported protocols in url_or_none

This commit is contained in:
Remita Amine
2020-12-30 09:22:30 +01:00
parent 9c1e164e0c
commit 9dd674e1d2
2 changed files with 6 additions and 1 deletions

View File

@ -3640,7 +3640,7 @@ def url_or_none(url):
if not url or not isinstance(url, compat_str):
return None
url = url.strip()
return url if re.match(r'^(?:[a-zA-Z][\da-zA-Z.+-]*:)?//', url) else None
return url if re.match(r'^(?:(?:https?|rt(?:m(?:pt?[es]?|fp)|sp[su]?)|mms|ftps?):)?//', url) else None
def parse_duration(s):