Black format

This commit is contained in:
Craig Quiter 2024-08-18 15:04:01 -07:00
parent 845628c100
commit 0550d12106

View File

@ -842,6 +842,7 @@ ENABLE_COMMUNITY_SHARING = PersistentConfig(
os.environ.get("ENABLE_COMMUNITY_SHARING", "True").lower() == "true", os.environ.get("ENABLE_COMMUNITY_SHARING", "True").lower() == "true",
) )
def validate_cors_origins(origins): def validate_cors_origins(origins):
for origin in origins: for origin in origins:
if origin != "*": if origin != "*":
@ -853,7 +854,9 @@ def validate_cors_origin(origin):
# Check if the scheme is either http or https # Check if the scheme is either http or https
if parsed_url.scheme not in ["http", "https"]: if parsed_url.scheme not in ["http", "https"]:
raise ValueError(f"Invalid scheme in CORS_ALLOW_ORIGIN: '{origin}'. Only 'http' and 'https' are allowed.") raise ValueError(
f"Invalid scheme in CORS_ALLOW_ORIGIN: '{origin}'. Only 'http' and 'https' are allowed."
)
# Ensure that the netloc (domain + port) is present, indicating it's a valid URL # Ensure that the netloc (domain + port) is present, indicating it's a valid URL
if not parsed_url.netloc: if not parsed_url.netloc:
@ -868,10 +871,13 @@ def validate_cors_origin(origin):
CORS_ALLOW_ORIGIN = os.environ.get("CORS_ALLOW_ORIGIN", "*").split(";") CORS_ALLOW_ORIGIN = os.environ.get("CORS_ALLOW_ORIGIN", "*").split(";")
if "*" in CORS_ALLOW_ORIGIN: if "*" in CORS_ALLOW_ORIGIN:
log.warning("\n\nWARNING: CORS_ALLOW_ORIGIN IS SET TO '*' - NOT RECOMMENDED FOR PRODUCTION DEPLOYMENTS.\n") log.warning(
"\n\nWARNING: CORS_ALLOW_ORIGIN IS SET TO '*' - NOT RECOMMENDED FOR PRODUCTION DEPLOYMENTS.\n"
)
validate_cors_origins(CORS_ALLOW_ORIGIN) validate_cors_origins(CORS_ALLOW_ORIGIN)
class BannerModel(BaseModel): class BannerModel(BaseModel):
id: str id: str
type: str type: str