Indentation

merge-requests/30/head
Bob Mottram 2024-05-10 16:34:40 +01:00
parent df37ceeca0
commit 866665d57e
1 changed files with 68 additions and 68 deletions

View File

@ -520,78 +520,78 @@ def _receive_search_handle(self, search_str: str,
cookie, debug, authorized, cookie, debug, authorized,
curr_session) curr_session)
return True return True
else:
if key_shortcuts.get(nickname):
access_keys = key_shortcuts[nickname]
timezone = None if key_shortcuts.get(nickname):
if account_timezone.get(nickname): access_keys = key_shortcuts[nickname]
timezone = account_timezone.get(nickname)
profile_handle = remove_eol(search_str).strip() timezone = None
if account_timezone.get(nickname):
timezone = account_timezone.get(nickname)
# establish the session profile_handle = remove_eol(search_str).strip()
curr_proxy_type = proxy_type
if '.onion/' in profile_handle or \
profile_handle.endswith('.onion'):
curr_proxy_type = 'tor'
curr_session = self.server.session_onion
elif ('.i2p/' in profile_handle or
profile_handle.endswith('.i2p')):
curr_proxy_type = 'i2p'
curr_session = self.server.session_i2p
curr_session = \ # establish the session
establish_session("handle search", curr_session, curr_proxy_type = proxy_type
curr_proxy_type, self.server) if '.onion/' in profile_handle or \
if not curr_session: profile_handle.endswith('.onion'):
self.server.postreq_busy = False curr_proxy_type = 'tor'
return True curr_session = self.server.session_onion
elif ('.i2p/' in profile_handle or
profile_handle.endswith('.i2p')):
curr_proxy_type = 'i2p'
curr_session = self.server.session_i2p
bold_reading = False curr_session = \
if bold_reading_nicknames.get(nickname): establish_session("handle search", curr_session,
bold_reading = True curr_proxy_type, self.server)
if not curr_session:
self.server.postreq_busy = False
return True
profile_str = \ bold_reading = False
html_profile_after_search(authorized, if bold_reading_nicknames.get(nickname):
recent_posts_cache, bold_reading = True
max_recent_posts,
translate, profile_str = \
base_dir, html_profile_after_search(authorized,
profile_path_str, recent_posts_cache,
http_prefix, max_recent_posts,
nickname, translate,
domain, base_dir,
port, profile_path_str,
profile_handle, http_prefix,
curr_session, nickname,
cached_webfingers, domain,
person_cache, port,
debug, profile_handle,
project_version, curr_session,
yt_replace_domain, cached_webfingers,
twitter_replacement_domain, person_cache,
show_published_date_only, debug,
default_timeline, project_version,
peertube_instances, yt_replace_domain,
allow_local_network_access, twitter_replacement_domain,
theme_name, show_published_date_only,
access_keys, default_timeline,
system_language, peertube_instances,
max_like_count, allow_local_network_access,
signing_priv_key_pem, theme_name,
cw_lists, access_keys,
lists_enabled, system_language,
timezone, max_like_count,
onion_domain, signing_priv_key_pem,
i2p_domain, cw_lists,
bold_reading, lists_enabled,
dogwhistles, timezone,
min_images_for_accounts, onion_domain,
buy_sites, i2p_domain,
max_shares_on_profile, bold_reading,
no_of_books, dogwhistles,
auto_cw_cache) min_images_for_accounts,
buy_sites,
max_shares_on_profile,
no_of_books,
auto_cw_cache)
if profile_str: if profile_str:
msg = profile_str.encode('utf-8') msg = profile_str.encode('utf-8')
msglen = len(msg) msglen = len(msg)
@ -600,11 +600,11 @@ def _receive_search_handle(self, search_str: str,
write2(self, msg) write2(self, msg)
self.server.postreq_busy = False self.server.postreq_busy = False
return True return True
actor_str = \ actor_str = \
get_instance_url(calling_domain, get_instance_url(calling_domain,
http_prefix, domain_full, http_prefix, domain_full,
onion_domain, i2p_domain) + \ onion_domain, i2p_domain) + users_path
users_path
redirect_headers(self, actor_str + '/search', redirect_headers(self, actor_str + '/search',
cookie, calling_domain, 303) cookie, calling_domain, 303)
self.server.postreq_busy = False self.server.postreq_busy = False