2024-08-27 22:10:27 +00:00
|
|
|
import logging
|
2024-05-30 11:55:58 +00:00
|
|
|
from contextvars import ContextVar
|
2024-06-17 23:44:20 +00:00
|
|
|
|
2024-09-04 14:54:48 +00:00
|
|
|
from open_webui.env import SRC_LOG_LEVELS
|
2024-08-27 22:10:27 +00:00
|
|
|
from peewee import *
|
|
|
|
from peewee import InterfaceError as PeeWeeInterfaceError
|
|
|
|
from peewee import PostgresqlDatabase
|
2024-06-17 23:44:20 +00:00
|
|
|
from playhouse.db_url import connect, parse
|
2024-06-17 23:47:09 +00:00
|
|
|
from playhouse.shortcuts import ReconnectMixin
|
2024-06-17 17:34:19 +00:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
log.setLevel(SRC_LOG_LEVELS["DB"])
|
2024-05-30 11:55:58 +00:00
|
|
|
|
|
|
|
db_state_default = {"closed": None, "conn": None, "ctx": None, "transactions": None}
|
|
|
|
db_state = ContextVar("db_state", default=db_state_default.copy())
|
|
|
|
|
2024-06-17 23:47:09 +00:00
|
|
|
|
2024-06-16 22:25:48 +00:00
|
|
|
class PeeweeConnectionState(object):
|
2024-05-30 11:55:58 +00:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super().__setattr__("_state", db_state)
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
|
|
|
|
def __setattr__(self, name, value):
|
|
|
|
self._state.get()[name] = value
|
|
|
|
|
|
|
|
def __getattr__(self, name):
|
2024-06-16 22:25:48 +00:00
|
|
|
value = self._state.get()[name]
|
|
|
|
return value
|
2024-05-30 11:55:58 +00:00
|
|
|
|
2024-06-17 23:47:09 +00:00
|
|
|
|
2024-06-17 23:44:20 +00:00
|
|
|
class CustomReconnectMixin(ReconnectMixin):
|
|
|
|
reconnect_errors = (
|
|
|
|
# psycopg2
|
2024-06-17 23:47:09 +00:00
|
|
|
(OperationalError, "termin"),
|
|
|
|
(InterfaceError, "closed"),
|
2024-06-17 23:44:20 +00:00
|
|
|
# peewee
|
2024-06-17 23:47:09 +00:00
|
|
|
(PeeWeeInterfaceError, "closed"),
|
2024-06-17 23:44:20 +00:00
|
|
|
)
|
|
|
|
|
2024-06-17 23:47:09 +00:00
|
|
|
|
2024-06-17 23:44:20 +00:00
|
|
|
class ReconnectingPostgresqlDatabase(CustomReconnectMixin, PostgresqlDatabase):
|
|
|
|
pass
|
|
|
|
|
2024-06-17 23:47:09 +00:00
|
|
|
|
2024-06-16 22:25:48 +00:00
|
|
|
def register_connection(db_url):
|
2024-08-12 14:52:16 +00:00
|
|
|
db = connect(db_url, unquote_password=True)
|
2024-06-16 22:25:48 +00:00
|
|
|
if isinstance(db, PostgresqlDatabase):
|
2024-06-17 17:34:19 +00:00
|
|
|
# Enable autoconnect for SQLite databases, managed by Peewee
|
2024-06-17 16:56:31 +00:00
|
|
|
db.autoconnect = True
|
2024-06-17 23:44:20 +00:00
|
|
|
db.reuse_if_open = True
|
2024-06-17 17:34:19 +00:00
|
|
|
log.info("Connected to PostgreSQL database")
|
2024-06-17 23:47:09 +00:00
|
|
|
|
|
|
|
# Get the connection details
|
2024-08-12 14:52:16 +00:00
|
|
|
connection = parse(db_url, unquote_password=True)
|
2024-06-17 23:47:09 +00:00
|
|
|
|
|
|
|
# Use our custom database class that supports reconnection
|
2024-08-12 14:52:16 +00:00
|
|
|
db = ReconnectingPostgresqlDatabase(**connection)
|
2024-06-17 23:44:20 +00:00
|
|
|
db.connect(reuse_if_open=True)
|
2024-06-16 22:25:48 +00:00
|
|
|
elif isinstance(db, SqliteDatabase):
|
2024-06-17 17:34:19 +00:00
|
|
|
# Enable autoconnect for SQLite databases, managed by Peewee
|
2024-06-17 16:56:31 +00:00
|
|
|
db.autoconnect = True
|
2024-06-17 23:44:20 +00:00
|
|
|
db.reuse_if_open = True
|
2024-06-17 17:34:19 +00:00
|
|
|
log.info("Connected to SQLite database")
|
2024-06-16 22:25:48 +00:00
|
|
|
else:
|
2024-06-17 23:47:09 +00:00
|
|
|
raise ValueError("Unsupported database connection")
|
|
|
|
return db
|