2024-03-02 00:19:24 -08:00
|
|
|
import os
|
2024-03-20 17:11:36 -06:00
|
|
|
import logging
|
2024-05-30 20:44:13 +07:00
|
|
|
import json
|
2023-12-25 21:44:28 -08:00
|
|
|
|
2024-05-30 20:44:13 +07:00
|
|
|
from peewee import *
|
2024-05-30 18:55:58 +07:00
|
|
|
from peewee_migrate import Router
|
|
|
|
|
|
2024-06-16 15:25:48 -07:00
|
|
|
from apps.webui.internal.wrappers import register_connection
|
2024-05-30 20:44:13 +07:00
|
|
|
from config import SRC_LOG_LEVELS, DATA_DIR, DATABASE_URL, BACKEND_DIR
|
2024-05-30 18:55:58 +07:00
|
|
|
|
2024-03-20 17:11:36 -06:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
log.setLevel(SRC_LOG_LEVELS["DB"])
|
2024-01-19 17:13:09 -03:00
|
|
|
|
2024-06-20 04:53:23 -07:00
|
|
|
|
2024-05-21 22:05:16 +01:00
|
|
|
class JSONField(TextField):
|
|
|
|
|
def db_value(self, value):
|
|
|
|
|
return json.dumps(value)
|
|
|
|
|
|
|
|
|
|
def python_value(self, value):
|
|
|
|
|
if value is not None:
|
|
|
|
|
return json.loads(value)
|
|
|
|
|
|
2024-06-20 04:53:23 -07:00
|
|
|
|
2024-03-02 00:19:24 -08:00
|
|
|
# Check if the file exists
|
|
|
|
|
if os.path.exists(f"{DATA_DIR}/ollama.db"):
|
|
|
|
|
# Rename the file
|
|
|
|
|
os.rename(f"{DATA_DIR}/ollama.db", f"{DATA_DIR}/webui.db")
|
2024-04-24 18:10:18 +01:00
|
|
|
log.info("Database migrated from Ollama-WebUI successfully.")
|
2024-03-02 00:19:24 -08:00
|
|
|
else:
|
|
|
|
|
pass
|
|
|
|
|
|
2024-06-16 15:25:48 -07:00
|
|
|
|
2024-06-20 04:53:23 -07:00
|
|
|
# The `register_connection` function encapsulates the logic for setting up
|
|
|
|
|
# the database connection based on the connection string, while `connect`
|
|
|
|
|
# is a Peewee-specific method to manage the connection state and avoid errors
|
2024-06-16 15:25:48 -07:00
|
|
|
# when a connection is already open.
|
|
|
|
|
try:
|
|
|
|
|
DB = register_connection(DATABASE_URL)
|
|
|
|
|
log.info(f"Connected to a {DB.__class__.__name__} database.")
|
|
|
|
|
except Exception as e:
|
|
|
|
|
log.error(f"Failed to initialize the database connection: {e}")
|
|
|
|
|
raise
|
|
|
|
|
|
2024-05-20 11:12:03 +08:00
|
|
|
router = Router(
|
2024-05-26 01:16:58 -07:00
|
|
|
DB,
|
|
|
|
|
migrate_dir=BACKEND_DIR / "apps" / "webui" / "internal" / "migrations",
|
|
|
|
|
logger=log,
|
2024-05-20 11:12:03 +08:00
|
|
|
)
|
2024-04-01 11:12:46 +01:00
|
|
|
router.run()
|
2024-06-16 15:25:48 -07:00
|
|
|
try:
|
2024-06-17 16:44:20 -07:00
|
|
|
DB.connect(reuse_if_open=True)
|
2024-06-16 15:25:48 -07:00
|
|
|
except OperationalError as e:
|
|
|
|
|
log.info(f"Failed to connect to database again due to: {e}")
|
2024-06-20 04:53:23 -07:00
|
|
|
pass
|