mirror of https://gitlab.com/bashrc2/epicyon
Function for checking url prefixes
parent
5de4310b8c
commit
457004794c
12
utils.py
12
utils.py
|
@ -2536,3 +2536,15 @@ def getPortFromDomain(domain: str) -> int:
|
||||||
if portStr.isdigit():
|
if portStr.isdigit():
|
||||||
return int(portStr)
|
return int(portStr)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def validUrlPrefix(url: str) -> bool:
|
||||||
|
"""Does the given url have a valid prefix?
|
||||||
|
"""
|
||||||
|
if '/' not in url:
|
||||||
|
return False
|
||||||
|
prefixes = ('https:', 'http:', 'hyper:', 'i2p:', 'gnunet:')
|
||||||
|
for pre in prefixes:
|
||||||
|
if url.startswith(pre):
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
|
@ -54,8 +54,7 @@ def headerButtonsTimeline(defaultTimeline: str,
|
||||||
# first button
|
# first button
|
||||||
if defaultTimeline == 'tlmedia':
|
if defaultTimeline == 'tlmedia':
|
||||||
tlStr += \
|
tlStr += \
|
||||||
'<a href="' + usersPath + \
|
'<a href="' + usersPath + '/tlmedia" tabindex="-1" ' + \
|
||||||
'/tlmedia" tabindex="-1" ' + \
|
|
||||||
'accesskey="' + accessKeys['menuMedia'] + '"' + \
|
'accesskey="' + accessKeys['menuMedia'] + '"' + \
|
||||||
'><button class="' + \
|
'><button class="' + \
|
||||||
mediaButton + '"><span>' + translate['Media'] + \
|
mediaButton + '"><span>' + translate['Media'] + \
|
||||||
|
@ -105,8 +104,7 @@ def headerButtonsTimeline(defaultTimeline: str,
|
||||||
if defaultTimeline != 'tlmedia':
|
if defaultTimeline != 'tlmedia':
|
||||||
if not minimal and not featuresHeader:
|
if not minimal and not featuresHeader:
|
||||||
tlStr += \
|
tlStr += \
|
||||||
'<a href="' + usersPath + \
|
'<a href="' + usersPath + '/tlmedia" tabindex="-1" ' + \
|
||||||
'/tlmedia" tabindex="-1" ' + \
|
|
||||||
'accesskey="' + accessKeys['menuMedia'] + '">' + \
|
'accesskey="' + accessKeys['menuMedia'] + '">' + \
|
||||||
'<button class="' + \
|
'<button class="' + \
|
||||||
mediaButton + '"><span>' + translate['Media'] + \
|
mediaButton + '"><span>' + translate['Media'] + \
|
||||||
|
@ -206,10 +204,8 @@ def headerButtonsTimeline(defaultTimeline: str,
|
||||||
if not featuresHeader:
|
if not featuresHeader:
|
||||||
# button for the outbox
|
# button for the outbox
|
||||||
tlStr += \
|
tlStr += \
|
||||||
'<a href="' + usersPath + \
|
'<a href="' + usersPath + '/outbox"><button class="' + \
|
||||||
'/outbox"><button class="' + \
|
sentButton + '" tabindex="-1"><span>' + translate['Sent'] + \
|
||||||
sentButton + '" tabindex="-1">' + \
|
|
||||||
'<span>' + translate['Sent'] + \
|
|
||||||
'</span></button></a>'
|
'</span></button></a>'
|
||||||
|
|
||||||
# add other buttons
|
# add other buttons
|
||||||
|
|
|
@ -36,18 +36,19 @@ def htmlGetLoginCredentials(loginParams: str,
|
||||||
password = None
|
password = None
|
||||||
register = False
|
register = False
|
||||||
for arg in loginArgs:
|
for arg in loginArgs:
|
||||||
if '=' in arg:
|
if '=' not in arg:
|
||||||
if arg.split('=', 1)[0] == 'username':
|
continue
|
||||||
nickname = arg.split('=', 1)[1]
|
if arg.split('=', 1)[0] == 'username':
|
||||||
if nickname.startswith('@'):
|
nickname = arg.split('=', 1)[1]
|
||||||
nickname = nickname[1:]
|
if nickname.startswith('@'):
|
||||||
if '@' in nickname:
|
nickname = nickname[1:]
|
||||||
# the full nickname@domain has been entered
|
if '@' in nickname:
|
||||||
nickname = nickname.split('@')[0]
|
# the full nickname@domain has been entered
|
||||||
elif arg.split('=', 1)[0] == 'password':
|
nickname = nickname.split('@')[0]
|
||||||
password = arg.split('=', 1)[1]
|
elif arg.split('=', 1)[0] == 'password':
|
||||||
elif arg.split('=', 1)[0] == 'register':
|
password = arg.split('=', 1)[1]
|
||||||
register = True
|
elif arg.split('=', 1)[0] == 'register':
|
||||||
|
register = True
|
||||||
return nickname, password, register
|
return nickname, password, register
|
||||||
|
|
||||||
|
|
||||||
|
@ -103,8 +104,7 @@ def htmlLogin(cssCache: {}, translate: {},
|
||||||
else:
|
else:
|
||||||
loginText = \
|
loginText = \
|
||||||
'<p class="login-text">' + \
|
'<p class="login-text">' + \
|
||||||
translate['Please enter some credentials'] + '</p>'
|
translate['Please enter some credentials'] + '</p>' + \
|
||||||
loginText += \
|
|
||||||
'<p class="login-text">' + \
|
'<p class="login-text">' + \
|
||||||
translate['You will become the admin of this site.'] + \
|
translate['You will become the admin of this site.'] + \
|
||||||
'</p>'
|
'</p>'
|
||||||
|
@ -132,8 +132,7 @@ def htmlLogin(cssCache: {}, translate: {},
|
||||||
|
|
||||||
TOSstr = \
|
TOSstr = \
|
||||||
'<p class="login-text"><a href="/about">' + \
|
'<p class="login-text"><a href="/about">' + \
|
||||||
translate['About this Instance'] + '</a></p>'
|
translate['About this Instance'] + '</a></p>' + \
|
||||||
TOSstr += \
|
|
||||||
'<p class="login-text"><a href="/terms">' + \
|
'<p class="login-text"><a href="/terms">' + \
|
||||||
translate['Terms of Service'] + '</a></p>'
|
translate['Terms of Service'] + '</a></p>'
|
||||||
|
|
||||||
|
@ -153,34 +152,32 @@ def htmlLogin(cssCache: {}, translate: {},
|
||||||
htmlHeaderWithWebsiteMarkup(cssFilename, instanceTitle,
|
htmlHeaderWithWebsiteMarkup(cssFilename, instanceTitle,
|
||||||
httpPrefix, domain,
|
httpPrefix, domain,
|
||||||
systemLanguage)
|
systemLanguage)
|
||||||
loginForm += '<br>\n'
|
|
||||||
loginForm += '<form method="POST" action="/login">\n'
|
|
||||||
loginForm += ' <div class="imgcontainer">\n'
|
|
||||||
instanceTitle = getConfigParam(baseDir, 'instanceTitle')
|
instanceTitle = getConfigParam(baseDir, 'instanceTitle')
|
||||||
loginForm += textModeLogoHtml + '\n'
|
|
||||||
loginForm += \
|
loginForm += \
|
||||||
|
'<br>\n' + \
|
||||||
|
'<form method="POST" action="/login">\n' + \
|
||||||
|
' <div class="imgcontainer">\n' + \
|
||||||
|
textModeLogoHtml + '\n' + \
|
||||||
' <img loading="lazy" src="' + loginImage + \
|
' <img loading="lazy" src="' + loginImage + \
|
||||||
'" alt="' + instanceTitle + '" class="loginimage">\n'
|
'" alt="' + instanceTitle + '" class="loginimage">\n' + \
|
||||||
loginForm += loginText + TOSstr + '\n'
|
loginText + TOSstr + '\n' + \
|
||||||
loginForm += ' </div>\n'
|
' </div>\n' + \
|
||||||
loginForm += '\n'
|
'\n' + \
|
||||||
loginForm += ' <div class="container">\n'
|
' <div class="container">\n' + \
|
||||||
loginForm += ' <label for="nickname"><b>' + \
|
' <label for="nickname"><b>' + \
|
||||||
translate['Nickname'] + '</b></label>\n'
|
translate['Nickname'] + '</b></label>\n' + \
|
||||||
loginForm += \
|
|
||||||
' <input type="text" ' + autocompleteStr + ' placeholder="' + \
|
' <input type="text" ' + autocompleteStr + ' placeholder="' + \
|
||||||
translate['Enter Nickname'] + '" name="username" required autofocus>\n'
|
translate['Enter Nickname'] + \
|
||||||
loginForm += '\n'
|
'" name="username" required autofocus>\n' + \
|
||||||
loginForm += ' <label for="password"><b>' + \
|
'\n' + \
|
||||||
translate['Password'] + '</b></label>\n'
|
' <label for="password"><b>' + \
|
||||||
loginForm += \
|
translate['Password'] + '</b></label>\n' + \
|
||||||
' <input type="password" ' + autocompleteStr + \
|
' <input type="password" ' + autocompleteStr + \
|
||||||
' placeholder="' + translate['Enter Password'] + \
|
' placeholder="' + translate['Enter Password'] + \
|
||||||
'" name="password" required>\n'
|
'" name="password" required>\n' + \
|
||||||
loginForm += loginButtonStr + registerButtonStr + '\n'
|
loginButtonStr + registerButtonStr + '\n' + \
|
||||||
loginForm += ' </div>\n'
|
' </div>\n' + \
|
||||||
loginForm += '</form>\n'
|
'</form>\n' + \
|
||||||
loginForm += \
|
|
||||||
'<a href="https://gitlab.com/bashrc2/epicyon">' + \
|
'<a href="https://gitlab.com/bashrc2/epicyon">' + \
|
||||||
'<img loading="lazy" class="license" title="' + \
|
'<img loading="lazy" class="license" title="' + \
|
||||||
translate['Get the source code'] + '" alt="' + \
|
translate['Get the source code'] + '" alt="' + \
|
||||||
|
|
|
@ -8,6 +8,7 @@ __status__ = "Production"
|
||||||
__module_group__ = "Timeline"
|
__module_group__ = "Timeline"
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
from utils import validUrlPrefix
|
||||||
|
|
||||||
|
|
||||||
def loadPeertubeInstances(baseDir: str, peertubeInstances: []) -> None:
|
def loadPeertubeInstances(baseDir: str, peertubeInstances: []) -> None:
|
||||||
|
@ -110,6 +111,8 @@ def _addEmbeddedVideoFromSites(translate: {}, content: str,
|
||||||
|
|
||||||
if '"https://' in content:
|
if '"https://' in content:
|
||||||
if peertubeInstances:
|
if peertubeInstances:
|
||||||
|
# only create an embedded video for a limited set of
|
||||||
|
# peertube sites.
|
||||||
peerTubeSites = peertubeInstances
|
peerTubeSites = peertubeInstances
|
||||||
else:
|
else:
|
||||||
# A default selection of the current larger peertube sites,
|
# A default selection of the current larger peertube sites,
|
||||||
|
@ -160,19 +163,21 @@ def _addEmbeddedVideoFromSites(translate: {}, content: str,
|
||||||
else:
|
else:
|
||||||
siteStr = 'https://' + site
|
siteStr = 'https://' + site
|
||||||
siteStr = '"' + siteStr
|
siteStr = '"' + siteStr
|
||||||
if siteStr in content:
|
if siteStr not in content:
|
||||||
url = content.split(siteStr)[1]
|
continue
|
||||||
if '"' in url:
|
url = content.split(siteStr)[1]
|
||||||
url = url.split('"')[0].replace('/watch/', '/embed/')
|
if '"' not in url:
|
||||||
content = \
|
continue
|
||||||
content + "<center>\n<iframe loading=\"lazy\" " + \
|
url = url.split('"')[0].replace('/watch/', '/embed/')
|
||||||
"sandbox=\"allow-same-origin " + \
|
content = \
|
||||||
"allow-scripts\" src=\"https://" + \
|
content + "<center>\n<iframe loading=\"lazy\" " + \
|
||||||
site + url + "\" width=\"" + str(width) + \
|
"sandbox=\"allow-same-origin " + \
|
||||||
"\" height=\"" + str(height) + \
|
"allow-scripts\" src=\"https://" + \
|
||||||
"\" frameborder=\"0\" allow=\"autoplay; " + \
|
site + url + "\" width=\"" + str(width) + \
|
||||||
"fullscreen\" allowfullscreen></iframe>\n</center>\n"
|
"\" height=\"" + str(height) + \
|
||||||
return content
|
"\" frameborder=\"0\" allow=\"autoplay; " + \
|
||||||
|
"fullscreen\" allowfullscreen></iframe>\n</center>\n"
|
||||||
|
return content
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
|
||||||
|
@ -205,19 +210,14 @@ def _addEmbeddedAudio(translate: {}, content: str) -> str:
|
||||||
if not w.endswith(extension):
|
if not w.endswith(extension):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not (w.startswith('http') or w.startswith('dat:') or
|
if not validUrlPrefix(w):
|
||||||
w.startswith('hyper:') or w.startswith('i2p:') or
|
|
||||||
w.startswith('gnunet:') or
|
|
||||||
'/' in w):
|
|
||||||
continue
|
continue
|
||||||
url = w
|
|
||||||
content += '<center>\n<audio controls>\n'
|
|
||||||
content += \
|
content += \
|
||||||
'<source src="' + url + '" type="audio/' + \
|
'<center>\n<audio controls>\n' + \
|
||||||
extension.replace('.', '') + '">'
|
'<source src="' + w + '" type="audio/' + \
|
||||||
content += \
|
extension.replace('.', '') + '">' + \
|
||||||
translate['Your browser does not support the audio element.']
|
translate['Your browser does not support the audio element.'] + \
|
||||||
content += '</audio>\n</center>\n'
|
'</audio>\n</center>\n'
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
|
||||||
|
@ -251,23 +251,17 @@ def _addEmbeddedVideo(translate: {}, content: str) -> str:
|
||||||
w = w[:-1]
|
w = w[:-1]
|
||||||
if not w.endswith(extension):
|
if not w.endswith(extension):
|
||||||
continue
|
continue
|
||||||
if not (w.startswith('http') or w.startswith('dat:') or
|
if not validUrlPrefix(w):
|
||||||
w.startswith('hyper:') or w.startswith('i2p:') or
|
|
||||||
w.startswith('gnunet:') or
|
|
||||||
'/' in w):
|
|
||||||
continue
|
continue
|
||||||
url = w
|
|
||||||
content += \
|
content += \
|
||||||
'<center><figure id="videoContainer" ' + \
|
'<center><figure id="videoContainer" ' + \
|
||||||
'data-fullscreen="false">\n' + \
|
'data-fullscreen="false">\n' + \
|
||||||
' <video id="video" controls ' + \
|
' <video id="video" controls ' + \
|
||||||
'preload="metadata">\n'
|
'preload="metadata">\n' + \
|
||||||
content += \
|
'<source src="' + w + '" type="video/' + \
|
||||||
'<source src="' + url + '" type="video/' + \
|
extension.replace('.', '') + '">\n' + \
|
||||||
extension.replace('.', '') + '">\n'
|
translate['Your browser does not support the video element.'] + \
|
||||||
content += \
|
'</video>\n</figure>\n</center>\n'
|
||||||
translate['Your browser does not support the video element.']
|
|
||||||
content += '</video>\n</figure>\n</center>\n'
|
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue