mirror of https://gitlab.com/bashrc2/epicyon
Tidying
parent
386b82a02e
commit
9267dbbd1f
|
|
@ -330,7 +330,8 @@ def daemon_http_get(self) -> None:
|
||||||
# make returning info to them high priority
|
# make returning info to them high priority
|
||||||
# get nodeinfo endpoint
|
# get nodeinfo endpoint
|
||||||
if get_nodeinfo(self, ua_str, calling_domain, referer_domain,
|
if get_nodeinfo(self, ua_str, calling_domain, referer_domain,
|
||||||
self.server.http_prefix, 5, self.server.debug):
|
self.server.http_prefix, 5, self.server.debug,
|
||||||
|
self.server.base_dir):
|
||||||
return
|
return
|
||||||
|
|
||||||
fitness_performance(getreq_start_time, self.server.fitness,
|
fitness_performance(getreq_start_time, self.server.fitness,
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ from metadata import meta_data_node_info
|
||||||
def get_nodeinfo(self, ua_str: str, calling_domain: str,
|
def get_nodeinfo(self, ua_str: str, calling_domain: str,
|
||||||
referer_domain: str,
|
referer_domain: str,
|
||||||
http_prefix: str, calling_site_timeout: int,
|
http_prefix: str, calling_site_timeout: int,
|
||||||
debug: bool) -> bool:
|
debug: bool, base_dir: str) -> bool:
|
||||||
if self.path.startswith('/nodeinfo/1.0'):
|
if self.path.startswith('/nodeinfo/1.0'):
|
||||||
http_400(self)
|
http_400(self)
|
||||||
return True
|
return True
|
||||||
|
|
@ -80,7 +80,7 @@ def get_nodeinfo(self, ua_str: str, calling_domain: str,
|
||||||
print('DEBUG: nodeinfo ' + self.path)
|
print('DEBUG: nodeinfo ' + self.path)
|
||||||
crawl_time = \
|
crawl_time = \
|
||||||
update_known_crawlers(ua_str,
|
update_known_crawlers(ua_str,
|
||||||
self.server.base_dir,
|
base_dir,
|
||||||
self.server.known_crawlers,
|
self.server.known_crawlers,
|
||||||
self.server.last_known_crawler)
|
self.server.last_known_crawler)
|
||||||
if crawl_time is not None:
|
if crawl_time is not None:
|
||||||
|
|
@ -91,7 +91,7 @@ def get_nodeinfo(self, ua_str: str, calling_domain: str,
|
||||||
# For example, if this or allied instances are being attacked
|
# For example, if this or allied instances are being attacked
|
||||||
# then numbers of accounts may be changing as people
|
# then numbers of accounts may be changing as people
|
||||||
# migrate, and that information may be useful to an adversary
|
# migrate, and that information may be useful to an adversary
|
||||||
broch_mode = broch_mode_is_active(self.server.base_dir)
|
broch_mode = broch_mode_is_active(base_dir)
|
||||||
|
|
||||||
node_info_version = self.server.project_version
|
node_info_version = self.server.project_version
|
||||||
if not self.server.show_node_info_version or broch_mode:
|
if not self.server.show_node_info_version or broch_mode:
|
||||||
|
|
@ -108,7 +108,7 @@ def get_nodeinfo(self, ua_str: str, calling_domain: str,
|
||||||
self.server.i2p_domain)
|
self.server.i2p_domain)
|
||||||
about_url = instance_url + '/about'
|
about_url = instance_url + '/about'
|
||||||
terms_of_service_url = instance_url + '/terms'
|
terms_of_service_url = instance_url + '/terms'
|
||||||
info = meta_data_node_info(self.server.base_dir,
|
info = meta_data_node_info(base_dir,
|
||||||
about_url, terms_of_service_url,
|
about_url, terms_of_service_url,
|
||||||
self.server.registration,
|
self.server.registration,
|
||||||
node_info_version,
|
node_info_version,
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ def get_rss2feed(self, calling_domain: str, path: str,
|
||||||
if '/' in nickname:
|
if '/' in nickname:
|
||||||
nickname = nickname.split('/')[0]
|
nickname = nickname.split('/')[0]
|
||||||
if not nickname.startswith('rss.'):
|
if not nickname.startswith('rss.'):
|
||||||
account_dir = acct_dir(self.server.base_dir, nickname, domain)
|
account_dir = acct_dir(base_dir, nickname, domain)
|
||||||
if os.path.isdir(account_dir):
|
if os.path.isdir(account_dir):
|
||||||
curr_session = \
|
curr_session = \
|
||||||
establish_session("RSS request",
|
establish_session("RSS request",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue