mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
1fc75203f2
* disable rate limit during test, avoid conflict between tests * fix test
37 lines
917 B
Python
37 lines
917 B
Python
from flask_limiter import Limiter
|
|
from flask_limiter.util import get_remote_address
|
|
from flask_login import current_user, LoginManager
|
|
|
|
from app import config
|
|
|
|
login_manager = LoginManager()
|
|
login_manager.session_protection = "strong"
|
|
|
|
|
|
# We want to rate limit based on:
|
|
# - If the user is not logged in: request source IP
|
|
# - If the user is logged in: user_id
|
|
def __key_func():
|
|
if current_user.is_authenticated:
|
|
return f"userid:{current_user.id}"
|
|
else:
|
|
ip_addr = get_remote_address()
|
|
return f"ip:{ip_addr}"
|
|
|
|
|
|
# Setup rate limit facility
|
|
limiter = Limiter(key_func=__key_func)
|
|
|
|
|
|
@limiter.request_filter
|
|
def disable_rate_limit():
|
|
return config.DISABLE_RATE_LIMIT
|
|
|
|
|
|
# @limiter.request_filter
|
|
# def ip_whitelist():
|
|
# # Uncomment line to test rate limit in dev environment
|
|
# # return False
|
|
# # No limit for local development
|
|
# return request.remote_addr == "127.0.0.1"
|