LibreTranslate/libretranslate/flood.py

66 lines
1.6 KiB
Python
Raw Normal View History

2021-05-16 15:50:22 +00:00
import atexit
2023-03-09 21:09:04 +00:00
from multiprocessing import Value
2021-05-16 15:50:22 +00:00
2023-03-09 21:09:04 +00:00
from libretranslate.storage import get_storage
2021-05-16 15:50:22 +00:00
from apscheduler.schedulers.background import BackgroundScheduler
2023-03-09 18:59:25 +00:00
2023-03-09 21:09:04 +00:00
setup_scheduler = Value('b', False)
2021-05-16 15:50:22 +00:00
active = False
threshold = -1
2021-05-18 03:41:02 +00:00
2021-11-24 17:41:12 +00:00
def forgive_banned():
global threshold
2021-05-16 15:50:22 +00:00
2021-11-24 17:41:12 +00:00
clear_list = []
2023-03-09 21:09:04 +00:00
s = get_storage()
banned = s.get_all_hash_int("banned")
2021-11-24 17:41:12 +00:00
for ip in banned:
if banned[ip] <= 0:
clear_list.append(ip)
else:
banned[ip] = min(threshold, banned[ip]) - 1
2021-11-24 17:41:12 +00:00
for ip in clear_list:
2023-03-09 21:09:04 +00:00
s.del_hash("banned", ip)
2021-05-18 03:41:02 +00:00
def setup(violations_threshold=100):
2021-05-16 15:50:22 +00:00
global active
global threshold
active = True
threshold = violations_threshold
2023-03-09 21:09:04 +00:00
# Only setup the scheduler and secrets on one process
if not setup_scheduler.value:
setup_scheduler.value = True
scheduler = BackgroundScheduler()
scheduler.add_job(func=forgive_banned, trigger="interval", minutes=30)
2023-03-10 03:00:27 +00:00
2023-03-09 21:09:04 +00:00
scheduler.start()
2021-05-16 15:50:22 +00:00
2023-03-09 21:09:04 +00:00
# Shut down the scheduler when exiting the app
atexit.register(lambda: scheduler.shutdown())
2021-05-16 15:50:22 +00:00
def report(request_ip):
2021-05-16 15:52:39 +00:00
if active:
2023-03-09 21:09:04 +00:00
get_storage().inc_hash_int("banned", request_ip)
def decrease(request_ip):
2023-03-09 21:09:04 +00:00
s = get_storage()
if s.get_hash_int("banned", request_ip) > 0:
s.dec_hash_int("banned", request_ip)
def has_violation(request_ip):
2023-03-09 21:09:04 +00:00
s = get_storage()
return s.get_hash_int("banned", request_ip) > 0
2021-05-18 03:41:02 +00:00
2021-05-16 15:50:22 +00:00
def is_banned(request_ip):
2023-03-09 21:09:04 +00:00
s = get_storage()
2021-05-16 15:50:22 +00:00
# More than X offences?
2023-03-09 21:09:04 +00:00
return active and s.get_hash_int("banned", request_ip) >= threshold