2024-05-21 21:05:16 +00:00
|
|
|
import json
|
|
|
|
|
2023-12-26 05:44:28 +00:00
|
|
|
from peewee import *
|
2024-04-01 10:12:46 +00:00
|
|
|
from peewee_migrate import Router
|
2024-04-24 17:10:18 +00:00
|
|
|
from playhouse.db_url import connect
|
2024-05-20 03:12:03 +00:00
|
|
|
from config import SRC_LOG_LEVELS, DATA_DIR, DATABASE_URL, BACKEND_DIR
|
2024-03-02 08:19:24 +00:00
|
|
|
import os
|
2024-03-20 23:11:36 +00:00
|
|
|
import logging
|
2023-12-26 05:44:28 +00:00
|
|
|
|
2024-03-20 23:11:36 +00:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
log.setLevel(SRC_LOG_LEVELS["DB"])
|
2024-01-19 20:13:09 +00:00
|
|
|
|
2024-05-21 21:05:16 +00: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-03-02 08:19:24 +00: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 17:10:18 +00:00
|
|
|
log.info("Database migrated from Ollama-WebUI successfully.")
|
2024-03-02 08:19:24 +00:00
|
|
|
else:
|
|
|
|
pass
|
|
|
|
|
2024-04-24 17:10:18 +00:00
|
|
|
DB = connect(DATABASE_URL)
|
|
|
|
log.info(f"Connected to a {DB.__class__.__name__} database.")
|
2024-05-20 03:12:03 +00:00
|
|
|
router = Router(
|
2024-05-26 08:16:58 +00:00
|
|
|
DB,
|
|
|
|
migrate_dir=BACKEND_DIR / "apps" / "webui" / "internal" / "migrations",
|
|
|
|
logger=log,
|
2024-05-20 03:12:03 +00:00
|
|
|
)
|
2024-04-01 10:12:46 +00:00
|
|
|
router.run()
|
|
|
|
DB.connect(reuse_if_open=True)
|