2024-03-04 13:44:52 +00:00
|
|
|
__filename__ = "daemon_get_login.py"
|
|
|
|
__author__ = "Bob Mottram"
|
|
|
|
__license__ = "AGPL3+"
|
|
|
|
__version__ = "1.5.0"
|
|
|
|
__maintainer__ = "Bob Mottram"
|
|
|
|
__email__ = "bob@libreserver.org"
|
|
|
|
__status__ = "Production"
|
2024-03-23 15:11:05 +00:00
|
|
|
__module_group__ = "Core GET"
|
2024-03-04 13:44:52 +00:00
|
|
|
|
|
|
|
from utils import get_instance_url
|
2024-04-10 09:51:43 +00:00
|
|
|
from utils import string_ends_with
|
|
|
|
from utils import string_contains
|
2024-04-18 14:22:43 +00:00
|
|
|
from httpcodes import write2
|
|
|
|
from httpheaders import login_headers
|
2024-03-04 13:44:52 +00:00
|
|
|
from httpheaders import redirect_headers
|
|
|
|
from fitnessFunctions import fitness_performance
|
2024-04-18 14:22:43 +00:00
|
|
|
from webapp_login import html_login
|
2024-03-04 13:44:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
def redirect_to_login_screen(self, calling_domain: str, path: str,
|
|
|
|
http_prefix: str, domain_full: str,
|
|
|
|
onion_domain: str, i2p_domain: str,
|
|
|
|
getreq_start_time,
|
2024-04-10 09:28:34 +00:00
|
|
|
authorized: bool, debug: bool,
|
|
|
|
news_instance: bool, fitness: {}) -> bool:
|
2024-03-04 13:44:52 +00:00
|
|
|
"""Redirects to the login screen if necessary
|
|
|
|
"""
|
|
|
|
divert_to_login_screen = False
|
2024-04-10 09:51:43 +00:00
|
|
|
non_login_paths = ('/media/', '/ontologies/', '/data/', '/sharefiles/',
|
|
|
|
'/statuses/', '/emoji/', '/tags/', '/tagmaps/',
|
|
|
|
'/avatars/', '/favicons/', '/headers/', '/fonts/',
|
|
|
|
'/icons/')
|
|
|
|
if not string_contains(path, non_login_paths):
|
2024-03-04 13:44:52 +00:00
|
|
|
divert_to_login_screen = True
|
|
|
|
if path.startswith('/users/'):
|
|
|
|
nick_str = path.split('/users/')[1]
|
|
|
|
if '/' not in nick_str and '?' not in nick_str:
|
|
|
|
divert_to_login_screen = False
|
|
|
|
else:
|
2024-04-10 09:51:43 +00:00
|
|
|
possible_endings = ('/following', '/followers',
|
|
|
|
'/skills', '/roles', '/wanted', '/shares')
|
|
|
|
if string_ends_with(path, possible_endings):
|
2024-03-04 13:44:52 +00:00
|
|
|
divert_to_login_screen = False
|
|
|
|
|
|
|
|
if divert_to_login_screen and not authorized:
|
|
|
|
divert_path = '/login'
|
2024-04-10 09:28:34 +00:00
|
|
|
if news_instance:
|
2024-03-04 13:44:52 +00:00
|
|
|
# for news instances if not logged in then show the
|
|
|
|
# front page
|
|
|
|
divert_path = '/users/news'
|
|
|
|
if debug:
|
|
|
|
print('DEBUG: divert_to_login_screen=' +
|
|
|
|
str(divert_to_login_screen))
|
|
|
|
print('DEBUG: authorized=' + str(authorized))
|
|
|
|
print('DEBUG: path=' + path)
|
|
|
|
redirect_url = \
|
|
|
|
get_instance_url(calling_domain,
|
|
|
|
http_prefix, domain_full,
|
|
|
|
onion_domain, i2p_domain) + \
|
|
|
|
divert_path
|
2024-04-16 13:47:21 +00:00
|
|
|
redirect_headers(self, redirect_url, None, calling_domain, 303)
|
2024-04-10 09:28:34 +00:00
|
|
|
fitness_performance(getreq_start_time, fitness,
|
2024-03-04 13:44:52 +00:00
|
|
|
'_GET', '_redirect_to_login_screen',
|
|
|
|
debug)
|
|
|
|
return True
|
|
|
|
return False
|
2024-04-18 14:22:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
def show_login_screen(path: str, authorized: bool,
|
|
|
|
news_instance: bool,
|
|
|
|
translate: {},
|
|
|
|
base_dir: str,
|
|
|
|
http_prefix: str,
|
|
|
|
domain_full: str,
|
|
|
|
system_language: str,
|
|
|
|
ua_str: str, theme_name: str,
|
|
|
|
calling_domain: str,
|
|
|
|
getreq_start_time,
|
|
|
|
fitness: {}, debug: bool,
|
|
|
|
self) -> bool:
|
|
|
|
""" Shows the login screen
|
|
|
|
"""
|
|
|
|
if path.startswith('/login') or \
|
|
|
|
(path == '/' and not authorized and not news_instance):
|
|
|
|
# request basic auth
|
|
|
|
msg = html_login(translate, base_dir,
|
|
|
|
http_prefix, domain_full,
|
|
|
|
system_language, True, ua_str,
|
|
|
|
theme_name).encode('utf-8')
|
|
|
|
msglen = len(msg)
|
|
|
|
login_headers(self, 'text/html', msglen, calling_domain)
|
|
|
|
write2(self, msg)
|
|
|
|
fitness_performance(getreq_start_time, fitness,
|
|
|
|
'_GET', 'login shown', debug)
|
|
|
|
return True
|
|
|
|
return False
|