Explorar el Código

Enhance database URI security and add URL encoding (#6668)

tags/0.6.16
Seayon hace 1 año
padre
commit
0b4c26578e
No account linked to committer's email address
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      api/configs/middleware/__init__.py

+ 2
- 1
api/configs/middleware/__init__.py Ver fichero

@@ -1,4 +1,5 @@
from typing import Any, Optional
from urllib.parse import quote_plus

from pydantic import Field, NonNegativeInt, PositiveInt, computed_field
from pydantic_settings import BaseSettings
@@ -104,7 +105,7 @@ class DatabaseConfig:
).strip("&")
db_extras = f"?{db_extras}" if db_extras else ""
return (f"{self.SQLALCHEMY_DATABASE_URI_SCHEME}://"
f"{self.DB_USERNAME}:{self.DB_PASSWORD}@{self.DB_HOST}:{self.DB_PORT}/{self.DB_DATABASE}"
f"{quote_plus(self.DB_USERNAME)}:{quote_plus(self.DB_PASSWORD)}@{self.DB_HOST}:{self.DB_PORT}/{self.DB_DATABASE}"
f"{db_extras}")

SQLALCHEMY_POOL_SIZE: NonNegativeInt = Field(

Cargando…
Cancelar
Guardar