mirror of
https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot.git
synced 2026-02-27 14:51:19 +00:00
- Add pyproject.toml with uv and ruff configuration - Pin Python version to 3.13 via .python-version - Add Makefile commands: lint, format, fix - Apply ruff formatting to entire codebase - Remove unused imports (base64 in yookassa/simple_subscription) - Update .gitignore for new config files
123 lines
3.4 KiB
Python
123 lines
3.4 KiB
Python
import logging
|
|
from datetime import datetime
|
|
|
|
from sqlalchemy import select
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.config import settings
|
|
from app.database.models import MulenPayPayment
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
async def create_mulenpay_payment(
|
|
db: AsyncSession,
|
|
*,
|
|
user_id: int,
|
|
amount_kopeks: int,
|
|
uuid: str,
|
|
description: str,
|
|
payment_url: str | None,
|
|
mulen_payment_id: int | None,
|
|
currency: str,
|
|
status: str,
|
|
metadata: dict | None = None,
|
|
) -> MulenPayPayment:
|
|
payment = MulenPayPayment(
|
|
user_id=user_id,
|
|
amount_kopeks=amount_kopeks,
|
|
uuid=uuid,
|
|
description=description,
|
|
payment_url=payment_url,
|
|
mulen_payment_id=mulen_payment_id,
|
|
currency=currency,
|
|
status=status,
|
|
metadata_json=metadata or {},
|
|
)
|
|
|
|
db.add(payment)
|
|
await db.commit()
|
|
await db.refresh(payment)
|
|
|
|
logger.info(
|
|
'Создан %s платеж #%s (uuid=%s) на сумму %s копеек для пользователя %s',
|
|
settings.get_mulenpay_display_name(),
|
|
payment.mulen_payment_id,
|
|
uuid,
|
|
amount_kopeks,
|
|
user_id,
|
|
)
|
|
|
|
return payment
|
|
|
|
|
|
async def get_mulenpay_payment_by_local_id(db: AsyncSession, payment_id: int) -> MulenPayPayment | None:
|
|
result = await db.execute(select(MulenPayPayment).where(MulenPayPayment.id == payment_id))
|
|
return result.scalar_one_or_none()
|
|
|
|
|
|
async def get_mulenpay_payment_by_uuid(db: AsyncSession, uuid: str) -> MulenPayPayment | None:
|
|
result = await db.execute(select(MulenPayPayment).where(MulenPayPayment.uuid == uuid))
|
|
return result.scalar_one_or_none()
|
|
|
|
|
|
async def get_mulenpay_payment_by_mulen_id(db: AsyncSession, mulen_payment_id: int) -> MulenPayPayment | None:
|
|
result = await db.execute(select(MulenPayPayment).where(MulenPayPayment.mulen_payment_id == mulen_payment_id))
|
|
return result.scalar_one_or_none()
|
|
|
|
|
|
async def update_mulenpay_payment_status(
|
|
db: AsyncSession,
|
|
*,
|
|
payment: MulenPayPayment,
|
|
status: str,
|
|
is_paid: bool | None = None,
|
|
paid_at: datetime | None = None,
|
|
callback_payload: dict | None = None,
|
|
mulen_payment_id: int | None = None,
|
|
metadata: dict | None = None,
|
|
) -> MulenPayPayment:
|
|
payment.status = status
|
|
if is_paid is not None:
|
|
payment.is_paid = is_paid
|
|
if paid_at:
|
|
payment.paid_at = paid_at
|
|
if callback_payload is not None:
|
|
payment.callback_payload = callback_payload
|
|
if mulen_payment_id is not None and not payment.mulen_payment_id:
|
|
payment.mulen_payment_id = mulen_payment_id
|
|
if metadata is not None:
|
|
payment.metadata_json = metadata
|
|
|
|
payment.updated_at = datetime.utcnow()
|
|
await db.commit()
|
|
await db.refresh(payment)
|
|
return payment
|
|
|
|
|
|
async def update_mulenpay_payment_metadata(
|
|
db: AsyncSession,
|
|
*,
|
|
payment: MulenPayPayment,
|
|
metadata: dict,
|
|
) -> MulenPayPayment:
|
|
payment.metadata_json = metadata
|
|
payment.updated_at = datetime.utcnow()
|
|
await db.commit()
|
|
await db.refresh(payment)
|
|
return payment
|
|
|
|
|
|
async def link_mulenpay_payment_to_transaction(
|
|
db: AsyncSession,
|
|
*,
|
|
payment: MulenPayPayment,
|
|
transaction_id: int,
|
|
) -> MulenPayPayment:
|
|
payment.transaction_id = transaction_id
|
|
payment.updated_at = datetime.utcnow()
|
|
await db.commit()
|
|
await db.refresh(payment)
|
|
return payment
|