mirror of https://gitlab.com/bashrc2/epicyon
Separate function for searching shared items
parent
5ee1c48b6a
commit
960f3cac94
|
@ -676,6 +676,40 @@ def _receive_search_wanted(self, search_str: str,
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def _receive_search_shared(self, search_str: str,
|
||||||
|
actor_str: str,
|
||||||
|
translate: {}, base_dir: str,
|
||||||
|
page_number: int,
|
||||||
|
max_posts_in_feed: int,
|
||||||
|
http_prefix: str, domain_full: str,
|
||||||
|
calling_domain: str,
|
||||||
|
shared_items_federated_domains: [],
|
||||||
|
domain: str,
|
||||||
|
theme_name: str, access_keys: {}) -> bool:
|
||||||
|
"""Receive a search for shared items from the search screen
|
||||||
|
"""
|
||||||
|
# shared items search
|
||||||
|
nickname = get_nickname_from_actor(actor_str)
|
||||||
|
shared_items_str = \
|
||||||
|
html_search_shared_items(translate, base_dir,
|
||||||
|
search_str, page_number,
|
||||||
|
max_posts_in_feed,
|
||||||
|
http_prefix, domain_full,
|
||||||
|
actor_str, calling_domain,
|
||||||
|
shared_items_federated_domains,
|
||||||
|
'shares', nickname, domain,
|
||||||
|
theme_name, access_keys)
|
||||||
|
if shared_items_str:
|
||||||
|
msg = shared_items_str.encode('utf-8')
|
||||||
|
msglen = len(msg)
|
||||||
|
login_headers(self, 'text/html',
|
||||||
|
msglen, calling_domain)
|
||||||
|
write2(self, msg)
|
||||||
|
self.server.postreq_busy = False
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def receive_search_query(self, calling_domain: str, cookie: str,
|
def receive_search_query(self, calling_domain: str, cookie: str,
|
||||||
authorized: bool, path: str,
|
authorized: bool, path: str,
|
||||||
base_dir: str, http_prefix: str,
|
base_dir: str, http_prefix: str,
|
||||||
|
@ -965,24 +999,16 @@ def receive_search_query(self, calling_domain: str, cookie: str,
|
||||||
access_keys):
|
access_keys):
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
# shared items search
|
if _receive_search_shared(self, search_str,
|
||||||
nickname = get_nickname_from_actor(actor_str)
|
actor_str,
|
||||||
shared_items_str = \
|
translate, base_dir,
|
||||||
html_search_shared_items(translate, base_dir,
|
page_number,
|
||||||
search_str, page_number,
|
|
||||||
max_posts_in_feed,
|
max_posts_in_feed,
|
||||||
http_prefix, domain_full,
|
http_prefix, domain_full,
|
||||||
actor_str, calling_domain,
|
calling_domain,
|
||||||
shared_items_federated_domains,
|
shared_items_federated_domains,
|
||||||
'shares', nickname, domain,
|
domain,
|
||||||
theme_name, access_keys)
|
theme_name, access_keys):
|
||||||
if shared_items_str:
|
|
||||||
msg = shared_items_str.encode('utf-8')
|
|
||||||
msglen = len(msg)
|
|
||||||
login_headers(self, 'text/html',
|
|
||||||
msglen, calling_domain)
|
|
||||||
write2(self, msg)
|
|
||||||
self.server.postreq_busy = False
|
|
||||||
return
|
return
|
||||||
|
|
||||||
_receive_search_redirect(self, calling_domain,
|
_receive_search_redirect(self, calling_domain,
|
||||||
|
|
Loading…
Reference in New Issue