epicyon/blocking.py

1080 lines
41 KiB
Python
Raw Normal View History

2020-04-01 20:06:27 +00:00
__filename__ = "blocking.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
2021-01-26 10:07:42 +00:00
__version__ = "1.2.0"
2020-04-01 20:06:27 +00:00
__maintainer__ = "Bob Mottram"
2021-09-10 16:14:50 +00:00
__email__ = "bob@libreserver.org"
2020-04-01 20:06:27 +00:00
__status__ = "Production"
2021-06-25 16:10:09 +00:00
__module_group__ = "Core"
2019-07-14 19:27:13 +00:00
import os
2021-03-20 21:20:41 +00:00
import json
2021-06-21 09:22:24 +00:00
import time
2021-02-15 22:26:25 +00:00
from datetime import datetime
2021-12-26 17:12:07 +00:00
from utils import has_object_string
2021-12-26 15:54:46 +00:00
from utils import has_object_string_object
2021-12-26 17:12:07 +00:00
from utils import has_object_stringType
2021-12-26 18:17:37 +00:00
from utils import remove_domain_port
2021-12-26 10:57:03 +00:00
from utils import has_object_dict
2021-12-26 18:46:43 +00:00
from utils import is_account_dir
2021-12-26 23:41:34 +00:00
from utils import get_cached_post_filename
2021-12-26 15:13:34 +00:00
from utils import load_json
2021-12-26 14:47:21 +00:00
from utils import save_json
2021-12-28 14:01:37 +00:00
from utils import file_last_modified
2021-12-27 20:38:02 +00:00
from utils import set_config_param
2021-12-26 12:19:00 +00:00
from utils import has_users_path
2021-12-26 12:45:03 +00:00
from utils import get_full_domain
2021-12-27 11:20:57 +00:00
from utils import remove_id_ending
2021-12-27 17:49:35 +00:00
from utils import is_evil
2021-12-26 20:36:08 +00:00
from utils import locate_post
2021-12-27 17:46:27 +00:00
from utils import evil_incarnate
2021-12-27 19:05:25 +00:00
from utils import get_domain_from_actor
2021-12-27 22:19:18 +00:00
from utils import get_nickname_from_actor
2021-12-26 12:02:29 +00:00
from utils import acct_dir
2021-12-26 10:19:59 +00:00
from utils import local_actor_url
2021-12-26 17:15:04 +00:00
from utils import has_actor
2021-12-29 21:55:09 +00:00
from conversation import mute_conversation
from conversation import unmute_conversation
2019-07-14 19:27:13 +00:00
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def add_global_block(base_dir: str,
2021-12-30 10:16:57 +00:00
block_nickname: str, block_domain: str) -> bool:
"""Global block which applies to all accounts
"""
2021-12-30 10:16:57 +00:00
blocking_filename = base_dir + '/accounts/blocking.txt'
if not block_nickname.startswith('#'):
2020-09-05 09:41:09 +00:00
# is the handle already blocked?
2021-12-30 10:16:57 +00:00
block_handle = block_nickname + '@' + block_domain
if os.path.isfile(blocking_filename):
if block_handle in open(blocking_filename).read():
2019-08-14 10:32:15 +00:00
return False
2020-09-05 09:41:09 +00:00
# block an account handle or domain
2021-11-25 17:01:01 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(blocking_filename, 'a+') as block_file:
block_file.write(block_handle + '\n')
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to save blocked handle ' + block_handle)
2021-11-25 17:01:01 +00:00
return False
2019-08-14 10:32:15 +00:00
else:
2021-12-30 10:16:57 +00:00
block_hashtag = block_nickname
2020-09-05 09:41:09 +00:00
# is the hashtag already blocked?
2021-12-30 10:16:57 +00:00
if os.path.isfile(blocking_filename):
if block_hashtag + '\n' in open(blocking_filename).read():
2019-08-14 10:32:15 +00:00
return False
2020-09-05 09:41:09 +00:00
# block a hashtag
2021-11-25 17:01:01 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(blocking_filename, 'a+') as block_file:
block_file.write(block_hashtag + '\n')
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to save blocked hashtag ' + block_hashtag)
2021-11-25 17:01:01 +00:00
return False
return True
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def add_block(base_dir: str, nickname: str, domain: str,
2021-12-30 10:16:57 +00:00
block_nickname: str, block_domain: str) -> bool:
2019-07-14 19:27:13 +00:00
"""Block the given account
"""
2021-12-30 10:16:57 +00:00
if block_domain.startswith(domain) and nickname == block_nickname:
2021-08-11 21:21:56 +00:00
# don't block self
return False
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-30 10:16:57 +00:00
blocking_filename = acct_dir(base_dir, nickname, domain) + '/blocking.txt'
block_handle = block_nickname + '@' + block_domain
if os.path.isfile(blocking_filename):
if block_handle + '\n' in open(blocking_filename).read():
2019-07-14 19:57:05 +00:00
return False
2021-08-11 21:00:01 +00:00
# if we are following then unfollow
2021-12-30 10:16:57 +00:00
following_filename = \
acct_dir(base_dir, nickname, domain) + '/following.txt'
if os.path.isfile(following_filename):
if block_handle + '\n' in open(following_filename).read():
following_str = ''
2021-11-25 17:01:01 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(following_filename, 'r') as foll_file:
following_str = foll_file.read()
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: Unable to read following ' + following_filename)
2021-11-25 17:01:01 +00:00
return False
2021-12-30 10:16:57 +00:00
if following_str:
following_str = following_str.replace(block_handle + '\n', '')
2021-11-26 12:28:20 +00:00
2021-11-25 17:01:01 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(following_filename, 'w+') as foll_file:
foll_file.write(following_str)
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: Unable to write following ' + following_str)
2021-11-25 17:01:01 +00:00
return False
2021-08-11 21:00:01 +00:00
# if they are a follower then remove them
2021-12-30 10:16:57 +00:00
followers_filename = \
acct_dir(base_dir, nickname, domain) + '/followers.txt'
if os.path.isfile(followers_filename):
if block_handle + '\n' in open(followers_filename).read():
followers_str = ''
2021-11-25 17:01:01 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(followers_filename, 'r') as foll_file:
followers_str = foll_file.read()
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: Unable to read followers ' + followers_filename)
2021-11-25 17:01:01 +00:00
return False
2021-12-30 10:16:57 +00:00
if followers_str:
followers_str = followers_str.replace(block_handle + '\n', '')
2021-11-26 12:28:20 +00:00
2021-11-25 17:01:01 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(followers_filename, 'w+') as foll_file:
foll_file.write(followers_str)
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: Unable to write followers ' + followers_str)
2021-11-25 17:01:01 +00:00
return False
try:
2021-12-30 10:16:57 +00:00
with open(blocking_filename, 'a+') as block_file:
block_file.write(block_handle + '\n')
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to append block handle ' + block_handle)
2021-11-25 17:01:01 +00:00
return False
2019-07-14 19:57:05 +00:00
return True
2019-07-14 19:27:13 +00:00
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def remove_global_block(base_dir: str,
2021-12-30 10:16:57 +00:00
unblock_nickname: str,
unblock_domain: str) -> bool:
"""Unblock the given global block
"""
2021-12-30 10:16:57 +00:00
unblocking_filename = base_dir + '/accounts/blocking.txt'
if not unblock_nickname.startswith('#'):
unblock_handle = unblock_nickname + '@' + unblock_domain
if os.path.isfile(unblocking_filename):
if unblock_handle in open(unblocking_filename).read():
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(unblocking_filename, 'r') as fp_unblock:
with open(unblocking_filename + '.new', 'w+') as fpnew:
for line in fp_unblock:
2021-11-25 18:42:38 +00:00
handle = \
line.replace('\n', '').replace('\r', '')
2021-12-30 10:16:57 +00:00
if unblock_handle not in line:
2021-11-25 18:42:38 +00:00
fpnew.write(handle + '\n')
2021-12-25 15:28:52 +00:00
except OSError as ex:
2021-11-26 12:28:20 +00:00
print('EX: failed to remove global block ' +
2021-12-30 10:16:57 +00:00
unblocking_filename + ' ' + str(ex))
2021-11-26 12:28:20 +00:00
return False
2021-12-30 10:16:57 +00:00
if os.path.isfile(unblocking_filename + '.new'):
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
os.rename(unblocking_filename + '.new',
unblocking_filename)
2021-11-26 12:28:20 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to rename ' + unblocking_filename)
2021-11-26 12:28:20 +00:00
return False
2019-08-14 10:32:15 +00:00
return True
else:
2021-12-30 10:16:57 +00:00
unblock_hashtag = unblock_nickname
if os.path.isfile(unblocking_filename):
if unblock_hashtag + '\n' in open(unblocking_filename).read():
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(unblocking_filename, 'r') as fp_unblock:
with open(unblocking_filename + '.new', 'w+') as fpnew:
for line in fp_unblock:
block_line = \
2021-11-25 18:42:38 +00:00
line.replace('\n', '').replace('\r', '')
2021-12-30 10:16:57 +00:00
if unblock_hashtag not in line:
fpnew.write(block_line + '\n')
2021-12-25 15:28:52 +00:00
except OSError as ex:
2021-11-26 12:28:20 +00:00
print('EX: failed to remove global hashtag block ' +
2021-12-30 10:16:57 +00:00
unblocking_filename + ' ' + str(ex))
2021-11-26 12:28:20 +00:00
return False
2021-12-30 10:16:57 +00:00
if os.path.isfile(unblocking_filename + '.new'):
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
os.rename(unblocking_filename + '.new',
unblocking_filename)
2021-11-26 12:28:20 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to rename 2 ' + unblocking_filename)
2021-11-26 12:28:20 +00:00
return False
2019-08-14 10:32:15 +00:00
return True
return False
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def remove_block(base_dir: str, nickname: str, domain: str,
2021-12-30 10:16:57 +00:00
unblock_nickname: str, unblock_domain: str) -> bool:
2019-07-14 19:27:13 +00:00
"""Unblock the given account
"""
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-30 10:16:57 +00:00
unblocking_filename = \
acct_dir(base_dir, nickname, domain) + '/blocking.txt'
unblock_handle = unblock_nickname + '@' + unblock_domain
if os.path.isfile(unblocking_filename):
if unblock_handle in open(unblocking_filename).read():
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(unblocking_filename, 'r') as fp_unblock:
with open(unblocking_filename + '.new', 'w+') as fpnew:
for line in fp_unblock:
2021-11-25 18:42:38 +00:00
handle = line.replace('\n', '').replace('\r', '')
2021-12-30 10:16:57 +00:00
if unblock_handle not in line:
2021-11-25 18:42:38 +00:00
fpnew.write(handle + '\n')
2021-12-25 15:28:52 +00:00
except OSError as ex:
2021-11-26 12:28:20 +00:00
print('EX: failed to remove block ' +
2021-12-30 10:16:57 +00:00
unblocking_filename + ' ' + str(ex))
2021-11-26 12:28:20 +00:00
return False
2021-12-30 10:16:57 +00:00
if os.path.isfile(unblocking_filename + '.new'):
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
os.rename(unblocking_filename + '.new',
unblocking_filename)
2021-11-26 12:28:20 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to rename 3 ' + unblocking_filename)
2021-11-26 12:28:20 +00:00
return False
2019-07-14 19:57:05 +00:00
return True
return False
2019-08-14 10:32:15 +00:00
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def is_blocked_hashtag(base_dir: str, hashtag: str) -> bool:
2019-08-14 10:32:15 +00:00
"""Is the given hashtag blocked?
"""
2020-08-07 20:40:53 +00:00
# avoid very long hashtags
if len(hashtag) > 32:
return True
2021-12-30 10:16:57 +00:00
global_blocking_filename = base_dir + '/accounts/blocking.txt'
if os.path.isfile(global_blocking_filename):
2020-05-22 11:32:38 +00:00
hashtag = hashtag.strip('\n').strip('\r')
if not hashtag.startswith('#'):
hashtag = '#' + hashtag
2021-12-30 10:16:57 +00:00
if hashtag + '\n' in open(global_blocking_filename).read():
2019-08-14 10:32:15 +00:00
return True
return False
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def get_domain_blocklist(base_dir: str) -> str:
2020-03-28 10:33:04 +00:00
"""Returns all globally blocked domains as a string
This can be used for fast matching to mitigate flooding
"""
2021-12-30 10:16:57 +00:00
blocked_str = ''
2020-03-28 10:33:04 +00:00
2021-12-30 10:16:57 +00:00
evil_domains = evil_incarnate()
for evil in evil_domains:
blocked_str += evil + '\n'
2020-03-28 10:33:04 +00:00
2021-12-30 10:16:57 +00:00
global_blocking_filename = base_dir + '/accounts/blocking.txt'
if not os.path.isfile(global_blocking_filename):
return blocked_str
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(global_blocking_filename, 'r') as fp_blocked:
blocked_str += fp_blocked.read()
2021-11-26 12:28:20 +00:00
except OSError:
2021-12-30 10:16:57 +00:00
print('EX: unable to read ' + global_blocking_filename)
return blocked_str
2020-03-28 10:33:04 +00:00
2020-04-01 20:06:27 +00:00
2021-12-28 21:55:38 +00:00
def update_blocked_cache(base_dir: str,
2021-12-30 10:16:57 +00:00
blocked_cache: [],
blocked_cache_last_updated: int,
blocked_cache_update_secs: int) -> int:
2021-06-21 09:22:24 +00:00
"""Updates the cache of globally blocked domains held in memory
"""
2021-12-26 13:17:46 +00:00
curr_time = int(time.time())
2021-12-30 10:16:57 +00:00
if blocked_cache_last_updated > curr_time:
2021-06-21 09:40:43 +00:00
print('WARN: Cache updated in the future')
2021-12-30 10:16:57 +00:00
blocked_cache_last_updated = 0
seconds_since_last_update = curr_time - blocked_cache_last_updated
if seconds_since_last_update < blocked_cache_update_secs:
return blocked_cache_last_updated
global_blocking_filename = base_dir + '/accounts/blocking.txt'
if not os.path.isfile(global_blocking_filename):
return blocked_cache_last_updated
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(global_blocking_filename, 'r') as fp_blocked:
blocked_lines = fp_blocked.readlines()
2021-11-26 12:28:20 +00:00
# remove newlines
2022-01-08 10:58:54 +00:00
for index, _ in enumerate(blocked_lines):
2021-12-30 10:16:57 +00:00
blocked_lines[index] = blocked_lines[index].replace('\n', '')
2021-11-26 12:28:20 +00:00
# update the cache
2021-12-30 10:16:57 +00:00
blocked_cache.clear()
blocked_cache += blocked_lines
2021-12-25 15:28:52 +00:00
except OSError as ex:
2021-12-30 10:16:57 +00:00
print('EX: unable to read ' + global_blocking_filename + ' ' + str(ex))
2021-12-26 13:17:46 +00:00
return curr_time
2021-06-21 09:22:24 +00:00
2021-12-29 21:55:09 +00:00
def _get_short_domain(domain: str) -> str:
""" by checking a shorter version we can thwart adversaries
who constantly change their subdomain
e.g. subdomain123.mydomain.com becomes mydomain.com
"""
sections = domain.split('.')
2021-12-30 10:16:57 +00:00
no_of_sections = len(sections)
if no_of_sections > 2:
return sections[no_of_sections-2] + '.' + sections[-1]
return None
2021-12-28 21:55:38 +00:00
def is_blocked_domain(base_dir: str, domain: str,
2021-12-30 10:16:57 +00:00
blocked_cache: [] = None) -> bool:
"""Is the given domain blocked?
"""
2020-10-29 10:36:38 +00:00
if '.' not in domain:
return False
2021-12-27 17:49:35 +00:00
if is_evil(domain):
return True
2020-10-29 10:36:38 +00:00
2021-12-30 10:16:57 +00:00
short_domain = _get_short_domain(domain)
2020-10-29 10:36:38 +00:00
2021-12-28 21:55:38 +00:00
if not broch_mode_is_active(base_dir):
2021-12-30 10:16:57 +00:00
if blocked_cache:
for blocked_str in blocked_cache:
if '*@' + domain in blocked_str:
2020-10-29 10:36:38 +00:00
return True
2021-12-30 10:16:57 +00:00
if short_domain:
if '*@' + short_domain in blocked_str:
2021-02-15 21:14:05 +00:00
return True
2021-06-21 09:22:24 +00:00
else:
# instance block list
2021-12-30 10:16:57 +00:00
global_blocking_filename = base_dir + '/accounts/blocking.txt'
if os.path.isfile(global_blocking_filename):
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(global_blocking_filename, 'r') as fp_blocked:
blocked_str = fp_blocked.read()
if '*@' + domain in blocked_str:
2021-06-21 09:22:24 +00:00
return True
2021-12-30 10:16:57 +00:00
if short_domain:
if '*@' + short_domain in blocked_str:
2021-11-26 12:28:20 +00:00
return True
2021-12-25 15:28:52 +00:00
except OSError as ex:
2021-12-30 10:16:57 +00:00
print('EX: unable to read ' + global_blocking_filename +
2021-12-25 15:28:52 +00:00
' ' + str(ex))
2021-02-15 21:14:05 +00:00
else:
2021-12-30 10:16:57 +00:00
allow_filename = base_dir + '/accounts/allowedinstances.txt'
2021-02-15 21:14:05 +00:00
# instance allow list
2021-12-30 10:16:57 +00:00
if not short_domain:
if domain not in open(allow_filename).read():
2021-02-15 21:14:05 +00:00
return True
else:
2021-12-30 10:16:57 +00:00
if short_domain not in open(allow_filename).read():
2021-02-15 21:14:05 +00:00
return True
return False
2020-04-01 20:06:27 +00:00
2021-12-29 21:55:09 +00:00
def is_blocked(base_dir: str, nickname: str, domain: str,
2021-12-30 10:16:57 +00:00
block_nickname: str, block_domain: str,
blocked_cache: [] = None) -> bool:
2019-07-14 19:27:13 +00:00
"""Is the given nickname blocked?
"""
2021-12-30 10:16:57 +00:00
if is_evil(block_domain):
2019-09-09 15:53:23 +00:00
return True
2021-12-30 10:16:57 +00:00
block_handle = None
if block_nickname and block_domain:
block_handle = block_nickname + '@' + block_domain
2021-12-28 21:55:38 +00:00
if not broch_mode_is_active(base_dir):
# instance level block list
2021-12-30 10:16:57 +00:00
if blocked_cache:
for blocked_str in blocked_cache:
if '*@' + domain in blocked_str:
return True
2021-12-30 10:16:57 +00:00
if block_handle:
if block_handle in blocked_str:
return True
else:
2021-12-30 10:16:57 +00:00
global_blocks_filename = base_dir + '/accounts/blocking.txt'
if os.path.isfile(global_blocks_filename):
if '*@' + block_domain in open(global_blocks_filename).read():
return True
2021-12-30 10:16:57 +00:00
if block_handle:
if block_handle in open(global_blocks_filename).read():
return True
else:
# instance allow list
2021-12-30 10:16:57 +00:00
allow_filename = base_dir + '/accounts/allowedinstances.txt'
short_domain = _get_short_domain(block_domain)
if not short_domain:
if block_domain not in open(allow_filename).read():
return True
else:
2021-12-30 10:16:57 +00:00
if short_domain not in open(allow_filename).read():
return True
# account level allow list
2021-12-30 10:16:57 +00:00
account_dir = acct_dir(base_dir, nickname, domain)
allow_filename = account_dir + '/allowedinstances.txt'
if os.path.isfile(allow_filename):
if block_domain not in open(allow_filename).read():
return True
# account level block list
2021-12-30 10:16:57 +00:00
blocking_filename = account_dir + '/blocking.txt'
if os.path.isfile(blocking_filename):
if '*@' + block_domain in open(blocking_filename).read():
2019-08-02 11:46:42 +00:00
return True
2021-12-30 10:16:57 +00:00
if block_handle:
if block_handle in open(blocking_filename).read():
2020-02-05 17:39:41 +00:00
return True
2019-07-14 19:27:13 +00:00
return False
2020-04-01 20:06:27 +00:00
2021-12-29 21:55:09 +00:00
def outbox_block(base_dir: str, http_prefix: str,
nickname: str, domain: str, port: int,
message_json: {}, debug: bool) -> bool:
2019-07-17 21:40:56 +00:00
""" When a block request is received by the outbox from c2s
"""
2021-12-25 23:51:19 +00:00
if not message_json.get('type'):
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: block - no type')
2021-08-11 21:10:26 +00:00
return False
2021-12-25 23:51:19 +00:00
if not message_json['type'] == 'Block':
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: not a block')
2021-08-11 21:10:26 +00:00
return False
2021-12-26 17:12:07 +00:00
if not has_object_string(message_json, debug):
2021-08-11 21:10:26 +00:00
return False
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s block request arrived in outbox')
2021-12-30 10:16:57 +00:00
message_id = remove_id_ending(message_json['object'])
if '/statuses/' not in message_id:
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s block object is not a status')
2021-08-11 21:10:26 +00:00
return False
2021-12-30 10:16:57 +00:00
if not has_users_path(message_id):
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s block object has no nickname')
2021-08-11 21:10:26 +00:00
return False
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-30 10:16:57 +00:00
post_filename = locate_post(base_dir, nickname, domain, message_id)
2021-12-26 23:41:34 +00:00
if not post_filename:
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s block post not found in inbox or outbox')
2021-12-30 10:16:57 +00:00
print(message_id)
2021-08-11 21:10:26 +00:00
return False
2021-12-30 10:16:57 +00:00
nickname_blocked = get_nickname_from_actor(message_json['object'])
if not nickname_blocked:
2021-12-25 23:51:19 +00:00
print('WARN: unable to find nickname in ' + message_json['object'])
2021-08-11 21:10:26 +00:00
return False
2021-12-30 10:16:57 +00:00
domain_blocked, port_blocked = \
get_domain_from_actor(message_json['object'])
domain_blocked_full = get_full_domain(domain_blocked, port_blocked)
2019-07-17 21:40:56 +00:00
2021-12-28 21:55:38 +00:00
add_block(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
nickname_blocked, domain_blocked_full)
2020-03-22 20:59:01 +00:00
2019-07-17 21:40:56 +00:00
if debug:
2021-12-26 23:41:34 +00:00
print('DEBUG: post blocked via c2s - ' + post_filename)
2021-08-11 21:10:26 +00:00
return True
2020-04-01 20:06:27 +00:00
2019-07-17 21:40:56 +00:00
2021-12-29 21:55:09 +00:00
def outbox_undo_block(base_dir: str, http_prefix: str,
nickname: str, domain: str, port: int,
message_json: {}, debug: bool) -> None:
2019-07-17 21:40:56 +00:00
""" When an undo block request is received by the outbox from c2s
"""
2021-12-25 23:51:19 +00:00
if not message_json.get('type'):
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: undo block - no type')
return
2021-12-25 23:51:19 +00:00
if not message_json['type'] == 'Undo':
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: not an undo block')
return
2021-12-26 17:12:07 +00:00
if not has_object_stringType(message_json, debug):
2019-07-17 21:40:56 +00:00
return
2021-12-25 23:51:19 +00:00
if not message_json['object']['type'] == 'Block':
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: not an undo block')
return
2021-12-26 15:54:46 +00:00
if not has_object_string_object(message_json, debug):
2019-07-17 21:40:56 +00:00
return
if debug:
print('DEBUG: c2s undo block request arrived in outbox')
2021-12-30 10:16:57 +00:00
message_id = remove_id_ending(message_json['object']['object'])
if '/statuses/' not in message_id:
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s undo block object is not a status')
return
2021-12-30 10:16:57 +00:00
if not has_users_path(message_id):
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s undo block object has no nickname')
return
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-30 10:16:57 +00:00
post_filename = locate_post(base_dir, nickname, domain, message_id)
2021-12-26 23:41:34 +00:00
if not post_filename:
2019-07-17 21:40:56 +00:00
if debug:
print('DEBUG: c2s undo block post not found in inbox or outbox')
2021-12-30 10:16:57 +00:00
print(message_id)
2019-09-02 09:43:43 +00:00
return
2021-12-30 10:16:57 +00:00
nickname_blocked = \
get_nickname_from_actor(message_json['object']['object'])
if not nickname_blocked:
2020-04-01 20:06:27 +00:00
print('WARN: unable to find nickname in ' +
2021-12-25 23:51:19 +00:00
message_json['object']['object'])
2019-09-02 09:43:43 +00:00
return
2021-12-30 10:16:57 +00:00
domain_object = message_json['object']['object']
domain_blocked, port_blocked = get_domain_from_actor(domain_object)
domain_blocked_full = get_full_domain(domain_blocked, port_blocked)
2019-07-17 21:40:56 +00:00
2021-12-28 21:55:38 +00:00
remove_block(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
nickname_blocked, domain_blocked_full)
2019-07-17 21:40:56 +00:00
if debug:
2021-12-26 23:41:34 +00:00
print('DEBUG: post undo blocked via c2s - ' + post_filename)
2021-02-15 22:06:53 +00:00
2021-12-28 21:55:38 +00:00
def mute_post(base_dir: str, nickname: str, domain: str, port: int,
http_prefix: str, post_id: str, recent_posts_cache: {},
debug: bool) -> None:
2021-03-20 21:20:41 +00:00
""" Mutes the given post
"""
2021-12-28 21:55:38 +00:00
print('mute_post: post_id ' + post_id)
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain, post_id)
if not post_filename:
2021-12-28 21:55:38 +00:00
print('mute_post: file not found ' + post_id)
2021-03-20 21:20:41 +00:00
return
2021-12-26 23:41:34 +00:00
post_json_object = load_json(post_filename)
2021-12-25 22:09:19 +00:00
if not post_json_object:
2021-12-28 21:55:38 +00:00
print('mute_post: object not loaded ' + post_id)
2021-03-20 21:20:41 +00:00
return
2021-12-28 21:55:38 +00:00
print('mute_post: ' + str(post_json_object))
2021-03-20 21:20:41 +00:00
2021-12-30 10:16:57 +00:00
post_json_obj = post_json_object
also_update_post_id = None
2021-12-26 10:57:03 +00:00
if has_object_dict(post_json_object):
2021-12-30 10:16:57 +00:00
post_json_obj = post_json_object['object']
else:
2021-12-26 17:12:07 +00:00
if has_object_string(post_json_object, debug):
2021-12-30 10:16:57 +00:00
also_update_post_id = remove_id_ending(post_json_object['object'])
2021-12-26 12:45:03 +00:00
domain_full = get_full_domain(domain, port)
2021-12-26 10:19:59 +00:00
actor = local_actor_url(http_prefix, nickname, domain_full)
2021-08-12 10:22:04 +00:00
2021-12-30 10:16:57 +00:00
if post_json_obj.get('conversation'):
2021-12-29 21:55:09 +00:00
mute_conversation(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
post_json_obj['conversation'])
2021-08-12 10:22:04 +00:00
2021-09-28 11:20:14 +00:00
# does this post have ignores on it from differenent actors?
2021-12-30 10:16:57 +00:00
if not post_json_obj.get('ignores'):
2021-09-28 11:20:14 +00:00
if debug:
2021-12-26 19:47:06 +00:00
print('DEBUG: Adding initial mute to ' + post_id)
2021-12-30 10:16:57 +00:00
ignores_json = {
2021-09-28 11:20:14 +00:00
"@context": "https://www.w3.org/ns/activitystreams",
2021-12-26 19:47:06 +00:00
'id': post_id,
2021-09-28 11:20:14 +00:00
'type': 'Collection',
"totalItems": 1,
'items': [{
'type': 'Ignore',
'actor': actor
2021-09-28 11:20:14 +00:00
}]
}
2021-12-30 10:16:57 +00:00
post_json_obj['ignores'] = ignores_json
2021-09-28 11:20:14 +00:00
else:
2021-12-30 10:16:57 +00:00
if not post_json_obj['ignores'].get('items'):
post_json_obj['ignores']['items'] = []
items_list = post_json_obj['ignores']['items']
for ignores_item in items_list:
if ignores_item.get('actor'):
if ignores_item['actor'] == actor:
2021-09-28 11:20:14 +00:00
return
2021-12-30 10:16:57 +00:00
new_ignore = {
2021-09-28 11:20:14 +00:00
'type': 'Ignore',
'actor': actor
}
2021-12-30 10:16:57 +00:00
ig_it = len(items_list)
items_list.append(new_ignore)
post_json_obj['ignores']['totalItems'] = ig_it
post_json_obj['muted'] = True
2021-12-26 23:41:34 +00:00
if save_json(post_json_object, post_filename):
2021-12-28 21:55:38 +00:00
print('mute_post: saved ' + post_filename)
2021-03-20 21:20:41 +00:00
# remove cached post so that the muted version gets recreated
# without its content text and/or image
2021-12-30 10:16:57 +00:00
cached_post_filename = \
2021-12-26 23:41:34 +00:00
get_cached_post_filename(base_dir, nickname, domain, post_json_object)
2021-12-30 10:16:57 +00:00
if cached_post_filename:
if os.path.isfile(cached_post_filename):
try:
2021-12-30 10:16:57 +00:00
os.remove(cached_post_filename)
print('MUTE: cached post removed ' + cached_post_filename)
2021-11-25 17:01:01 +00:00
except OSError:
2021-10-29 16:31:20 +00:00
print('EX: MUTE cached post not removed ' +
2021-12-30 10:16:57 +00:00
cached_post_filename)
2021-09-28 11:52:25 +00:00
else:
2021-12-30 10:16:57 +00:00
print('MUTE: cached post not found ' + cached_post_filename)
2021-03-20 21:20:41 +00:00
2021-11-25 18:42:38 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(post_filename + '.muted', 'w+') as mute_file:
mute_file.write('\n')
2021-11-25 18:42:38 +00:00
except OSError:
2021-12-26 23:41:34 +00:00
print('EX: Failed to save mute file ' + post_filename + '.muted')
2021-11-25 18:42:38 +00:00
return
2021-12-26 23:41:34 +00:00
print('MUTE: ' + post_filename + '.muted file added')
2021-03-20 21:20:41 +00:00
# if the post is in the recent posts cache then mark it as muted
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('index'):
2021-12-26 19:47:06 +00:00
post_id = \
2021-12-27 11:20:57 +00:00
remove_id_ending(post_json_object['id']).replace('/', '#')
2021-12-26 20:01:37 +00:00
if post_id in recent_posts_cache['index']:
2021-12-26 19:47:06 +00:00
print('MUTE: ' + post_id + ' is in recent posts cache')
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('json'):
recent_posts_cache['json'][post_id] = json.dumps(post_json_object)
2021-12-26 19:47:06 +00:00
print('MUTE: ' + post_id +
2021-09-28 13:24:57 +00:00
' marked as muted in recent posts memory cache')
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('html'):
if recent_posts_cache['html'].get(post_id):
del recent_posts_cache['html'][post_id]
2021-12-26 19:47:06 +00:00
print('MUTE: ' + post_id + ' removed cached html')
2021-09-28 15:48:14 +00:00
2021-12-30 10:16:57 +00:00
if also_update_post_id:
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
also_update_post_id)
2021-12-26 23:41:34 +00:00
if os.path.isfile(post_filename):
2021-12-30 10:16:57 +00:00
post_json_obj = load_json(post_filename)
cached_post_filename = \
2021-12-26 23:41:34 +00:00
get_cached_post_filename(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
post_json_obj)
if cached_post_filename:
if os.path.isfile(cached_post_filename):
2021-09-28 16:32:54 +00:00
try:
2021-12-30 10:16:57 +00:00
os.remove(cached_post_filename)
2021-09-28 16:32:54 +00:00
print('MUTE: cached referenced post removed ' +
2021-12-30 10:16:57 +00:00
cached_post_filename)
2021-11-25 17:01:01 +00:00
except OSError:
2021-10-29 16:31:20 +00:00
print('EX: ' +
2021-10-29 14:48:24 +00:00
'MUTE cached referenced post not removed ' +
2021-12-30 10:16:57 +00:00
cached_post_filename)
2021-09-28 16:32:54 +00:00
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('json'):
2021-12-30 10:16:57 +00:00
if recent_posts_cache['json'].get(also_update_post_id):
del recent_posts_cache['json'][also_update_post_id]
print('MUTE: ' + also_update_post_id +
' removed referenced json')
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('html'):
2021-12-30 10:16:57 +00:00
if recent_posts_cache['html'].get(also_update_post_id):
del recent_posts_cache['html'][also_update_post_id]
print('MUTE: ' + also_update_post_id +
' removed referenced html')
2021-03-20 21:20:41 +00:00
2021-12-28 21:55:38 +00:00
def unmute_post(base_dir: str, nickname: str, domain: str, port: int,
http_prefix: str, post_id: str, recent_posts_cache: {},
debug: bool) -> None:
2021-03-20 21:20:41 +00:00
""" Unmutes the given post
"""
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain, post_id)
if not post_filename:
2021-03-20 21:20:41 +00:00
return
2021-12-26 23:41:34 +00:00
post_json_object = load_json(post_filename)
2021-12-25 22:09:19 +00:00
if not post_json_object:
2021-03-20 21:20:41 +00:00
return
2021-12-30 10:16:57 +00:00
mute_filename = post_filename + '.muted'
if os.path.isfile(mute_filename):
try:
2021-12-30 10:16:57 +00:00
os.remove(mute_filename)
2021-11-25 17:01:01 +00:00
except OSError:
2021-10-29 14:48:24 +00:00
if debug:
2021-12-28 21:55:38 +00:00
print('EX: unmute_post mute filename not deleted ' +
2021-12-30 10:16:57 +00:00
str(mute_filename))
print('UNMUTE: ' + mute_filename + ' file removed')
2021-03-20 21:20:41 +00:00
2021-12-30 10:16:57 +00:00
post_json_obj = post_json_object
also_update_post_id = None
2021-12-26 10:57:03 +00:00
if has_object_dict(post_json_object):
2021-12-30 10:16:57 +00:00
post_json_obj = post_json_object['object']
else:
2021-12-26 17:12:07 +00:00
if has_object_string(post_json_object, debug):
2021-12-30 10:16:57 +00:00
also_update_post_id = remove_id_ending(post_json_object['object'])
2021-12-30 10:16:57 +00:00
if post_json_obj.get('conversation'):
2021-12-29 21:55:09 +00:00
unmute_conversation(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
post_json_obj['conversation'])
2021-09-28 11:20:14 +00:00
2021-12-30 10:16:57 +00:00
if post_json_obj.get('ignores'):
2021-12-26 12:45:03 +00:00
domain_full = get_full_domain(domain, port)
2021-12-26 10:19:59 +00:00
actor = local_actor_url(http_prefix, nickname, domain_full)
2021-12-30 10:16:57 +00:00
total_items = 0
if post_json_obj['ignores'].get('totalItems'):
total_items = post_json_obj['ignores']['totalItems']
items_list = post_json_obj['ignores']['items']
for ignores_item in items_list:
if ignores_item.get('actor'):
if ignores_item['actor'] == actor:
2021-09-28 11:20:14 +00:00
if debug:
print('DEBUG: mute was removed for ' + actor)
2021-12-30 10:16:57 +00:00
items_list.remove(ignores_item)
2021-09-28 11:20:14 +00:00
break
2021-12-30 10:16:57 +00:00
if total_items == 1:
2021-09-28 11:20:14 +00:00
if debug:
print('DEBUG: mute was removed from post')
2021-12-30 10:16:57 +00:00
del post_json_obj['ignores']
2021-09-28 11:20:14 +00:00
else:
2021-12-30 10:16:57 +00:00
ig_it_len = len(post_json_obj['ignores']['items'])
post_json_obj['ignores']['totalItems'] = ig_it_len
post_json_obj['muted'] = False
2021-12-26 23:41:34 +00:00
save_json(post_json_object, post_filename)
2021-03-20 21:20:41 +00:00
# remove cached post so that the muted version gets recreated
# with its content text and/or image
2021-12-30 10:16:57 +00:00
cached_post_filename = \
2021-12-26 23:41:34 +00:00
get_cached_post_filename(base_dir, nickname, domain, post_json_object)
2021-12-30 10:16:57 +00:00
if cached_post_filename:
if os.path.isfile(cached_post_filename):
try:
2021-12-30 10:16:57 +00:00
os.remove(cached_post_filename)
2021-11-25 17:01:01 +00:00
except OSError:
2021-10-29 14:48:24 +00:00
if debug:
2021-12-28 21:55:38 +00:00
print('EX: unmute_post cached post not deleted ' +
2021-12-30 10:16:57 +00:00
str(cached_post_filename))
2021-03-20 21:20:41 +00:00
# if the post is in the recent posts cache then mark it as unmuted
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('index'):
2021-12-26 19:47:06 +00:00
post_id = \
2021-12-27 11:20:57 +00:00
remove_id_ending(post_json_object['id']).replace('/', '#')
2021-12-26 20:01:37 +00:00
if post_id in recent_posts_cache['index']:
2021-12-26 19:47:06 +00:00
print('UNMUTE: ' + post_id + ' is in recent posts cache')
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('json'):
recent_posts_cache['json'][post_id] = json.dumps(post_json_object)
2021-12-26 19:47:06 +00:00
print('UNMUTE: ' + post_id +
2021-09-28 13:24:57 +00:00
' marked as unmuted in recent posts cache')
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('html'):
if recent_posts_cache['html'].get(post_id):
del recent_posts_cache['html'][post_id]
2021-12-26 19:47:06 +00:00
print('UNMUTE: ' + post_id + ' removed cached html')
2021-12-30 10:16:57 +00:00
if also_update_post_id:
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
also_update_post_id)
2021-12-26 23:41:34 +00:00
if os.path.isfile(post_filename):
2021-12-30 10:16:57 +00:00
post_json_obj = load_json(post_filename)
cached_post_filename = \
2021-12-26 23:41:34 +00:00
get_cached_post_filename(base_dir, nickname, domain,
2021-12-30 10:16:57 +00:00
post_json_obj)
if cached_post_filename:
if os.path.isfile(cached_post_filename):
2021-09-28 16:32:54 +00:00
try:
2021-12-30 10:16:57 +00:00
os.remove(cached_post_filename)
2021-09-28 16:32:54 +00:00
print('MUTE: cached referenced post removed ' +
2021-12-30 10:16:57 +00:00
cached_post_filename)
2021-11-25 17:01:01 +00:00
except OSError:
2021-10-29 14:48:24 +00:00
if debug:
2021-10-29 16:31:20 +00:00
print('EX: ' +
2021-12-28 21:55:38 +00:00
'unmute_post cached ref post not removed ' +
2021-12-30 10:16:57 +00:00
str(cached_post_filename))
2021-09-28 16:32:54 +00:00
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('json'):
2021-12-30 10:16:57 +00:00
if recent_posts_cache['json'].get(also_update_post_id):
del recent_posts_cache['json'][also_update_post_id]
2021-09-28 15:48:14 +00:00
print('UNMUTE: ' +
2021-12-30 10:16:57 +00:00
also_update_post_id + ' removed referenced json')
2021-12-26 20:01:37 +00:00
if recent_posts_cache.get('html'):
2021-12-30 10:16:57 +00:00
if recent_posts_cache['html'].get(also_update_post_id):
del recent_posts_cache['html'][also_update_post_id]
2021-09-28 15:48:14 +00:00
print('UNMUTE: ' +
2021-12-30 10:16:57 +00:00
also_update_post_id + ' removed referenced html')
2021-03-20 21:20:41 +00:00
2021-12-29 21:55:09 +00:00
def outbox_mute(base_dir: str, http_prefix: str,
nickname: str, domain: str, port: int,
message_json: {}, debug: bool,
recent_posts_cache: {}) -> None:
2021-03-20 21:20:41 +00:00
"""When a mute is received by the outbox from c2s
"""
2021-12-25 23:51:19 +00:00
if not message_json.get('type'):
2021-03-20 21:20:41 +00:00
return
2021-12-26 17:15:04 +00:00
if not has_actor(message_json, debug):
2021-03-20 21:20:41 +00:00
return
2021-12-26 12:45:03 +00:00
domain_full = get_full_domain(domain, port)
2021-12-26 10:00:46 +00:00
if not message_json['actor'].endswith(domain_full + '/users/' + nickname):
2021-03-20 21:20:41 +00:00
return
2021-12-25 23:51:19 +00:00
if not message_json['type'] == 'Ignore':
2021-03-20 21:20:41 +00:00
return
2021-12-26 17:12:07 +00:00
if not has_object_string(message_json, debug):
2021-03-20 21:20:41 +00:00
return
if debug:
print('DEBUG: c2s mute request arrived in outbox')
2021-12-30 10:16:57 +00:00
message_id = remove_id_ending(message_json['object'])
if '/statuses/' not in message_id:
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: c2s mute object is not a status')
return
2021-12-30 10:16:57 +00:00
if not has_users_path(message_id):
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: c2s mute object has no nickname')
return
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-30 10:16:57 +00:00
post_filename = locate_post(base_dir, nickname, domain, message_id)
2021-12-26 23:41:34 +00:00
if not post_filename:
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: c2s mute post not found in inbox or outbox')
2021-12-30 10:16:57 +00:00
print(message_id)
2021-03-20 21:20:41 +00:00
return
2021-12-30 10:16:57 +00:00
nickname_muted = get_nickname_from_actor(message_json['object'])
if not nickname_muted:
2021-12-25 23:51:19 +00:00
print('WARN: unable to find nickname in ' + message_json['object'])
2021-03-20 21:20:41 +00:00
return
2021-12-28 21:55:38 +00:00
mute_post(base_dir, nickname, domain, port,
http_prefix, message_json['object'], recent_posts_cache,
debug)
2021-03-20 21:20:41 +00:00
if debug:
2021-12-26 23:41:34 +00:00
print('DEBUG: post muted via c2s - ' + post_filename)
2021-03-20 21:20:41 +00:00
2021-12-29 21:55:09 +00:00
def outbox_undo_mute(base_dir: str, http_prefix: str,
nickname: str, domain: str, port: int,
message_json: {}, debug: bool,
recent_posts_cache: {}) -> None:
2021-03-20 21:20:41 +00:00
"""When an undo mute is received by the outbox from c2s
"""
2021-12-25 23:51:19 +00:00
if not message_json.get('type'):
2021-03-20 21:20:41 +00:00
return
2021-12-26 17:15:04 +00:00
if not has_actor(message_json, debug):
2021-03-20 21:20:41 +00:00
return
2021-12-26 12:45:03 +00:00
domain_full = get_full_domain(domain, port)
2021-12-26 10:00:46 +00:00
if not message_json['actor'].endswith(domain_full + '/users/' + nickname):
2021-03-20 21:20:41 +00:00
return
2021-12-25 23:51:19 +00:00
if not message_json['type'] == 'Undo':
2021-03-20 21:20:41 +00:00
return
2021-12-26 17:12:07 +00:00
if not has_object_stringType(message_json, debug):
2021-03-20 21:20:41 +00:00
return
2021-12-25 23:51:19 +00:00
if message_json['object']['type'] != 'Ignore':
2021-03-20 21:20:41 +00:00
return
2021-12-25 23:51:19 +00:00
if not isinstance(message_json['object']['object'], str):
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: undo mute object is not a string')
return
if debug:
print('DEBUG: c2s undo mute request arrived in outbox')
2021-12-30 10:16:57 +00:00
message_id = remove_id_ending(message_json['object']['object'])
if '/statuses/' not in message_id:
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: c2s undo mute object is not a status')
return
2021-12-30 10:16:57 +00:00
if not has_users_path(message_id):
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: c2s undo mute object has no nickname')
return
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-30 10:16:57 +00:00
post_filename = locate_post(base_dir, nickname, domain, message_id)
2021-12-26 23:41:34 +00:00
if not post_filename:
2021-03-20 21:20:41 +00:00
if debug:
print('DEBUG: c2s undo mute post not found in inbox or outbox')
2021-12-30 10:16:57 +00:00
print(message_id)
2021-03-20 21:20:41 +00:00
return
2021-12-30 10:16:57 +00:00
nickname_muted = get_nickname_from_actor(message_json['object']['object'])
if not nickname_muted:
2021-03-20 21:20:41 +00:00
print('WARN: unable to find nickname in ' +
2021-12-25 23:51:19 +00:00
message_json['object']['object'])
2021-03-20 21:20:41 +00:00
return
2021-12-28 21:55:38 +00:00
unmute_post(base_dir, nickname, domain, port,
http_prefix, message_json['object']['object'],
recent_posts_cache, debug)
2021-03-20 21:20:41 +00:00
if debug:
2021-12-26 23:41:34 +00:00
print('DEBUG: post undo mute via c2s - ' + post_filename)
2021-03-20 21:20:41 +00:00
2021-12-28 21:55:38 +00:00
def broch_mode_is_active(base_dir: str) -> bool:
"""Returns true if broch mode is active
"""
2021-12-30 10:16:57 +00:00
allow_filename = base_dir + '/accounts/allowedinstances.txt'
return os.path.isfile(allow_filename)
2021-12-28 21:55:38 +00:00
def set_broch_mode(base_dir: str, domain_full: str, enabled: bool) -> None:
2021-02-15 22:06:53 +00:00
"""Broch mode can be used to lock down the instance during
a period of time when it is temporarily under attack.
For example, where an adversary is constantly spinning up new
instances.
It surveys the following lists of all accounts and uses that
to construct an instance level allow list. Anything arriving
which is then not from one of the allowed domains will be dropped
"""
2021-12-30 10:16:57 +00:00
allow_filename = base_dir + '/accounts/allowedinstances.txt'
2021-02-15 22:06:53 +00:00
if not enabled:
# remove instance allow list
2021-12-30 10:16:57 +00:00
if os.path.isfile(allow_filename):
try:
2021-12-30 10:16:57 +00:00
os.remove(allow_filename)
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-28 21:55:38 +00:00
print('EX: set_broch_mode allow file not deleted ' +
2021-12-30 10:16:57 +00:00
str(allow_filename))
2021-02-15 22:26:25 +00:00
print('Broch mode turned off')
2021-02-15 22:06:53 +00:00
else:
2021-12-30 10:16:57 +00:00
if os.path.isfile(allow_filename):
last_modified = file_last_modified(allow_filename)
print('Broch mode already activated ' + last_modified)
2021-02-16 09:50:50 +00:00
return
2021-02-15 22:06:53 +00:00
# generate instance allow list
2021-12-30 10:16:57 +00:00
allowed_domains = [domain_full]
2021-12-26 10:19:59 +00:00
follow_files = ('following.txt', 'followers.txt')
2021-12-25 16:17:53 +00:00
for subdir, dirs, files in os.walk(base_dir + '/accounts'):
2021-02-15 22:06:53 +00:00
for acct in dirs:
2021-12-26 18:46:43 +00:00
if not is_account_dir(acct):
2021-02-15 22:06:53 +00:00
continue
2021-12-30 10:16:57 +00:00
account_dir = os.path.join(base_dir + '/accounts', acct)
for follow_file_type in follow_files:
following_filename = account_dir + '/' + follow_file_type
if not os.path.isfile(following_filename):
continue
2021-11-26 12:28:20 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(following_filename, 'r') as foll_file:
follow_list = foll_file.readlines()
for handle in follow_list:
2021-11-26 12:28:20 +00:00
if '@' not in handle:
continue
handle = handle.replace('\n', '')
2021-12-30 10:16:57 +00:00
handle_domain = handle.split('@')[1]
if handle_domain not in allowed_domains:
allowed_domains.append(handle_domain)
2021-12-25 15:28:52 +00:00
except OSError as ex:
2021-12-30 10:16:57 +00:00
print('EX: failed to read ' + following_filename +
2021-12-25 15:28:52 +00:00
' ' + str(ex))
2021-02-15 22:06:53 +00:00
break
# write the allow file
2021-11-25 18:42:38 +00:00
try:
2021-12-30 10:16:57 +00:00
with open(allow_filename, 'w+') as allow_file:
allow_file.write(domain_full + '\n')
for allowed in allowed_domains:
allow_file.write(allowed + '\n')
2021-11-25 18:42:38 +00:00
print('Broch mode enabled')
2021-12-25 15:28:52 +00:00
except OSError as ex:
print('EX: Broch mode not enabled due to file write ' + str(ex))
2021-11-25 18:42:38 +00:00
return
2021-02-15 22:06:53 +00:00
2021-12-30 13:56:38 +00:00
set_config_param(base_dir, "brochMode", enabled)
2021-02-15 22:26:25 +00:00
2021-12-25 18:38:19 +00:00
def broch_modeLapses(base_dir: str, lapseDays: int) -> bool:
2021-02-15 22:26:25 +00:00
"""After broch mode is enabled it automatically
elapses after a period of time
"""
2021-12-30 10:16:57 +00:00
allow_filename = base_dir + '/accounts/allowedinstances.txt'
if not os.path.isfile(allow_filename):
2021-02-15 23:01:07 +00:00
return False
2021-12-30 10:16:57 +00:00
last_modified = file_last_modified(allow_filename)
modified_date = None
2021-02-15 22:26:25 +00:00
try:
2021-12-30 10:16:57 +00:00
modified_date = \
datetime.strptime(last_modified, "%Y-%m-%dT%H:%M:%SZ")
2021-02-15 22:26:25 +00:00
except BaseException:
2021-12-30 10:16:57 +00:00
print('EX: broch_modeLapses date not parsed ' + str(last_modified))
2021-06-05 13:38:57 +00:00
return False
2021-12-30 10:16:57 +00:00
if not modified_date:
2021-06-05 13:38:57 +00:00
return False
2021-12-26 13:17:46 +00:00
curr_time = datetime.datetime.utcnow()
2021-12-30 10:16:57 +00:00
days_since_broch = (curr_time - modified_date).days
if days_since_broch >= lapseDays:
removed = False
2021-02-15 22:26:25 +00:00
try:
2021-12-30 10:16:57 +00:00
os.remove(allow_filename)
removed = True
2021-11-25 17:01:01 +00:00
except OSError:
2021-12-25 18:38:19 +00:00
print('EX: broch_modeLapses allow file not deleted ' +
2021-12-30 10:16:57 +00:00
str(allow_filename))
if removed:
2021-12-30 13:56:38 +00:00
set_config_param(base_dir, "brochMode", False)
2021-02-15 22:26:25 +00:00
print('Broch mode has elapsed')
2021-06-05 13:38:57 +00:00
return True
return False
2021-10-21 11:13:24 +00:00
2021-12-28 21:55:38 +00:00
def load_cw_lists(base_dir: str, verbose: bool) -> {}:
2021-10-21 13:08:21 +00:00
"""Load lists used for content warnings
2021-10-21 11:13:24 +00:00
"""
2021-12-25 16:17:53 +00:00
if not os.path.isdir(base_dir + '/cwlists'):
2021-10-21 11:13:24 +00:00
return {}
result = {}
2021-12-25 16:17:53 +00:00
for subdir, dirs, files in os.walk(base_dir + '/cwlists'):
2021-12-30 10:16:57 +00:00
for fname in files:
if not fname.endswith('.json'):
2021-10-21 11:13:24 +00:00
continue
2021-12-30 10:16:57 +00:00
list_filename = os.path.join(base_dir + '/cwlists', fname)
print('list_filename: ' + list_filename)
list_json = load_json(list_filename, 0, 1)
if not list_json:
2021-10-21 11:13:24 +00:00
continue
2021-12-30 10:16:57 +00:00
if not list_json.get('name'):
2021-10-21 11:17:26 +00:00
continue
2021-12-30 10:16:57 +00:00
if not list_json.get('words') and not list_json.get('domains'):
2021-10-21 11:17:26 +00:00
continue
2021-12-30 10:16:57 +00:00
name = list_json['name']
2021-10-21 11:17:26 +00:00
if verbose:
print('List: ' + name)
2021-12-30 10:16:57 +00:00
result[name] = list_json
2021-10-21 11:13:24 +00:00
return result
2021-10-21 13:08:21 +00:00
2021-12-30 10:16:57 +00:00
def add_cw_from_lists(post_json_object: {}, cw_lists: {}, translate: {},
2021-12-29 21:55:09 +00:00
lists_enabled: str) -> None:
2021-10-21 13:08:21 +00:00
"""Adds content warnings by matching the post content
against domains or keywords
"""
2021-12-25 18:12:13 +00:00
if not lists_enabled:
return
2021-12-25 22:09:19 +00:00
if not post_json_object['object'].get('content'):
2021-10-21 13:08:21 +00:00
return
2021-12-30 10:16:57 +00:00
cw_text = ''
2021-12-25 22:09:19 +00:00
if post_json_object['object'].get('summary'):
2021-12-30 10:16:57 +00:00
cw_text = post_json_object['object']['summary']
2021-10-21 13:08:21 +00:00
2021-12-25 22:09:19 +00:00
content = post_json_object['object']['content']
2021-12-25 23:26:38 +00:00
for name, item in cw_lists.items():
2021-12-25 18:12:13 +00:00
if name not in lists_enabled:
continue
2021-10-21 13:08:21 +00:00
if not item.get('warning'):
continue
warning = item['warning']
# is there a translated version of the warning?
if translate.get(warning):
warning = translate[warning]
# is the warning already in the CW?
2021-12-30 10:16:57 +00:00
if warning in cw_text:
2021-10-21 13:08:21 +00:00
continue
matched = False
# match domains within the content
if item.get('domains'):
for domain in item['domains']:
if domain in content:
2021-12-30 10:16:57 +00:00
if cw_text:
cw_text = warning + ' / ' + cw_text
2021-10-21 13:08:21 +00:00
else:
2021-12-30 10:16:57 +00:00
cw_text = warning
2021-10-21 13:08:21 +00:00
matched = True
break
if matched:
continue
# match words within the content
if item.get('words'):
2021-12-30 10:16:57 +00:00
for word_str in item['words']:
if word_str in content:
if cw_text:
cw_text = warning + ' / ' + cw_text
2021-10-21 13:08:21 +00:00
else:
2021-12-30 10:16:57 +00:00
cw_text = warning
2021-10-21 13:08:21 +00:00
break
2021-12-30 10:16:57 +00:00
if cw_text:
post_json_object['object']['summary'] = cw_text
2021-12-25 22:09:19 +00:00
post_json_object['object']['sensitive'] = True
2021-10-21 19:19:44 +00:00
2021-12-28 21:55:38 +00:00
def get_cw_list_variable(listName: str) -> str:
2021-10-21 19:19:44 +00:00
"""Returns the variable associated with a CW list
"""
return 'list' + listName.replace(' ', '').replace("'", '')