From 89884853917163be328565df0f760f0697336549 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 27 Dec 2021 18:28:26 +0000 Subject: [PATCH] Snake case --- acceptreject.py | 4 ++-- follow.py | 4 ++-- inbox.py | 6 +++--- utils.py | 10 +++++----- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/acceptreject.py b/acceptreject.py index 01c405e68..47a37dde2 100644 --- a/acceptreject.py +++ b/acceptreject.py @@ -14,7 +14,7 @@ from utils import get_full_domain from utils import urlPermitted from utils import getDomainFromActor from utils import getNicknameFromActor -from utils import domainPermitted +from utils import domain_permitted from utils import follow_person from utils import acct_dir from utils import has_group_type @@ -201,7 +201,7 @@ def receiveAcceptReject(session, base_dir: str, print('DEBUG: "users" or "profile" missing from actor in ' + message_json['type'] + '. Assuming single user instance.') domain, _ = getDomainFromActor(message_json['actor']) - if not domainPermitted(domain, federation_list): + if not domain_permitted(domain, federation_list): if debug: print('DEBUG: ' + message_json['type'] + ' from domain not permitted - ' + domain) diff --git a/follow.py b/follow.py index 6c1f1e286..5dc420c1e 100644 --- a/follow.py +++ b/follow.py @@ -16,7 +16,7 @@ from utils import has_users_path from utils import get_full_domain from utils import get_followers_list from utils import validNickname -from utils import domainPermitted +from utils import domain_permitted from utils import getDomainFromActor from utils import getNicknameFromActor from utils import get_status_number @@ -860,7 +860,7 @@ def sendFollowRequest(session, base_dir: str, if not signing_priv_key_pem: print('WARN: follow request without signing key') - if not domainPermitted(followDomain, federation_list): + if not domain_permitted(followDomain, federation_list): print('You are not permitted to follow the domain ' + followDomain) return None diff --git a/inbox.py b/inbox.py index cbfb36b75..1e8320f66 100644 --- a/inbox.py +++ b/inbox.py @@ -17,7 +17,7 @@ from languages import understoodPostLanguage from like import updateLikesCollection from reaction import updateReactionCollection from reaction import validEmojiContent -from utils import domainPermitted +from utils import domain_permitted from utils import is_group_account from utils import is_system_account from utils import invalid_ciphertext @@ -3881,7 +3881,7 @@ def _receiveFollowRequest(session, base_dir: str, http_prefix: str, domain_full = get_full_domain(domain, tempPort) if tempPort: fromPort = tempPort - if not domainPermitted(domain, federation_list): + if not domain_permitted(domain, federation_list): if debug: print('DEBUG: follower from domain not permitted - ' + domain) return False @@ -3900,7 +3900,7 @@ def _receiveFollowRequest(session, base_dir: str, http_prefix: str, 'not found within object') return False domainToFollow, tempPort = getDomainFromActor(message_json['object']) - if not domainPermitted(domainToFollow, federation_list): + if not domain_permitted(domainToFollow, federation_list): if debug: print('DEBUG: follow domain not permitted ' + domainToFollow) return True diff --git a/utils.py b/utils.py index 094eded17..519eb7966 100644 --- a/utils.py +++ b/utils.py @@ -809,7 +809,7 @@ def create_inbox_queue_dir(nickname: str, domain: str, base_dir: str) -> str: return createPersonDir(nickname, domain, base_dir, 'queue') -def domainPermitted(domain: str, federation_list: []): +def domain_permitted(domain: str, federation_list: []): if len(federation_list) == 0: return True domain = remove_domain_port(domain) @@ -1126,8 +1126,8 @@ def _setDefaultPetName(base_dir: str, nickname: str, domain: str, # petname already exists return # petname doesn't already exist - with open(petnamesFilename, 'a+') as petnamesFile: - petnamesFile.write(petnameLookupEntry) + with open(petnamesFilename, 'a+') as petnames_file: + petnames_file.write(petnameLookupEntry) def follow_person(base_dir: str, nickname: str, domain: str, @@ -1138,8 +1138,8 @@ def follow_person(base_dir: str, nickname: str, domain: str, """Adds a person to the follow list """ followDomainStrLower = followDomain.lower().replace('\n', '') - if not domainPermitted(followDomainStrLower, - federation_list): + if not domain_permitted(followDomainStrLower, + federation_list): if debug: print('DEBUG: follow of domain ' + followDomain + ' not permitted')