2026-07-26 21:44:39 +02:00
|
|
|
from fastapi import APIRouter, Depends, Request, status
|
2026-07-21 10:26:25 +02:00
|
|
|
from pydantic import BaseModel
|
|
|
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
|
|
2026-07-26 21:44:39 +02:00
|
|
|
from app.api.errors import from_api_error, http_error
|
2026-07-21 10:26:25 +02:00
|
|
|
from app.auth.dependencies import get_current_user
|
|
|
|
|
from app.db.models import User
|
|
|
|
|
from app.db.session import get_session
|
|
|
|
|
from app.withdrawals.service import WithdrawalError, request_withdrawal
|
|
|
|
|
|
|
|
|
|
router = APIRouter(prefix="/withdrawals", tags=["withdrawals"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WithdrawalRequest(BaseModel):
|
|
|
|
|
external_address: str
|
|
|
|
|
amount_sats: int
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WithdrawalResponse(BaseModel):
|
|
|
|
|
txid: str
|
|
|
|
|
amount_requested_sats: int
|
|
|
|
|
amount_sent_sats: int
|
|
|
|
|
status: str
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@router.post("", response_model=WithdrawalResponse, status_code=status.HTTP_201_CREATED)
|
|
|
|
|
async def create_withdrawal(
|
|
|
|
|
body: WithdrawalRequest,
|
|
|
|
|
request: Request,
|
|
|
|
|
user: User = Depends(get_current_user),
|
|
|
|
|
session: AsyncSession = Depends(get_session),
|
|
|
|
|
) -> WithdrawalResponse:
|
|
|
|
|
listener = request.app.state.electrum_listener
|
|
|
|
|
if listener.client is None:
|
2026-07-26 21:44:39 +02:00
|
|
|
raise http_error(
|
|
|
|
|
status.HTTP_503_SERVICE_UNAVAILABLE,
|
|
|
|
|
"network_unavailable",
|
|
|
|
|
"not connected to the network, try again shortly",
|
|
|
|
|
)
|
2026-07-21 10:26:25 +02:00
|
|
|
|
|
|
|
|
async with request.app.state.user_locks.acquire(user.id):
|
|
|
|
|
try:
|
|
|
|
|
withdrawal = await request_withdrawal(
|
|
|
|
|
session, listener.client, user, body.external_address, body.amount_sats
|
|
|
|
|
)
|
|
|
|
|
except WithdrawalError as exc:
|
2026-07-26 21:44:39 +02:00
|
|
|
raise from_api_error(status.HTTP_400_BAD_REQUEST, exc) from exc
|
2026-07-21 10:26:25 +02:00
|
|
|
|
|
|
|
|
return WithdrawalResponse(
|
|
|
|
|
txid=withdrawal.txid,
|
|
|
|
|
amount_requested_sats=withdrawal.amount_requested_sats,
|
|
|
|
|
amount_sent_sats=withdrawal.amount_sent_sats,
|
|
|
|
|
status=withdrawal.status,
|
|
|
|
|
)
|