mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 09:54:21 +01:00
9a16dfa960
show a summary of some settings on startup when running __main__.py
84 lines
2.9 KiB
Python
84 lines
2.9 KiB
Python
import warnings
|
|
import click
|
|
import importlib
|
|
import re
|
|
import os
|
|
import sqlite3
|
|
|
|
from .core import migrations as core_migrations
|
|
from .db import open_db, open_ext_db
|
|
from .helpers import get_valid_extensions, get_css_vendored, get_js_vendored, url_for_vendored
|
|
from .settings import LNBITS_PATH
|
|
|
|
|
|
@click.command("migrate")
|
|
def db_migrate():
|
|
migrate_databases()
|
|
|
|
|
|
@click.command("assets")
|
|
def handle_assets():
|
|
transpile_scss()
|
|
bundle_vendored()
|
|
|
|
|
|
def transpile_scss():
|
|
with warnings.catch_warnings():
|
|
warnings.simplefilter("ignore")
|
|
from scss.compiler import compile_string # type: ignore
|
|
|
|
with open(os.path.join(LNBITS_PATH, "static/scss/base.scss")) as scss:
|
|
with open(os.path.join(LNBITS_PATH, "static/css/base.css"), "w") as css:
|
|
css.write(compile_string(scss.read()))
|
|
|
|
|
|
def bundle_vendored():
|
|
for getfiles, outputpath in [
|
|
(get_js_vendored, os.path.join(LNBITS_PATH, "static/bundle.js")),
|
|
(get_css_vendored, os.path.join(LNBITS_PATH, "static/bundle.css")),
|
|
]:
|
|
output = ""
|
|
for path in getfiles():
|
|
with open(path) as f:
|
|
output += "/* " + url_for_vendored(path) + " */\n" + f.read() + ";\n"
|
|
with open(outputpath, "w") as f:
|
|
f.write(output)
|
|
|
|
|
|
def migrate_databases():
|
|
"""Creates the necessary databases if they don't exist already; or migrates them."""
|
|
|
|
with open_db() as core_db:
|
|
try:
|
|
rows = core_db.fetchall("SELECT * FROM dbversions")
|
|
except sqlite3.OperationalError:
|
|
# migration 3 wasn't ran
|
|
core_migrations.m000_create_migrations_table(core_db)
|
|
rows = core_db.fetchall("SELECT * FROM dbversions")
|
|
|
|
current_versions = {row["db"]: row["version"] for row in rows}
|
|
matcher = re.compile(r"^m(\d\d\d)_")
|
|
|
|
def run_migration(db, migrations_module):
|
|
db_name = migrations_module.__name__.split(".")[-2]
|
|
for key, run_migration in migrations_module.__dict__.items():
|
|
match = match = matcher.match(key)
|
|
if match:
|
|
version = int(match.group(1))
|
|
if version > current_versions.get(db_name, 0):
|
|
print(f"running migration {db_name}.{version}")
|
|
run_migration(db)
|
|
core_db.execute(
|
|
"INSERT OR REPLACE INTO dbversions (db, version) VALUES (?, ?)", (db_name, version)
|
|
)
|
|
|
|
run_migration(core_db, core_migrations)
|
|
|
|
for ext in get_valid_extensions():
|
|
try:
|
|
ext_migrations = importlib.import_module(f"lnbits.extensions.{ext.code}.migrations")
|
|
with open_ext_db(ext.code) as db:
|
|
run_migration(db, ext_migrations)
|
|
except ImportError:
|
|
raise ImportError(f"Please make sure that the extension `{ext.code}` has a migrations file.")
|