mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
* 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>
89 lines
2.2 KiB
Python
89 lines
2.2 KiB
Python
from http import HTTPStatus
|
|
from typing import Optional
|
|
|
|
from fastapi import (
|
|
APIRouter,
|
|
Body,
|
|
Depends,
|
|
HTTPException,
|
|
)
|
|
|
|
from lnbits.core.models import (
|
|
CreateWallet,
|
|
KeyType,
|
|
Wallet,
|
|
)
|
|
from lnbits.decorators import (
|
|
WalletTypeInfo,
|
|
require_admin_key,
|
|
require_invoice_key,
|
|
)
|
|
|
|
from ..crud import (
|
|
create_wallet,
|
|
delete_wallet,
|
|
get_wallet,
|
|
update_wallet,
|
|
)
|
|
|
|
wallet_router = APIRouter(prefix="/api/v1/wallet", tags=["Wallet"])
|
|
|
|
|
|
@wallet_router.get("")
|
|
async def api_wallet(key_info: WalletTypeInfo = Depends(require_invoice_key)):
|
|
res = {
|
|
"name": key_info.wallet.name,
|
|
"balance": key_info.wallet.balance_msat,
|
|
}
|
|
if key_info.key_type == KeyType.admin:
|
|
res["id"] = key_info.wallet.id
|
|
return res
|
|
|
|
|
|
@wallet_router.put("/{new_name}")
|
|
async def api_update_wallet_name(
|
|
new_name: str, key_info: WalletTypeInfo = Depends(require_admin_key)
|
|
):
|
|
wallet = await get_wallet(key_info.wallet.id)
|
|
if not wallet:
|
|
raise HTTPException(status_code=HTTPStatus.NOT_FOUND, detail="Wallet not found")
|
|
wallet.name = new_name
|
|
await update_wallet(wallet)
|
|
return {
|
|
"id": wallet.id,
|
|
"name": wallet.name,
|
|
"balance": wallet.balance_msat,
|
|
}
|
|
|
|
|
|
@wallet_router.patch("")
|
|
async def api_update_wallet(
|
|
name: Optional[str] = Body(None),
|
|
currency: Optional[str] = Body(None),
|
|
key_info: WalletTypeInfo = Depends(require_admin_key),
|
|
) -> Wallet:
|
|
wallet = await get_wallet(key_info.wallet.id)
|
|
if not wallet:
|
|
raise HTTPException(status_code=HTTPStatus.NOT_FOUND, detail="Wallet not found")
|
|
wallet.name = name or wallet.name
|
|
wallet.currency = currency if currency is not None else wallet.currency
|
|
await update_wallet(wallet)
|
|
return wallet
|
|
|
|
|
|
@wallet_router.delete("")
|
|
async def api_delete_wallet(
|
|
wallet: WalletTypeInfo = Depends(require_admin_key),
|
|
) -> None:
|
|
await delete_wallet(
|
|
user_id=wallet.wallet.user,
|
|
wallet_id=wallet.wallet.id,
|
|
)
|
|
|
|
|
|
@wallet_router.post("")
|
|
async def api_create_wallet(
|
|
data: CreateWallet,
|
|
key_info: WalletTypeInfo = Depends(require_admin_key),
|
|
) -> Wallet:
|
|
return await create_wallet(user_id=key_info.wallet.user, wallet_name=data.name)
|