* feat: add shortcuts for insert_query and update_query into `Database`
example: await db.insert("table_name", base_model)
* remove where from argument
* chore: code clean-up
* extension manager
* lnbits-qrcode components
* parse date from dict
* refactor: make `settings` a fixture
* chore: remove verbose key names
* fix: time column
* fix: cast balance to `int`
* extension toggle vue3
* vue3 @input migration
* fix: payment extra and payment hash
* fix dynamic fields and ext db migration
* remove shadow on cards in dark theme
* screwed up and made more css pushes to this branch
* attempt to make chip component in settings dynamic fields
* dynamic chips
* qrscanner
* clean init admin settings
* make get_user better
* add dbversion model
* remove update_payment_status/extra/details
* traces for value and assertion errors
* refactor services
* add PaymentFiatAmount
* return Payment on api endpoints
* rename to get_user_from_account
* refactor: just refactor (#2740)
* rc5
* Fix db cache (#2741)
* [refactor] split services.py (#2742)
* refactor: spit `core.py` (#2743)
* refactor: make QR more customizable
* fix: print.html
* fix: qrcode options
* fix: white shadow on dark theme
* fix: datetime wasnt parsed in dict_to_model
* add timezone for conversion
* only parse timestamp for sqlite, postgres does it
* log internal payment success
* fix: export wallet to phone QR
* Adding a customisable border theme, like gradient (#2746)
* fixed mobile scan btn
* fix test websocket
* fix get_payments tests
* dict_to_model skip none values
* preimage none instead of defaulting to 0000...
* fixup test real invoice tests
* fixed pheonixd for wss
* fix nodemanager test settings
* fix lnbits funding
* only insert extension when they dont exist
---------
Co-authored-by: Vlad Stan <stan.v.vlad@gmail.com>
Co-authored-by: Tiago Vasconcelos <talvasconcelos@gmail.com>
Co-authored-by: Arc <ben@arc.wales>
Co-authored-by: Arc <33088785+arcbtc@users.noreply.github.com>
138 lines
3.9 KiB
Python
138 lines
3.9 KiB
Python
from typing import Optional
|
|
|
|
from lnbits.core.db import db
|
|
from lnbits.core.extensions.models import (
|
|
InstallableExtension,
|
|
UserExtension,
|
|
)
|
|
from lnbits.db import Connection, Database
|
|
|
|
|
|
async def create_installed_extension(
|
|
ext: InstallableExtension,
|
|
conn: Optional[Connection] = None,
|
|
) -> None:
|
|
await (conn or db).insert("installed_extensions", ext)
|
|
|
|
|
|
async def update_installed_extension(
|
|
ext: InstallableExtension,
|
|
conn: Optional[Connection] = None,
|
|
) -> None:
|
|
await (conn or db).update("installed_extensions", ext)
|
|
|
|
|
|
async def update_installed_extension_state(
|
|
*, ext_id: str, active: bool, conn: Optional[Connection] = None
|
|
) -> None:
|
|
await (conn or db).execute(
|
|
"""
|
|
UPDATE installed_extensions SET active = :active WHERE id = :ext
|
|
""",
|
|
{"ext": ext_id, "active": active},
|
|
)
|
|
|
|
|
|
async def delete_installed_extension(
|
|
*, ext_id: str, conn: Optional[Connection] = None
|
|
) -> None:
|
|
await (conn or db).execute(
|
|
"""
|
|
DELETE from installed_extensions WHERE id = :ext
|
|
""",
|
|
{"ext": ext_id},
|
|
)
|
|
|
|
|
|
async def drop_extension_db(ext_id: str, conn: Optional[Connection] = None) -> None:
|
|
row: dict = await (conn or db).fetchone(
|
|
"SELECT * FROM dbversions WHERE db = :id",
|
|
{"id": ext_id},
|
|
)
|
|
# Check that 'ext_id' is a valid extension id and not a malicious string
|
|
assert row, f"Extension '{ext_id}' db version cannot be found"
|
|
|
|
is_file_based_db = await Database.clean_ext_db_files(ext_id)
|
|
if is_file_based_db:
|
|
return
|
|
|
|
# String formatting is required, params are not accepted for 'DROP SCHEMA'.
|
|
# The `ext_id` value is verified above.
|
|
await (conn or db).execute(
|
|
f"DROP SCHEMA IF EXISTS {ext_id} CASCADE",
|
|
)
|
|
|
|
|
|
async def get_installed_extension(
|
|
ext_id: str, conn: Optional[Connection] = None
|
|
) -> Optional[InstallableExtension]:
|
|
extension = await (conn or db).fetchone(
|
|
"SELECT * FROM installed_extensions WHERE id = :id",
|
|
{"id": ext_id},
|
|
InstallableExtension,
|
|
)
|
|
return extension
|
|
|
|
|
|
async def get_installed_extensions(
|
|
active: Optional[bool] = None,
|
|
conn: Optional[Connection] = None,
|
|
) -> list[InstallableExtension]:
|
|
where = "WHERE active = :active" if active is not None else ""
|
|
values = {"active": active} if active is not None else {}
|
|
all_extensions = await (conn or db).fetchall(
|
|
f"SELECT * FROM installed_extensions {where}",
|
|
values,
|
|
model=InstallableExtension,
|
|
)
|
|
return all_extensions
|
|
|
|
|
|
async def get_user_extension(
|
|
user_id: str, extension: str, conn: Optional[Connection] = None
|
|
) -> Optional[UserExtension]:
|
|
return await (conn or db).fetchone(
|
|
"""
|
|
SELECT * FROM extensions
|
|
WHERE "user" = :user AND extension = :ext
|
|
""",
|
|
{"user": user_id, "ext": extension},
|
|
model=UserExtension,
|
|
)
|
|
|
|
|
|
async def get_user_extensions(
|
|
user_id: str, conn: Optional[Connection] = None
|
|
) -> list[UserExtension]:
|
|
return await (conn or db).fetchall(
|
|
"""SELECT * FROM extensions WHERE "user" = :user""",
|
|
{"user": user_id},
|
|
model=UserExtension,
|
|
)
|
|
|
|
|
|
async def create_user_extension(
|
|
user_extension: UserExtension, conn: Optional[Connection] = None
|
|
) -> None:
|
|
await (conn or db).insert("extensions", user_extension)
|
|
|
|
|
|
async def update_user_extension(
|
|
user_extension: UserExtension, conn: Optional[Connection] = None
|
|
) -> None:
|
|
where = """WHERE extension = :extension AND "user" = :user"""
|
|
await (conn or db).update("extensions", user_extension, where)
|
|
|
|
|
|
async def get_user_active_extensions_ids(
|
|
user_id: str, conn: Optional[Connection] = None
|
|
) -> list[str]:
|
|
exts = await (conn or db).fetchall(
|
|
"""
|
|
SELECT * FROM extensions WHERE "user" = :user AND active
|
|
""",
|
|
{"user": user_id},
|
|
UserExtension,
|
|
)
|
|
return [ext.extension for ext in exts]
|