Compare commits
13
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1282322d42 | ||
|
|
ebb5e0af2a | ||
|
|
db89a8f608 | ||
|
|
29b1ace1e0 | ||
|
|
c77207405b | ||
|
|
739c13df4e | ||
|
|
531ac7ebd2 | ||
|
|
28af192e34 | ||
|
|
272cb9bcc9 | ||
|
|
b8055b4f51 | ||
|
|
f7e21b225c | ||
|
|
0e8072a36e | ||
|
|
3850f561d6 |
@@ -119,8 +119,6 @@ LNBITS_SITE_TAGLINE="Open Source Lightning Payments Platform"
|
|||||||
LNBITS_SITE_DESCRIPTION="The world's most powerful suite of bitcoin tools. Run for yourself, for others, or as part of a stack."
|
LNBITS_SITE_DESCRIPTION="The world's most powerful suite of bitcoin tools. Run for yourself, for others, or as part of a stack."
|
||||||
# Choose from bitcoin, mint, flamingo, freedom, salvador, autumn, monochrome, classic, cyber
|
# Choose from bitcoin, mint, flamingo, freedom, salvador, autumn, monochrome, classic, cyber
|
||||||
LNBITS_THEME_OPTIONS="classic, bitcoin, flamingo, freedom, mint, autumn, monochrome, salvador, cyber"
|
LNBITS_THEME_OPTIONS="classic, bitcoin, flamingo, freedom, mint, autumn, monochrome, salvador, cyber"
|
||||||
# Toggle the background styling on burger menus / drawers
|
|
||||||
# LNBITS_DEFAULT_BURGER_MENU_BACKGROUND=true
|
|
||||||
# LNBITS_CUSTOM_LOGO="https://lnbits.com/assets/images/logo/logo.svg"
|
# LNBITS_CUSTOM_LOGO="https://lnbits.com/assets/images/logo/logo.svg"
|
||||||
|
|
||||||
######################################
|
######################################
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
import base64
|
import base64
|
||||||
import io
|
import io
|
||||||
from urllib.parse import quote
|
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
import filetype
|
|
||||||
from fastapi import UploadFile
|
from fastapi import UploadFile
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
@@ -12,48 +10,11 @@ from lnbits.core.crud.assets import create_asset, get_user_assets_count
|
|||||||
from lnbits.core.models.assets import Asset
|
from lnbits.core.models.assets import Asset
|
||||||
from lnbits.settings import settings
|
from lnbits.settings import settings
|
||||||
|
|
||||||
IMAGE_MIME_TYPE_ALIASES = {
|
|
||||||
"heic": "image/heic",
|
|
||||||
"heics": "image/heics",
|
|
||||||
"heif": "image/heif",
|
|
||||||
"image/jpg": "image/jpeg",
|
|
||||||
"jpeg": "image/jpeg",
|
|
||||||
"jpg": "image/jpeg",
|
|
||||||
"png": "image/png",
|
|
||||||
}
|
|
||||||
PIL_IMAGE_FORMAT_MIME_TYPES = {
|
|
||||||
"JPEG": "image/jpeg",
|
|
||||||
"PNG": "image/png",
|
|
||||||
}
|
|
||||||
INLINE_ASSET_MIME_TYPES = {
|
|
||||||
"image/heic",
|
|
||||||
"image/heics",
|
|
||||||
"image/heif",
|
|
||||||
"image/jpeg",
|
|
||||||
"image/png",
|
|
||||||
}
|
|
||||||
ASSET_SECURITY_HEADERS = {
|
|
||||||
"X-Content-Type-Options": "nosniff",
|
|
||||||
"Content-Security-Policy": (
|
|
||||||
"sandbox; default-src 'none'; script-src 'none'; "
|
|
||||||
"object-src 'none'; base-uri 'none'"
|
|
||||||
),
|
|
||||||
}
|
|
||||||
THUMBNAIL_FORMAT_MIME_TYPES = {
|
|
||||||
"jpg": "image/jpeg",
|
|
||||||
"jpeg": "image/jpeg",
|
|
||||||
"png": "image/png",
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
async def create_user_asset(user_id: str, file: UploadFile, is_public: bool) -> Asset:
|
async def create_user_asset(user_id: str, file: UploadFile, is_public: bool) -> Asset:
|
||||||
if not file.content_type:
|
if not file.content_type:
|
||||||
raise ValueError("File must have a content type.")
|
raise ValueError("File must have a content type.")
|
||||||
|
if file.content_type.lower() not in settings.lnbits_assets_allowed_mime_types:
|
||||||
content_type = normalize_asset_mime_type(file.content_type)
|
|
||||||
filename = file.filename or "unnamed"
|
|
||||||
|
|
||||||
if content_type not in allowed_asset_mime_types():
|
|
||||||
raise ValueError(f"File type '{file.content_type}' not allowed.")
|
raise ValueError(f"File type '{file.content_type}' not allowed.")
|
||||||
|
|
||||||
if not settings.is_unlimited_assets_user(user_id):
|
if not settings.is_unlimited_assets_user(user_id):
|
||||||
@@ -69,26 +30,14 @@ async def create_user_asset(user_id: str, file: UploadFile, is_public: bool) ->
|
|||||||
f"File limit of {settings.lnbits_max_asset_size_mb}MB exceeded."
|
f"File limit of {settings.lnbits_max_asset_size_mb}MB exceeded."
|
||||||
)
|
)
|
||||||
|
|
||||||
stored_mime_type = detect_image_mime_type(contents)
|
|
||||||
if stored_mime_type != content_type:
|
|
||||||
logger.warning(
|
|
||||||
"Image MIME type mismatch: declared={}, detected={}",
|
|
||||||
content_type,
|
|
||||||
stored_mime_type,
|
|
||||||
)
|
|
||||||
raise ValueError(
|
|
||||||
"Image file content does not match declared file type. "
|
|
||||||
f"Declared: '{content_type}', detected: '{stored_mime_type}'."
|
|
||||||
)
|
|
||||||
|
|
||||||
thumb_buffer = thumbnail_from_bytes(contents)
|
thumb_buffer = thumbnail_from_bytes(contents)
|
||||||
|
|
||||||
asset = Asset(
|
asset = Asset(
|
||||||
id=uuid4().hex,
|
id=uuid4().hex,
|
||||||
user_id=user_id,
|
user_id=user_id,
|
||||||
mime_type=stored_mime_type,
|
mime_type=file.content_type,
|
||||||
is_public=is_public,
|
is_public=is_public,
|
||||||
name=filename,
|
name=file.filename or "unnamed",
|
||||||
size_bytes=len(contents),
|
size_bytes=len(contents),
|
||||||
thumbnail_base64=(
|
thumbnail_base64=(
|
||||||
base64.b64encode(thumb_buffer.getvalue()).decode("utf-8")
|
base64.b64encode(thumb_buffer.getvalue()).decode("utf-8")
|
||||||
@@ -102,79 +51,6 @@ async def create_user_asset(user_id: str, file: UploadFile, is_public: bool) ->
|
|||||||
return asset
|
return asset
|
||||||
|
|
||||||
|
|
||||||
def normalize_asset_mime_type(content_type: str) -> str:
|
|
||||||
content_type = content_type.split(";", 1)[0].strip().lower()
|
|
||||||
return IMAGE_MIME_TYPE_ALIASES.get(content_type, content_type)
|
|
||||||
|
|
||||||
|
|
||||||
def normalize_media_type(media_type: str) -> str:
|
|
||||||
return media_type.split(";", 1)[0].strip().lower() or "application/octet-stream"
|
|
||||||
|
|
||||||
|
|
||||||
def thumbnail_media_type() -> str:
|
|
||||||
thumbnail_format = (settings.lnbits_asset_thumbnail_format or "png").strip().lower()
|
|
||||||
return THUMBNAIL_FORMAT_MIME_TYPES.get(thumbnail_format, "application/octet-stream")
|
|
||||||
|
|
||||||
|
|
||||||
def content_disposition(disposition: str, filename: str) -> str:
|
|
||||||
safe_filename = filename or "unnamed"
|
|
||||||
quoted_filename = quote(safe_filename, safe="")
|
|
||||||
if quoted_filename == safe_filename:
|
|
||||||
return f'{disposition}; filename="{safe_filename}"'
|
|
||||||
return f"{disposition}; filename*=utf-8''{quoted_filename}"
|
|
||||||
|
|
||||||
|
|
||||||
def allowed_asset_mime_types() -> set[str]:
|
|
||||||
return {
|
|
||||||
mime_type
|
|
||||||
for mime_type in (
|
|
||||||
normalize_asset_mime_type(mime_type)
|
|
||||||
for mime_type in settings.lnbits_assets_allowed_mime_types
|
|
||||||
)
|
|
||||||
if mime_type.startswith("image/")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
def detect_image_mime_type(contents: bytes) -> str:
|
|
||||||
kind = filetype.guess(contents)
|
|
||||||
mime_type = normalize_asset_mime_type(kind.mime) if kind else None
|
|
||||||
|
|
||||||
if mime_type and mime_type in PIL_IMAGE_FORMAT_MIME_TYPES.values():
|
|
||||||
verify_pil_image(contents, mime_type)
|
|
||||||
return mime_type
|
|
||||||
|
|
||||||
if mime_type and mime_type.startswith("image/"):
|
|
||||||
return mime_type
|
|
||||||
|
|
||||||
try:
|
|
||||||
with Image.open(io.BytesIO(contents)) as image:
|
|
||||||
image.verify()
|
|
||||||
mime_type = PIL_IMAGE_FORMAT_MIME_TYPES.get(image.format or "")
|
|
||||||
except Exception as exc:
|
|
||||||
raise ValueError(
|
|
||||||
"Image file content does not match declared file type."
|
|
||||||
) from exc
|
|
||||||
|
|
||||||
if not mime_type:
|
|
||||||
raise ValueError("Image file content does not match declared file type.")
|
|
||||||
|
|
||||||
return mime_type
|
|
||||||
|
|
||||||
|
|
||||||
def verify_pil_image(contents: bytes, mime_type: str) -> None:
|
|
||||||
try:
|
|
||||||
with Image.open(io.BytesIO(contents)) as image:
|
|
||||||
image.verify()
|
|
||||||
detected_mime_type = PIL_IMAGE_FORMAT_MIME_TYPES.get(image.format or "")
|
|
||||||
except Exception as exc:
|
|
||||||
raise ValueError(
|
|
||||||
"Image file content does not match declared file type."
|
|
||||||
) from exc
|
|
||||||
|
|
||||||
if detected_mime_type != mime_type:
|
|
||||||
raise ValueError("Image file content does not match declared file type.")
|
|
||||||
|
|
||||||
|
|
||||||
def thumbnail_from_bytes(contents: bytes) -> io.BytesIO | None:
|
def thumbnail_from_bytes(contents: bytes) -> io.BytesIO | None:
|
||||||
try:
|
try:
|
||||||
image = Image.open(io.BytesIO(contents))
|
image = Image.open(io.BytesIO(contents))
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import hashlib
|
import hashlib
|
||||||
import hmac
|
import hmac
|
||||||
import json
|
import json
|
||||||
|
import math
|
||||||
import time
|
import time
|
||||||
from base64 import b64encode
|
from base64 import b64encode
|
||||||
|
|
||||||
@@ -219,27 +220,35 @@ def check_revolut_signature(
|
|||||||
logger.warning("Revolut webhook signing secret is not set.")
|
logger.warning("Revolut webhook signing secret is not set.")
|
||||||
raise ValueError("Revolut webhook cannot be verified.")
|
raise ValueError("Revolut webhook cannot be verified.")
|
||||||
|
|
||||||
try:
|
timestamp = int(timestamp_header)
|
||||||
timestamp = int(timestamp_header)
|
|
||||||
except ValueError as exc:
|
|
||||||
logger.warning("Invalid Revolut timestamp.")
|
|
||||||
raise ValueError("Invalid Revolut timestamp.") from exc
|
|
||||||
|
|
||||||
timestamp_seconds = timestamp / 1000 if timestamp > 9999999999 else timestamp
|
timestamp_seconds = timestamp / 1000 if timestamp > 9999999999 else timestamp
|
||||||
|
if not math.isfinite(timestamp_seconds):
|
||||||
|
logger.warning("Invalid Revolut timestamp.")
|
||||||
|
raise ValueError("Invalid Revolut timestamp.")
|
||||||
|
|
||||||
if abs(time.time() - timestamp_seconds) > tolerance_seconds:
|
if abs(time.time() - timestamp_seconds) > tolerance_seconds:
|
||||||
logger.warning("Timestamp outside tolerance.")
|
logger.warning("Timestamp outside tolerance.")
|
||||||
raise ValueError("Timestamp outside tolerance." f"Timestamp: {timestamp}")
|
raise ValueError("Timestamp outside tolerance." f"Timestamp: {timestamp}")
|
||||||
|
|
||||||
signed_payload = b"v1." + timestamp_header.encode() + b"." + payload
|
candidates = [
|
||||||
digest = hmac.new(
|
b"v1." + timestamp_header.encode() + b"." + payload,
|
||||||
key=secret.encode(), msg=signed_payload, digestmod=hashlib.sha256
|
payload,
|
||||||
).hexdigest()
|
f"{timestamp_header}.{payload.decode()}".encode(),
|
||||||
expected_signature = f"v1={digest}"
|
timestamp_header.encode() + b"." + payload,
|
||||||
|
]
|
||||||
|
signatures = []
|
||||||
|
for candidate in candidates:
|
||||||
|
digest = hmac.new(
|
||||||
|
key=secret.encode(), msg=candidate, digestmod=hashlib.sha256
|
||||||
|
).digest()
|
||||||
|
signatures.extend(
|
||||||
|
[digest.hex(), f"v1={digest.hex()}", b64encode(digest).decode()]
|
||||||
|
)
|
||||||
|
|
||||||
provided_signatures = [sig.strip() for sig in sig_header.split(",") if sig.strip()]
|
provided_signatures = [sig.strip() for sig in sig_header.split(",") if sig.strip()]
|
||||||
if not any(
|
if not any(
|
||||||
hmac.compare_digest(expected_signature, provided)
|
hmac.compare_digest(expected, provided)
|
||||||
|
for expected in signatures
|
||||||
for provided in provided_signatures
|
for provided in provided_signatures
|
||||||
):
|
):
|
||||||
logger.warning("Revolut signature verification failed.")
|
logger.warning("Revolut signature verification failed.")
|
||||||
|
|||||||
@@ -16,14 +16,7 @@ from lnbits.core.crud.assets import (
|
|||||||
from lnbits.core.models.assets import AssetFilters, AssetInfo, AssetUpdate
|
from lnbits.core.models.assets import AssetFilters, AssetInfo, AssetUpdate
|
||||||
from lnbits.core.models.misc import SimpleStatus
|
from lnbits.core.models.misc import SimpleStatus
|
||||||
from lnbits.core.models.users import AccountId
|
from lnbits.core.models.users import AccountId
|
||||||
from lnbits.core.services.assets import (
|
from lnbits.core.services.assets import create_user_asset
|
||||||
ASSET_SECURITY_HEADERS,
|
|
||||||
INLINE_ASSET_MIME_TYPES,
|
|
||||||
content_disposition,
|
|
||||||
create_user_asset,
|
|
||||||
normalize_media_type,
|
|
||||||
thumbnail_media_type,
|
|
||||||
)
|
|
||||||
from lnbits.db import Filters, Page
|
from lnbits.db import Filters, Page
|
||||||
from lnbits.decorators import (
|
from lnbits.decorators import (
|
||||||
check_account_id_exists,
|
check_account_id_exists,
|
||||||
@@ -82,7 +75,11 @@ async def api_get_asset_data(
|
|||||||
if not asset:
|
if not asset:
|
||||||
raise HTTPException(HTTPStatus.NOT_FOUND, "Asset not found.")
|
raise HTTPException(HTTPStatus.NOT_FOUND, "Asset not found.")
|
||||||
|
|
||||||
return asset_response(asset.data, asset.mime_type, asset.name)
|
return Response(
|
||||||
|
content=asset.data,
|
||||||
|
media_type=asset.mime_type,
|
||||||
|
headers={"Content-Disposition": f'inline; filename="{asset.name}"'},
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@asset_router.get(
|
@asset_router.get(
|
||||||
@@ -104,14 +101,14 @@ async def api_get_asset_thumbnail(
|
|||||||
if not asset_info:
|
if not asset_info:
|
||||||
raise HTTPException(HTTPStatus.NOT_FOUND, "Asset not found.")
|
raise HTTPException(HTTPStatus.NOT_FOUND, "Asset not found.")
|
||||||
|
|
||||||
return asset_response(
|
return Response(
|
||||||
content=(
|
content=(
|
||||||
base64.b64decode(asset_info.thumbnail_base64)
|
base64.b64decode(asset_info.thumbnail_base64)
|
||||||
if asset_info.thumbnail_base64
|
if asset_info.thumbnail_base64
|
||||||
else b""
|
else b""
|
||||||
),
|
),
|
||||||
media_type=thumbnail_media_type(),
|
media_type=asset_info.mime_type,
|
||||||
filename=asset_info.name,
|
headers={"Content-Disposition": f'inline; filename="{asset_info.name}"'},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -175,16 +172,3 @@ async def api_delete_asset(
|
|||||||
|
|
||||||
await delete_user_asset(account_id.id, asset_id)
|
await delete_user_asset(account_id.id, asset_id)
|
||||||
return SimpleStatus(success=True, message="Asset deleted successfully.")
|
return SimpleStatus(success=True, message="Asset deleted successfully.")
|
||||||
|
|
||||||
|
|
||||||
def asset_response(content: bytes, media_type: str, filename: str) -> Response:
|
|
||||||
media_type = normalize_media_type(media_type)
|
|
||||||
disposition = "inline" if media_type in INLINE_ASSET_MIME_TYPES else "attachment"
|
|
||||||
return Response(
|
|
||||||
content=content,
|
|
||||||
media_type=media_type,
|
|
||||||
headers={
|
|
||||||
**ASSET_SECURITY_HEADERS,
|
|
||||||
"Content-Disposition": content_disposition(disposition, filename),
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -348,11 +348,7 @@ async def handle_oauth_token(request: Request, provider: str) -> RedirectRespons
|
|||||||
userinfo = await provider_sso.verify_and_process(request)
|
userinfo = await provider_sso.verify_and_process(request)
|
||||||
if not userinfo:
|
if not userinfo:
|
||||||
raise HTTPException(HTTPStatus.UNAUTHORIZED, "Invalid user info.")
|
raise HTTPException(HTTPStatus.UNAUTHORIZED, "Invalid user info.")
|
||||||
if provider_sso.state is None or provider_sso.state == "null":
|
user_id = decrypt_internal_message(provider_sso.state)
|
||||||
user_id = None
|
|
||||||
else:
|
|
||||||
user_id = decrypt_internal_message(provider_sso.state)
|
|
||||||
|
|
||||||
request.session.pop("user", None)
|
request.session.pop("user", None)
|
||||||
return await _handle_sso_login(userinfo, user_id)
|
return await _handle_sso_login(userinfo, user_id)
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,7 @@ from lnbits.core.services.fiat_providers import (
|
|||||||
check_stripe_signature,
|
check_stripe_signature,
|
||||||
verify_paypal_webhook,
|
verify_paypal_webhook,
|
||||||
)
|
)
|
||||||
from lnbits.core.services.payments import (
|
from lnbits.core.services.payments import create_fiat_invoice
|
||||||
create_fiat_invoice,
|
|
||||||
create_wallet_invoice,
|
|
||||||
service_fee_fiat,
|
|
||||||
)
|
|
||||||
from lnbits.db import Filter, Filters
|
from lnbits.db import Filter, Filters
|
||||||
from lnbits.fiat import get_fiat_provider
|
from lnbits.fiat import get_fiat_provider
|
||||||
from lnbits.fiat.base import FiatSubscriptionPaymentOptions
|
from lnbits.fiat.base import FiatSubscriptionPaymentOptions
|
||||||
@@ -359,7 +355,6 @@ async def handle_revolut_event(event: dict):
|
|||||||
payment = await get_standalone_payment(f"fiat_revolut_order_{order_id}")
|
payment = await get_standalone_payment(f"fiat_revolut_order_{order_id}")
|
||||||
if not payment:
|
if not payment:
|
||||||
logger.warning(f"No payment found for Revolut order: '{order_id}'.")
|
logger.warning(f"No payment found for Revolut order: '{order_id}'.")
|
||||||
await _handle_revolut_subscription_order_paid(order_id)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
await check_fiat_status(payment)
|
await check_fiat_status(payment)
|
||||||
@@ -382,37 +377,16 @@ async def handle_revolut_event(event: dict):
|
|||||||
|
|
||||||
async def _handle_revolut_subscription_initiated(event: dict):
|
async def _handle_revolut_subscription_initiated(event: dict):
|
||||||
subscription_id = event.get("subscription_id")
|
subscription_id = event.get("subscription_id")
|
||||||
if not subscription_id:
|
|
||||||
subscription_id = event.get("id")
|
|
||||||
|
|
||||||
if not subscription_id:
|
if not subscription_id:
|
||||||
logger.warning("Revolut subscription event missing subscription_id.")
|
logger.warning("Revolut subscription event missing subscription_id.")
|
||||||
return
|
return
|
||||||
|
|
||||||
fiat_provider = await _get_revolut_provider()
|
|
||||||
if not fiat_provider:
|
|
||||||
return
|
|
||||||
|
|
||||||
subscription = await fiat_provider.get_subscription(subscription_id)
|
|
||||||
await _handle_revolut_subscription(subscription, fiat_provider)
|
|
||||||
|
|
||||||
|
|
||||||
async def _get_revolut_provider() -> RevolutWallet | None:
|
|
||||||
fiat_provider = await get_fiat_provider("revolut")
|
fiat_provider = await get_fiat_provider("revolut")
|
||||||
if not isinstance(fiat_provider, RevolutWallet):
|
if not isinstance(fiat_provider, RevolutWallet):
|
||||||
logger.warning("Revolut fiat provider is not configured.")
|
logger.warning("Revolut fiat provider is not configured.")
|
||||||
return None
|
|
||||||
return fiat_provider
|
|
||||||
|
|
||||||
|
|
||||||
async def _handle_revolut_subscription(
|
|
||||||
subscription: dict, fiat_provider: RevolutWallet
|
|
||||||
):
|
|
||||||
subscription_id = subscription.get("id")
|
|
||||||
if not subscription_id:
|
|
||||||
logger.warning("Revolut subscription missing id.")
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
subscription = await fiat_provider.get_subscription(subscription_id)
|
||||||
reference = fiat_provider.deserialize_subscription_reference(
|
reference = fiat_provider.deserialize_subscription_reference(
|
||||||
subscription.get("external_reference")
|
subscription.get("external_reference")
|
||||||
)
|
)
|
||||||
@@ -455,74 +429,19 @@ async def _handle_revolut_subscription(
|
|||||||
"payment_request": order.get("checkout_url") or "",
|
"payment_request": order.get("checkout_url") or "",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
lnbits_payment = await _create_revolut_subscription_payment(
|
lnbits_payment = await create_fiat_invoice(
|
||||||
wallet_id=reference.wallet_id,
|
wallet_id=reference.wallet_id,
|
||||||
amount_minor=amount_minor,
|
invoice_data=CreateInvoice(
|
||||||
currency=currency,
|
|
||||||
memo=reference.memo or "",
|
|
||||||
extra=extra,
|
|
||||||
order_id=order_id,
|
|
||||||
payment_request=order.get("checkout_url") or "",
|
|
||||||
subscription_id=subscription_id,
|
|
||||||
)
|
|
||||||
|
|
||||||
await check_fiat_status(lnbits_payment)
|
|
||||||
|
|
||||||
|
|
||||||
async def _handle_revolut_subscription_order_paid(order_id: str):
|
|
||||||
fiat_provider = await _get_revolut_provider()
|
|
||||||
if not fiat_provider:
|
|
||||||
return
|
|
||||||
|
|
||||||
order = await fiat_provider.get_order(order_id)
|
|
||||||
if order.get("type") != "payment" or order.get("state") != "completed":
|
|
||||||
logger.warning(f"Revolut order is not a completed payment: '{order_id}'.")
|
|
||||||
return
|
|
||||||
|
|
||||||
channel_data = order.get("channel_data") or {}
|
|
||||||
subscription_id = channel_data.get("subscription_id")
|
|
||||||
if not subscription_id:
|
|
||||||
logger.warning(f"Revolut order missing subscription_id: '{order_id}'.")
|
|
||||||
return
|
|
||||||
|
|
||||||
subscription = await fiat_provider.get_subscription(subscription_id)
|
|
||||||
if subscription.get("state") != "active":
|
|
||||||
logger.warning(f"Revolut subscription is not active: '{subscription_id}'.")
|
|
||||||
return
|
|
||||||
|
|
||||||
await _handle_revolut_subscription_initiated(subscription)
|
|
||||||
|
|
||||||
|
|
||||||
async def _create_revolut_subscription_payment(
|
|
||||||
wallet_id: str,
|
|
||||||
amount_minor: int,
|
|
||||||
currency: str,
|
|
||||||
memo: str,
|
|
||||||
extra: dict,
|
|
||||||
order_id: str,
|
|
||||||
payment_request: str,
|
|
||||||
subscription_id: str,
|
|
||||||
) -> Payment:
|
|
||||||
amount = RevolutWallet.minor_units_to_amount(amount_minor, currency)
|
|
||||||
payment = await create_wallet_invoice(
|
|
||||||
wallet_id,
|
|
||||||
CreateInvoice(
|
|
||||||
unit=currency,
|
unit=currency,
|
||||||
amount=amount,
|
amount=amount_minor / 100,
|
||||||
memo=memo,
|
memo=reference.memo or "",
|
||||||
extra=extra,
|
extra=extra,
|
||||||
internal=True,
|
fiat_provider="revolut",
|
||||||
external_id=subscription_id,
|
external_id=subscription_id,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
payment.fee = -abs(service_fee_fiat(payment.msat, "revolut"))
|
|
||||||
payment.fiat_provider = "revolut"
|
await check_fiat_status(lnbits_payment)
|
||||||
payment.extra["fiat_checking_id"] = f"order_{order_id}"
|
|
||||||
payment.extra["fiat_payment_request"] = payment_request
|
|
||||||
checking_id = f"fiat_revolut_order_{order_id}"
|
|
||||||
await update_payment(payment, checking_id)
|
|
||||||
payment.checking_id = checking_id
|
|
||||||
return payment
|
|
||||||
|
|
||||||
|
|
||||||
async def _handle_square_payment_event(event: dict):
|
async def _handle_square_payment_event(event: dict):
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ from lnbits.decorators import (
|
|||||||
check_first_install,
|
check_first_install,
|
||||||
check_user_exists,
|
check_user_exists,
|
||||||
)
|
)
|
||||||
from lnbits.helpers import check_callback_url, extension_id_from_path, template_renderer
|
from lnbits.helpers import check_callback_url, template_renderer
|
||||||
from lnbits.settings import settings
|
from lnbits.settings import settings
|
||||||
|
|
||||||
from ..crud import get_user
|
from ..crud import get_user
|
||||||
@@ -198,9 +198,7 @@ admin_ui_checks = [Depends(check_admin), Depends(check_admin_ui)]
|
|||||||
async def index(
|
async def index(
|
||||||
request: Request, user: User = Depends(check_user_exists)
|
request: Request, user: User = Depends(check_user_exists)
|
||||||
) -> HTMLResponse:
|
) -> HTMLResponse:
|
||||||
return template_renderer(
|
return template_renderer().TemplateResponse(
|
||||||
extension_id=extension_id_from_path(request.url.path)
|
|
||||||
).TemplateResponse(
|
|
||||||
request,
|
request,
|
||||||
"base.html",
|
"base.html",
|
||||||
{
|
{
|
||||||
@@ -213,9 +211,7 @@ async def index(
|
|||||||
@generic_router.get("/node/public")
|
@generic_router.get("/node/public")
|
||||||
@generic_router.get("/first_install", dependencies=[Depends(check_first_install)])
|
@generic_router.get("/first_install", dependencies=[Depends(check_first_install)])
|
||||||
async def index_public(request: Request) -> HTMLResponse:
|
async def index_public(request: Request) -> HTMLResponse:
|
||||||
return template_renderer(
|
return template_renderer().TemplateResponse(request, "base.html", {"public": True})
|
||||||
extension_id=extension_id_from_path(request.url.path)
|
|
||||||
).TemplateResponse(request, "base.html", {"public": True})
|
|
||||||
|
|
||||||
|
|
||||||
@generic_router.get("/uuidv4/{hex_value}")
|
@generic_router.get("/uuidv4/{hex_value}")
|
||||||
|
|||||||
@@ -95,10 +95,6 @@ class FiatSubscriptionPaymentOptions(BaseModel):
|
|||||||
description="Unique ID that can be used to identify the subscription request."
|
description="Unique ID that can be used to identify the subscription request."
|
||||||
"If not provided, one will be generated.",
|
"If not provided, one will be generated.",
|
||||||
)
|
)
|
||||||
customer_email: str | None = Field(
|
|
||||||
default=None,
|
|
||||||
description="The customer email to use for the subscription.",
|
|
||||||
)
|
|
||||||
tag: str | None = Field(
|
tag: str | None = Field(
|
||||||
default=None,
|
default=None,
|
||||||
description="Payments created by the recurring subscription"
|
description="Payments created by the recurring subscription"
|
||||||
|
|||||||
+20
-170
@@ -2,7 +2,6 @@ import asyncio
|
|||||||
import ipaddress
|
import ipaddress
|
||||||
import json
|
import json
|
||||||
from collections.abc import AsyncGenerator
|
from collections.abc import AsyncGenerator
|
||||||
from decimal import ROUND_HALF_UP, Decimal
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
@@ -57,37 +56,6 @@ REVOLUT_WEBHOOK_EVENTS = [
|
|||||||
"SUBSCRIPTION_INITIATED",
|
"SUBSCRIPTION_INITIATED",
|
||||||
]
|
]
|
||||||
|
|
||||||
ZERO_DECIMAL_CURRENCIES = {
|
|
||||||
"BIF",
|
|
||||||
"CLP",
|
|
||||||
"DJF",
|
|
||||||
"GNF",
|
|
||||||
"ISK",
|
|
||||||
"JPY",
|
|
||||||
"KMF",
|
|
||||||
"KRW",
|
|
||||||
"PYG",
|
|
||||||
"RWF",
|
|
||||||
"UGX",
|
|
||||||
"VND",
|
|
||||||
"VUV",
|
|
||||||
"XAF",
|
|
||||||
"XOF",
|
|
||||||
"XPF",
|
|
||||||
}
|
|
||||||
THREE_DECIMAL_CURRENCIES = {
|
|
||||||
"BHD",
|
|
||||||
"IQD",
|
|
||||||
"JOD",
|
|
||||||
"KWD",
|
|
||||||
"LYD",
|
|
||||||
"OMR",
|
|
||||||
"TND",
|
|
||||||
}
|
|
||||||
REVOLUT_CUSTOMER_LIST_LIMIT = 500
|
|
||||||
REVOLUT_CUSTOMER_LIST_MAX_PAGES = 20
|
|
||||||
REVOLUT_REQUEST_TIMEOUT = 30
|
|
||||||
|
|
||||||
|
|
||||||
class RevolutWallet(FiatProvider):
|
class RevolutWallet(FiatProvider):
|
||||||
"""https://developer.revolut.com/docs/merchant"""
|
"""https://developer.revolut.com/docs/merchant"""
|
||||||
@@ -125,11 +93,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
return FiatStatusResponse(balance=0)
|
return FiatStatusResponse(balance=0)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
r = await self.client.get(
|
r = await self.client.get("/api/orders", params={"limit": 1}, timeout=15)
|
||||||
"/api/orders",
|
|
||||||
params={"limit": 1},
|
|
||||||
timeout=REVOLUT_REQUEST_TIMEOUT,
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
_ = r.json()
|
_ = r.json()
|
||||||
return FiatStatusResponse(balance=0)
|
return FiatStatusResponse(balance=0)
|
||||||
@@ -154,7 +118,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
ok=False, error_message="Invalid Revolut options"
|
ok=False, error_message="Invalid Revolut options"
|
||||||
)
|
)
|
||||||
|
|
||||||
amount_minor = self.amount_to_minor_units(amount, currency)
|
amount_minor = int(amount * 100)
|
||||||
checkout = opts.checkout or RevolutCheckoutOptions()
|
checkout = opts.checkout or RevolutCheckoutOptions()
|
||||||
success_url = (
|
success_url = (
|
||||||
checkout.success_url
|
checkout.success_url
|
||||||
@@ -175,9 +139,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
}
|
}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
r = await self.client.post(
|
r = await self.client.post("/api/orders", json=payload)
|
||||||
"/api/orders", json=payload, timeout=REVOLUT_REQUEST_TIMEOUT
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
data = r.json()
|
data = r.json()
|
||||||
order_id = data.get("id")
|
order_id = data.get("id")
|
||||||
@@ -221,6 +183,13 @@ class RevolutWallet(FiatProvider):
|
|||||||
)
|
)
|
||||||
|
|
||||||
extra = payment_options.extra or {}
|
extra = payment_options.extra or {}
|
||||||
|
customer_id = extra.get("customer_id")
|
||||||
|
if not customer_id:
|
||||||
|
return FiatSubscriptionResponse(
|
||||||
|
ok=False,
|
||||||
|
error_message="Revolut subscriptions require extra.customer_id.",
|
||||||
|
)
|
||||||
|
|
||||||
if not payment_options.subscription_request_id:
|
if not payment_options.subscription_request_id:
|
||||||
payment_options.subscription_request_id = urlsafe_short_hash()
|
payment_options.subscription_request_id = urlsafe_short_hash()
|
||||||
|
|
||||||
@@ -233,6 +202,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
)
|
)
|
||||||
payload: dict[str, Any] = {
|
payload: dict[str, Any] = {
|
||||||
"plan_variation_id": subscription_id,
|
"plan_variation_id": subscription_id,
|
||||||
|
"customer_id": customer_id,
|
||||||
"external_reference": self._serialize_subscription_reference(reference),
|
"external_reference": self._serialize_subscription_reference(reference),
|
||||||
"setup_order_redirect_url": (
|
"setup_order_redirect_url": (
|
||||||
payment_options.success_url
|
payment_options.success_url
|
||||||
@@ -249,17 +219,8 @@ class RevolutWallet(FiatProvider):
|
|||||||
}
|
}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
customer_id, customer_error = await self._get_subscription_customer_id(
|
|
||||||
payment_options
|
|
||||||
)
|
|
||||||
if not customer_id:
|
|
||||||
return FiatSubscriptionResponse(ok=False, error_message=customer_error)
|
|
||||||
payload["customer_id"] = customer_id
|
|
||||||
r = await self.client.post(
|
r = await self.client.post(
|
||||||
"/api/subscriptions",
|
"/api/subscriptions", json=payload, headers=headers
|
||||||
json=payload,
|
|
||||||
headers=headers,
|
|
||||||
timeout=REVOLUT_REQUEST_TIMEOUT,
|
|
||||||
)
|
)
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
data = r.json()
|
data = r.json()
|
||||||
@@ -283,7 +244,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
return FiatSubscriptionResponse(
|
return FiatSubscriptionResponse(
|
||||||
ok=True,
|
ok=True,
|
||||||
checkout_session_url=checkout_url,
|
checkout_session_url=checkout_url,
|
||||||
subscription_request_id=payment_options.subscription_request_id,
|
subscription_request_id=revolut_subscription_id,
|
||||||
)
|
)
|
||||||
except json.JSONDecodeError:
|
except json.JSONDecodeError:
|
||||||
return FiatSubscriptionResponse(
|
return FiatSubscriptionResponse(
|
||||||
@@ -302,10 +263,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
**kwargs,
|
**kwargs,
|
||||||
) -> FiatSubscriptionResponse:
|
) -> FiatSubscriptionResponse:
|
||||||
try:
|
try:
|
||||||
r = await self.client.post(
|
r = await self.client.post(f"/api/subscriptions/{subscription_id}/cancel")
|
||||||
f"/api/subscriptions/{subscription_id}/cancel",
|
|
||||||
timeout=REVOLUT_REQUEST_TIMEOUT,
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
return FiatSubscriptionResponse(ok=True)
|
return FiatSubscriptionResponse(ok=True)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
@@ -346,16 +304,12 @@ class RevolutWallet(FiatProvider):
|
|||||||
return value.replace("order_", "", 1) if value.startswith("order_") else value
|
return value.replace("order_", "", 1) if value.startswith("order_") else value
|
||||||
|
|
||||||
async def get_order(self, order_id: str) -> dict[str, Any]:
|
async def get_order(self, order_id: str) -> dict[str, Any]:
|
||||||
r = await self.client.get(
|
r = await self.client.get(f"/api/orders/{order_id}")
|
||||||
f"/api/orders/{order_id}", timeout=REVOLUT_REQUEST_TIMEOUT
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
return r.json()
|
return r.json()
|
||||||
|
|
||||||
async def get_subscription(self, subscription_id: str) -> dict[str, Any]:
|
async def get_subscription(self, subscription_id: str) -> dict[str, Any]:
|
||||||
r = await self.client.get(
|
r = await self.client.get(f"/api/subscriptions/{subscription_id}")
|
||||||
f"/api/subscriptions/{subscription_id}", timeout=REVOLUT_REQUEST_TIMEOUT
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
return r.json()
|
return r.json()
|
||||||
|
|
||||||
@@ -363,60 +317,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
self, subscription_id: str, cycle_id: str
|
self, subscription_id: str, cycle_id: str
|
||||||
) -> dict[str, Any]:
|
) -> dict[str, Any]:
|
||||||
r = await self.client.get(
|
r = await self.client.get(
|
||||||
f"/api/subscriptions/{subscription_id}/cycles/{cycle_id}",
|
f"/api/subscriptions/{subscription_id}/cycles/{cycle_id}"
|
||||||
timeout=REVOLUT_REQUEST_TIMEOUT,
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
|
||||||
return r.json()
|
|
||||||
|
|
||||||
async def _get_subscription_customer_id(
|
|
||||||
self, payment_options: FiatSubscriptionPaymentOptions
|
|
||||||
) -> tuple[str | None, str | None]:
|
|
||||||
if not payment_options.customer_email:
|
|
||||||
return (
|
|
||||||
None,
|
|
||||||
"Revolut subscriptions require customer_email.",
|
|
||||||
)
|
|
||||||
|
|
||||||
customer = await self._get_customer_by_email(payment_options.customer_email)
|
|
||||||
customer_id = customer.get("id") if customer else None
|
|
||||||
if customer_id:
|
|
||||||
return customer_id, None
|
|
||||||
|
|
||||||
customer = await self._create_customer(payment_options.customer_email)
|
|
||||||
customer_id = customer.get("id")
|
|
||||||
if not customer_id:
|
|
||||||
return None, "Server error: missing customer id"
|
|
||||||
return customer_id, None
|
|
||||||
|
|
||||||
async def _get_customer_by_email(self, email: str) -> dict[str, Any] | None:
|
|
||||||
page_token = None
|
|
||||||
for _ in range(REVOLUT_CUSTOMER_LIST_MAX_PAGES):
|
|
||||||
customer_page = await self._list_customers(page_token=page_token)
|
|
||||||
customer = _find_customer_by_email(customer_page["customers"], email)
|
|
||||||
if customer:
|
|
||||||
return customer
|
|
||||||
|
|
||||||
page_token = customer_page.get("next_page_token")
|
|
||||||
if not page_token:
|
|
||||||
return None
|
|
||||||
return None
|
|
||||||
|
|
||||||
async def _list_customers(self, page_token: str | None = None) -> dict[str, Any]:
|
|
||||||
params: dict[str, Any] = {"limit": REVOLUT_CUSTOMER_LIST_LIMIT}
|
|
||||||
if page_token:
|
|
||||||
params["page_token"] = page_token
|
|
||||||
r = await self.client.get(
|
|
||||||
"/api/customers", params=params, timeout=REVOLUT_REQUEST_TIMEOUT
|
|
||||||
)
|
|
||||||
r.raise_for_status()
|
|
||||||
return _extract_customer_page(r.json())
|
|
||||||
|
|
||||||
async def _create_customer(self, email: str) -> dict[str, Any]:
|
|
||||||
r = await self.client.post(
|
|
||||||
"/api/customers",
|
|
||||||
json={"email": email},
|
|
||||||
timeout=REVOLUT_REQUEST_TIMEOUT,
|
|
||||||
)
|
)
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
return r.json()
|
return r.json()
|
||||||
@@ -453,15 +354,13 @@ class RevolutWallet(FiatProvider):
|
|||||||
existing["already_exists"] = True
|
existing["already_exists"] = True
|
||||||
return existing
|
return existing
|
||||||
|
|
||||||
response = await client.post(
|
response = await client.post("/api/webhooks", json=payload, timeout=15)
|
||||||
"/api/webhooks", json=payload, timeout=REVOLUT_REQUEST_TIMEOUT
|
|
||||||
)
|
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
return response.json()
|
return response.json()
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
async def _list_webhooks(cls, client: httpx.AsyncClient) -> list[dict[str, Any]]:
|
async def _list_webhooks(cls, client: httpx.AsyncClient) -> list[dict[str, Any]]:
|
||||||
response = await client.get("/api/webhooks", timeout=REVOLUT_REQUEST_TIMEOUT)
|
response = await client.get("/api/webhooks", timeout=15)
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
data = response.json()
|
data = response.json()
|
||||||
if isinstance(data, list):
|
if isinstance(data, list):
|
||||||
@@ -486,9 +385,7 @@ class RevolutWallet(FiatProvider):
|
|||||||
if webhook_id and (
|
if webhook_id and (
|
||||||
not webhook.get("events") or not webhook.get("signing_secret")
|
not webhook.get("events") or not webhook.get("signing_secret")
|
||||||
):
|
):
|
||||||
response = await client.get(
|
response = await client.get(f"/api/webhooks/{webhook_id}", timeout=15)
|
||||||
f"/api/webhooks/{webhook_id}", timeout=REVOLUT_REQUEST_TIMEOUT
|
|
||||||
)
|
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
webhook = response.json()
|
webhook = response.json()
|
||||||
|
|
||||||
@@ -548,25 +445,6 @@ class RevolutWallet(FiatProvider):
|
|||||||
return FiatPaymentFailedStatus()
|
return FiatPaymentFailedStatus()
|
||||||
return FiatPaymentPendingStatus()
|
return FiatPaymentPendingStatus()
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def amount_to_minor_units(cls, amount: float | Decimal, currency: str) -> int:
|
|
||||||
scale = Decimal(10) ** cls.currency_exponent(currency)
|
|
||||||
return int((Decimal(str(amount)) * scale).quantize(Decimal("1"), ROUND_HALF_UP))
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def minor_units_to_amount(cls, amount: int, currency: str) -> float:
|
|
||||||
scale = Decimal(10) ** cls.currency_exponent(currency)
|
|
||||||
return float(Decimal(amount) / scale)
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def currency_exponent(cls, currency: str) -> int:
|
|
||||||
normalized = currency.upper()
|
|
||||||
if normalized in ZERO_DECIMAL_CURRENCIES:
|
|
||||||
return 0
|
|
||||||
if normalized in THREE_DECIMAL_CURRENCIES:
|
|
||||||
return 3
|
|
||||||
return 2
|
|
||||||
|
|
||||||
def _parse_create_opts(
|
def _parse_create_opts(
|
||||||
self, raw_opts: dict[str, Any]
|
self, raw_opts: dict[str, Any]
|
||||||
) -> RevolutCreateInvoiceOptions | None:
|
) -> RevolutCreateInvoiceOptions | None:
|
||||||
@@ -607,31 +485,3 @@ class RevolutWallet(FiatProvider):
|
|||||||
str(settings.revolut_webhook_signing_secret),
|
str(settings.revolut_webhook_signing_secret),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _extract_customer_page(data: Any) -> dict[str, Any]:
|
|
||||||
if isinstance(data, list):
|
|
||||||
return {"customers": _filter_customer_list(data)}
|
|
||||||
if isinstance(data, dict):
|
|
||||||
for field in ["customers", "data", "items"]:
|
|
||||||
customers = data.get(field)
|
|
||||||
if isinstance(customers, list):
|
|
||||||
return {
|
|
||||||
"customers": _filter_customer_list(customers),
|
|
||||||
"next_page_token": data.get("next_page_token"),
|
|
||||||
}
|
|
||||||
return {"customers": []}
|
|
||||||
|
|
||||||
|
|
||||||
def _filter_customer_list(customers: list[Any]) -> list[dict[str, Any]]:
|
|
||||||
return [customer for customer in customers if isinstance(customer, dict)]
|
|
||||||
|
|
||||||
|
|
||||||
def _find_customer_by_email(
|
|
||||||
customers: list[dict[str, Any]], email: str
|
|
||||||
) -> dict[str, Any] | None:
|
|
||||||
normalized_email = email.casefold()
|
|
||||||
for customer in customers:
|
|
||||||
if str(customer.get("email") or "").casefold() == normalized_email:
|
|
||||||
return customer
|
|
||||||
return None
|
|
||||||
|
|||||||
@@ -137,10 +137,6 @@ class SquareWallet(FiatProvider):
|
|||||||
payment_options: FiatSubscriptionPaymentOptions,
|
payment_options: FiatSubscriptionPaymentOptions,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
) -> FiatSubscriptionResponse:
|
) -> FiatSubscriptionResponse:
|
||||||
if settings.lnbits_running:
|
|
||||||
return FiatSubscriptionResponse(
|
|
||||||
ok=False, error_message="Subscription not supported for Square."
|
|
||||||
)
|
|
||||||
success_url = (
|
success_url = (
|
||||||
payment_options.success_url
|
payment_options.success_url
|
||||||
or settings.square_payment_success_url
|
or settings.square_payment_success_url
|
||||||
|
|||||||
+1
-47
@@ -52,45 +52,7 @@ def static_url_for(static: str, path: str) -> str:
|
|||||||
return f"/{static}/{path}?v={settings.server_startup_time}"
|
return f"/{static}/{path}?v={settings.server_startup_time}"
|
||||||
|
|
||||||
|
|
||||||
def extension_id_from_path(path: str) -> str | None:
|
def template_renderer(additional_folders: list | None = None) -> Jinja2Templates:
|
||||||
parts = [part for part in path.split("/") if part]
|
|
||||||
if not parts:
|
|
||||||
return None
|
|
||||||
|
|
||||||
if len(parts) >= 3 and parts[0] == "upgrades":
|
|
||||||
return parts[2]
|
|
||||||
|
|
||||||
ext_id = parts[0]
|
|
||||||
ext_i18n_dir = Path(
|
|
||||||
settings.lnbits_extensions_path, "extensions", ext_id, "static", "i18n"
|
|
||||||
)
|
|
||||||
if ext_i18n_dir.is_dir():
|
|
||||||
return ext_id
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def extension_i18n_urls(extension_id: str | None) -> list[str]:
|
|
||||||
if not extension_id:
|
|
||||||
return []
|
|
||||||
|
|
||||||
i18n_dir = Path(
|
|
||||||
settings.lnbits_extensions_path, "extensions", extension_id, "static", "i18n"
|
|
||||||
)
|
|
||||||
if not i18n_dir.is_dir():
|
|
||||||
return []
|
|
||||||
|
|
||||||
files = [file.name for file in i18n_dir.glob("*.js") if file.is_file()]
|
|
||||||
return [
|
|
||||||
static_url_for(f"{extension_id}/static", f"i18n/{filename}")
|
|
||||||
for filename in sorted(files, key=lambda name: (name != "en.js", name))
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
def template_renderer(
|
|
||||||
additional_folders: list | None = None,
|
|
||||||
extension_id: str | None = None,
|
|
||||||
) -> Jinja2Templates:
|
|
||||||
folders = [
|
folders = [
|
||||||
"lnbits/templates",
|
"lnbits/templates",
|
||||||
settings.extension_builder_working_dir_path.as_posix(),
|
settings.extension_builder_working_dir_path.as_posix(),
|
||||||
@@ -124,14 +86,6 @@ def template_renderer(
|
|||||||
t.env.globals["INCLUDED_CSS"] = vendor_files["css"]
|
t.env.globals["INCLUDED_CSS"] = vendor_files["css"]
|
||||||
t.env.globals["INCLUDED_COMPONENTS"] = vendor_files["components"]
|
t.env.globals["INCLUDED_COMPONENTS"] = vendor_files["components"]
|
||||||
|
|
||||||
if not extension_id and additional_folders:
|
|
||||||
for folder in additional_folders:
|
|
||||||
parts = Path(folder).parts
|
|
||||||
if parts and parts[-1] == "templates" and len(parts) >= 2:
|
|
||||||
extension_id = parts[-2]
|
|
||||||
break
|
|
||||||
t.env.globals["INCLUDED_EXTENSION_I18N"] = extension_i18n_urls(extension_id)
|
|
||||||
|
|
||||||
# backwards compatibility for extensions (tpos)
|
# backwards compatibility for extensions (tpos)
|
||||||
t.env.globals["LNBITS_DENOMINATION"] = settings.lnbits_denomination
|
t.env.globals["LNBITS_DENOMINATION"] = settings.lnbits_denomination
|
||||||
|
|
||||||
|
|||||||
+5
-3
@@ -300,7 +300,6 @@ class ThemesSettings(LNbitsSettings):
|
|||||||
lnbits_default_card_rounded: bool = Field(default=True)
|
lnbits_default_card_rounded: bool = Field(default=True)
|
||||||
lnbits_default_card_gradient: bool = Field(default=True)
|
lnbits_default_card_gradient: bool = Field(default=True)
|
||||||
lnbits_default_card_shadow: bool = Field(default=False)
|
lnbits_default_card_shadow: bool = Field(default=False)
|
||||||
lnbits_default_burger_menu_background: bool = Field(default=True)
|
|
||||||
|
|
||||||
|
|
||||||
class OpsSettings(LNbitsSettings):
|
class OpsSettings(LNbitsSettings):
|
||||||
@@ -324,6 +323,11 @@ class AssetSettings(LNbitsSettings):
|
|||||||
"heic",
|
"heic",
|
||||||
"heif",
|
"heif",
|
||||||
"heics",
|
"heics",
|
||||||
|
"text/plain",
|
||||||
|
"text/json",
|
||||||
|
"text/xml",
|
||||||
|
"application/json",
|
||||||
|
"application/pdf",
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
lnbits_asset_thumbnail_width: int = Field(default=128, ge=0)
|
lnbits_asset_thumbnail_width: int = Field(default=128, ge=0)
|
||||||
@@ -1282,7 +1286,6 @@ class PublicSettings(BaseModel):
|
|||||||
default_card_rounded: bool = Field(alias="defaultCardRounded")
|
default_card_rounded: bool = Field(alias="defaultCardRounded")
|
||||||
default_card_gradient: bool = Field(alias="defaultCardGradient")
|
default_card_gradient: bool = Field(alias="defaultCardGradient")
|
||||||
default_card_shadow: bool = Field(alias="defaultCardShadow")
|
default_card_shadow: bool = Field(alias="defaultCardShadow")
|
||||||
default_burger_menu_background: bool = Field(alias="defaultBurgerMenuBackground")
|
|
||||||
denomination: str | None = Field()
|
denomination: str | None = Field()
|
||||||
extensions: list[str] = Field()
|
extensions: list[str] = Field()
|
||||||
allowed_currencies: list[str] = Field(alias="allowedCurrencies")
|
allowed_currencies: list[str] = Field(alias="allowedCurrencies")
|
||||||
@@ -1346,7 +1349,6 @@ class PublicSettings(BaseModel):
|
|||||||
defaultCardRounded=settings.lnbits_default_card_rounded,
|
defaultCardRounded=settings.lnbits_default_card_rounded,
|
||||||
defaultCardGradient=settings.lnbits_default_card_gradient,
|
defaultCardGradient=settings.lnbits_default_card_gradient,
|
||||||
defaultCardShadow=settings.lnbits_default_card_shadow,
|
defaultCardShadow=settings.lnbits_default_card_shadow,
|
||||||
defaultBurgerMenuBackground=settings.lnbits_default_burger_menu_background,
|
|
||||||
denomination=settings.lnbits_denomination,
|
denomination=settings.lnbits_denomination,
|
||||||
extensions=list(settings.lnbits_installed_extensions_ids),
|
extensions=list(settings.lnbits_installed_extensions_ids),
|
||||||
allowedCurrencies=settings.lnbits_allowed_currencies,
|
allowedCurrencies=settings.lnbits_allowed_currencies,
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+18
-18
File diff suppressed because one or more lines are too long
@@ -395,13 +395,6 @@ body.card-shadow.body--dark .q-card:not(.q-dialog .q-card, .lnbits__dialog-card,
|
|||||||
filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
|
filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
|
||||||
}
|
}
|
||||||
|
|
||||||
body.no-burger-background .q-drawer {
|
|
||||||
background-color: transparent !important;
|
|
||||||
background-image: none !important;
|
|
||||||
backdrop-filter: none !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--size: 100px;
|
--size: 100px;
|
||||||
--gap: 25px;
|
--gap: 25px;
|
||||||
|
|||||||
@@ -490,8 +490,6 @@ window.localisation.en = {
|
|||||||
toggle_card_gradient: 'Toggle gradient on cards',
|
toggle_card_gradient: 'Toggle gradient on cards',
|
||||||
card_shadow: 'Card Shadow',
|
card_shadow: 'Card Shadow',
|
||||||
toggle_card_shadow: 'Toggle shadow on cards',
|
toggle_card_shadow: 'Toggle shadow on cards',
|
||||||
burger_menu_background: 'Burger Menu Background',
|
|
||||||
toggle_burger_menu_background: 'Toggle burger menu background',
|
|
||||||
language: 'Language',
|
language: 'Language',
|
||||||
assets: 'Assets',
|
assets: 'Assets',
|
||||||
max_asset_size_mb: 'Max Asset Size (MB)',
|
max_asset_size_mb: 'Max Asset Size (MB)',
|
||||||
|
|||||||
@@ -452,9 +452,7 @@ window.app.component('username-password', {
|
|||||||
confirmationMethod: 'code',
|
confirmationMethod: 'code',
|
||||||
confirmationEmail: '',
|
confirmationEmail: '',
|
||||||
confirmationCode: this.invitationCode || '',
|
confirmationCode: this.invitationCode || '',
|
||||||
showConfirmationCode: false,
|
showConfirmationCode: false
|
||||||
showPwd: false,
|
|
||||||
showPwdRepeat: false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -69,14 +69,6 @@ window.app.component('lnbits-theme', {
|
|||||||
document.body.classList.remove('card-shadow')
|
document.body.classList.remove('card-shadow')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'g.burgerMenuChoice'(val) {
|
|
||||||
this.$q.localStorage.set('lnbits.burgerMenu', val)
|
|
||||||
if (val === true) {
|
|
||||||
document.body.classList.remove('no-burger-background')
|
|
||||||
} else {
|
|
||||||
document.body.classList.add('no-burger-background')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'g.mobileSimple'(val) {
|
'g.mobileSimple'(val) {
|
||||||
this.$q.localStorage.set('lnbits.mobileSimple', val)
|
this.$q.localStorage.set('lnbits.mobileSimple', val)
|
||||||
if (val === true) {
|
if (val === true) {
|
||||||
@@ -158,9 +150,6 @@ window.app.component('lnbits-theme', {
|
|||||||
if (this.g.cardShadowChoice === true) {
|
if (this.g.cardShadowChoice === true) {
|
||||||
document.body.classList.add('card-shadow')
|
document.body.classList.add('card-shadow')
|
||||||
}
|
}
|
||||||
if (this.g.burgerMenuChoice !== true) {
|
|
||||||
document.body.classList.add('no-burger-background')
|
|
||||||
}
|
|
||||||
if (this.g.bgimageChoice !== '') {
|
if (this.g.bgimageChoice !== '') {
|
||||||
document.body.classList.add('bg-image')
|
document.body.classList.add('bg-image')
|
||||||
document.body.style.setProperty(
|
document.body.style.setProperty(
|
||||||
|
|||||||
@@ -1,17 +1,16 @@
|
|||||||
function eventReaction(amount) {
|
function eventReaction(amount) {
|
||||||
localUrl = ''
|
localUrl = ''
|
||||||
const reaction =
|
reaction = localStorage.getItem('lnbits.reactions')
|
||||||
Quasar.LocalStorage.getItem('lnbits.reactions') || SETTINGS.defaultReaction
|
if (!reaction || reaction === 'None') {
|
||||||
if (!reaction || reaction.toLowerCase() === 'none') {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (amount < 0) {
|
if (amount < 0) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (typeof window[reaction] === 'function') {
|
reaction = localStorage.getItem('lnbits.reactions')
|
||||||
window[reaction]()
|
if (reaction) {
|
||||||
|
window[reaction.split('|')[1]]()
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e)
|
console.log(e)
|
||||||
|
|||||||
@@ -29,10 +29,6 @@ window.g = Vue.reactive({
|
|||||||
SETTINGS.defaultCardGradient
|
SETTINGS.defaultCardGradient
|
||||||
),
|
),
|
||||||
cardShadowChoice: localStore('lnbits.cardShadow', SETTINGS.defaultCardShadow),
|
cardShadowChoice: localStore('lnbits.cardShadow', SETTINGS.defaultCardShadow),
|
||||||
burgerMenuChoice: localStore(
|
|
||||||
'lnbits.burgerMenu',
|
|
||||||
SETTINGS.defaultBurgerMenuBackground
|
|
||||||
),
|
|
||||||
reactionChoice: localStore('lnbits.reactions', SETTINGS.defaultReaction),
|
reactionChoice: localStore('lnbits.reactions', SETTINGS.defaultReaction),
|
||||||
bgimageChoice: localStore(
|
bgimageChoice: localStore(
|
||||||
'lnbits.backgroundImage',
|
'lnbits.backgroundImage',
|
||||||
|
|||||||
@@ -732,8 +732,7 @@ window.PageAccount = {
|
|||||||
darkChoice: this.g.settings.defaultDark,
|
darkChoice: this.g.settings.defaultDark,
|
||||||
cardRoundedChoice: this.g.settings.defaultCardRounded,
|
cardRoundedChoice: this.g.settings.defaultCardRounded,
|
||||||
cardGradientChoice: this.g.settings.defaultCardGradient,
|
cardGradientChoice: this.g.settings.defaultCardGradient,
|
||||||
cardShadowChoice: this.g.settings.defaultCardShadow,
|
cardShadowChoice: this.g.settings.defaultCardShadow
|
||||||
burgerMenuChoice: this.g.settings.defaultBurgerMenuBackground
|
|
||||||
}
|
}
|
||||||
this.siteCustomisationChanged(defaults)
|
this.siteCustomisationChanged(defaults)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -70,12 +70,3 @@ body.card-shadow.body--dark {
|
|||||||
filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
|
filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.no-burger-background {
|
|
||||||
.q-drawer {
|
|
||||||
background-color: transparent !important;
|
|
||||||
background-image: none !important;
|
|
||||||
backdrop-filter: none !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
+20776
File diff suppressed because it is too large
Load Diff
+47
@@ -0,0 +1,47 @@
|
|||||||
|
/*
|
||||||
|
* DOM element rendering detection
|
||||||
|
* https://davidwalsh.name/detect-node-insertion
|
||||||
|
*/
|
||||||
|
@keyframes chartjs-render-animation {
|
||||||
|
from { opacity: 0.99; }
|
||||||
|
to { opacity: 1; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.chartjs-render-monitor {
|
||||||
|
animation: chartjs-render-animation 0.001s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* DOM element resizing detection
|
||||||
|
* https://github.com/marcj/css-element-queries
|
||||||
|
*/
|
||||||
|
.chartjs-size-monitor,
|
||||||
|
.chartjs-size-monitor-expand,
|
||||||
|
.chartjs-size-monitor-shrink {
|
||||||
|
position: absolute;
|
||||||
|
direction: ltr;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
pointer-events: none;
|
||||||
|
visibility: hidden;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chartjs-size-monitor-expand > div {
|
||||||
|
position: absolute;
|
||||||
|
width: 1000000px;
|
||||||
|
height: 1000000px;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chartjs-size-monitor-shrink > div {
|
||||||
|
position: absolute;
|
||||||
|
width: 200%;
|
||||||
|
height: 200%;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
Vendored
+491
-861
File diff suppressed because it is too large
Load Diff
Vendored
+3116
-2768
File diff suppressed because it is too large
Load Diff
+131
-221
@@ -1,5 +1,5 @@
|
|||||||
/*!
|
/*!
|
||||||
* qrcode.vue v3.9.0
|
* qrcode.vue v3.6.0
|
||||||
* A Vue.js component to generate QRCode. Both support Vue 2 and Vue 3
|
* A Vue.js component to generate QRCode. Both support Vue 2 and Vue 3
|
||||||
* © 2017-PRESENT @scopewu(https://github.com/scopewu)
|
* © 2017-PRESENT @scopewu(https://github.com/scopewu)
|
||||||
* MIT License.
|
* MIT License.
|
||||||
@@ -909,18 +909,7 @@ var qrcodegen;
|
|||||||
})(qrcodegen || (qrcodegen = {}));
|
})(qrcodegen || (qrcodegen = {}));
|
||||||
var QR = qrcodegen;
|
var QR = qrcodegen;
|
||||||
|
|
||||||
var _uid = 0;
|
|
||||||
function getUid() {
|
|
||||||
if (typeof vue.useId === 'function') {
|
|
||||||
return "".concat(vue.useId(), "-").concat(_uid++);
|
|
||||||
}
|
|
||||||
return "vue-".concat(Math.random().toString(36).slice(2), "-").concat(_uid++);
|
|
||||||
}
|
|
||||||
var defaultErrorCorrectLevel = 'L';
|
var defaultErrorCorrectLevel = 'L';
|
||||||
var DEFAULT_QR_SIZE = 100;
|
|
||||||
var DEFAULT_MARGIN = 0;
|
|
||||||
var DEFAULT_IMAGE_SIZE_RATIO = 0.1;
|
|
||||||
var IMAGE_EXCAVATE_THICKNESS = 2;
|
|
||||||
var ErrorCorrectLevelMap = {
|
var ErrorCorrectLevelMap = {
|
||||||
L: QR.QrCode.Ecc.LOW,
|
L: QR.QrCode.Ecc.LOW,
|
||||||
M: QR.QrCode.Ecc.MEDIUM,
|
M: QR.QrCode.Ecc.MEDIUM,
|
||||||
@@ -940,139 +929,74 @@ var SUPPORTS_PATH2D = (function () {
|
|||||||
function validErrorCorrectLevel(level) {
|
function validErrorCorrectLevel(level) {
|
||||||
return level in ErrorCorrectLevelMap;
|
return level in ErrorCorrectLevelMap;
|
||||||
}
|
}
|
||||||
function getNeighborFlags(modules, row, col) {
|
|
||||||
var north = row > 0 ? modules[row - 1][col] : false;
|
|
||||||
var south = row < modules.length - 1 ? modules[row + 1][col] : false;
|
|
||||||
var west = col > 0 ? modules[row][col - 1] : false;
|
|
||||||
var east = col < modules[row].length - 1 ? modules[row][col + 1] : false;
|
|
||||||
return {
|
|
||||||
nw: !north && !west,
|
|
||||||
ne: !north && !east,
|
|
||||||
se: !south && !east,
|
|
||||||
sw: !south && !west,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
function generateRoundedPath(modules, margin, radius) {
|
|
||||||
if (margin === void 0) { margin = 0; }
|
|
||||||
if (radius === void 0) { radius = 0; }
|
|
||||||
var pathSegments = [];
|
|
||||||
var r = Math.min(radius, 0.5);
|
|
||||||
for (var row = 0; row < modules.length; row++) {
|
|
||||||
for (var col = 0; col < modules[row].length; col++) {
|
|
||||||
if (!modules[row][col])
|
|
||||||
continue;
|
|
||||||
var _a = getNeighborFlags(modules, row, col), nw = _a.nw, ne = _a.ne, se = _a.se, sw = _a.sw;
|
|
||||||
var x = col + margin;
|
|
||||||
var y = row + margin;
|
|
||||||
pathSegments.push("M".concat(x + (nw ? r : 0), " ").concat(y), "L".concat(x + 1 - (ne ? r : 0), " ").concat(y));
|
|
||||||
if (ne) {
|
|
||||||
pathSegments.push("A".concat(r, " ").concat(r, " 0 0 1 ").concat(x + 1, " ").concat(y + r));
|
|
||||||
}
|
|
||||||
pathSegments.push("L".concat(x + 1, " ").concat(y + 1 - (se ? r : 0)));
|
|
||||||
if (se) {
|
|
||||||
pathSegments.push("A".concat(r, " ").concat(r, " 0 0 1 ").concat(x + 1 - r, " ").concat(y + 1));
|
|
||||||
}
|
|
||||||
pathSegments.push("L".concat(x + (sw ? r : 0), " ").concat(y + 1));
|
|
||||||
if (sw) {
|
|
||||||
pathSegments.push("A".concat(r, " ").concat(r, " 0 0 1 ").concat(x, " ").concat(y + 1 - r));
|
|
||||||
}
|
|
||||||
pathSegments.push("L".concat(x, " ").concat(y + (nw ? r : 0)));
|
|
||||||
if (nw) {
|
|
||||||
pathSegments.push("A".concat(r, " ").concat(r, " 0 0 1 ").concat(x + r, " ").concat(y));
|
|
||||||
}
|
|
||||||
pathSegments.push('z');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return pathSegments.join('');
|
|
||||||
}
|
|
||||||
function generatePath(modules, margin) {
|
function generatePath(modules, margin) {
|
||||||
if (margin === void 0) { margin = 0; }
|
if (margin === void 0) { margin = 0; }
|
||||||
var pathSegments = [];
|
var ops = [];
|
||||||
for (var y = 0; y < modules.length; y++) {
|
modules.forEach(function (row, y) {
|
||||||
var row = modules[y];
|
|
||||||
var start = null;
|
var start = null;
|
||||||
for (var x = 0; x < row.length; x++) {
|
row.forEach(function (cell, x) {
|
||||||
var cell = row[x];
|
|
||||||
if (!cell && start !== null) {
|
if (!cell && start !== null) {
|
||||||
// M0 0h7v1H0z injects the space with the move and drops the comma,
|
// M0 0h7v1H0z injects the space with the move and drops the comma,
|
||||||
pathSegments.push("M".concat(start + margin, " ").concat(y + margin, "h").concat(x - start, "v1H").concat(start + margin, "z"));
|
// saving a char per operation
|
||||||
|
ops.push("M".concat(start + margin, " ").concat(y + margin, "h").concat(x - start, "v1H").concat(start + margin, "z"));
|
||||||
start = null;
|
start = null;
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
// end of row, clean up or skip
|
// end of row, clean up or skip
|
||||||
if (x === row.length - 1) {
|
if (x === row.length - 1) {
|
||||||
if (!cell) {
|
if (!cell) {
|
||||||
// We would have closed the op above already so this can only mean
|
// We would have closed the op above already so this can only mean
|
||||||
// 2+ light modules in a row.
|
// 2+ light modules in a row.
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
if (start === null) {
|
if (start === null) {
|
||||||
// Just a single dark module.
|
// Just a single dark module.
|
||||||
pathSegments.push("M".concat(x + margin, ",").concat(y + margin, " h1v1H").concat(x + margin, "z"));
|
ops.push("M".concat(x + margin, ",").concat(y + margin, " h1v1H").concat(x + margin, "z"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Otherwise finish the current line.
|
// Otherwise finish the current line.
|
||||||
pathSegments.push("M".concat(start + margin, ",").concat(y + margin, " h").concat(x + 1 - start, "v1H").concat(start + margin, "z"));
|
ops.push("M".concat(start + margin, ",").concat(y + margin, " h").concat(x + 1 - start, "v1H").concat(start + margin, "z"));
|
||||||
}
|
}
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
if (cell && start === null) {
|
if (cell && start === null) {
|
||||||
start = x;
|
start = x;
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
}
|
});
|
||||||
return pathSegments.join('');
|
return ops.join('');
|
||||||
}
|
}
|
||||||
function getImageSettings(cells, size, margin, imageSettings) {
|
function getImageSettings(cells, size, margin, imageSettings) {
|
||||||
var width = imageSettings.width, height = imageSettings.height, imageX = imageSettings.x, imageY = imageSettings.y;
|
var width = imageSettings.width, height = imageSettings.height, imageX = imageSettings.x, imageY = imageSettings.y;
|
||||||
var numCells = cells.length + margin * 2;
|
var numCells = cells.length + margin * 2;
|
||||||
var defaultSize = Math.floor(size * DEFAULT_IMAGE_SIZE_RATIO);
|
var defaultSize = Math.floor(size * 0.1);
|
||||||
var scale = numCells / size;
|
var scale = numCells / size;
|
||||||
var w = (width || defaultSize) * scale;
|
var w = (width || defaultSize) * scale;
|
||||||
var h = (height || defaultSize) * scale;
|
var h = (height || defaultSize) * scale;
|
||||||
var x = imageX == null ? cells.length / 2 - w / 2 : imageX * scale;
|
var x = imageX == null ? cells.length / 2 - w / 2 : imageX * scale;
|
||||||
var y = imageY == null ? cells.length / 2 - h / 2 : imageY * scale;
|
var y = imageY == null ? cells.length / 2 - h / 2 : imageY * scale;
|
||||||
var borderRadius = (imageSettings.borderRadius || 0) * scale;
|
var excavation = null;
|
||||||
return { x: x, y: y, h: h, w: w, borderRadius: borderRadius };
|
if (imageSettings.excavate) {
|
||||||
|
var floorX = Math.floor(x);
|
||||||
|
var floorY = Math.floor(y);
|
||||||
|
var ceilW = Math.ceil(w + x - floorX);
|
||||||
|
var ceilH = Math.ceil(h + y - floorY);
|
||||||
|
excavation = { x: floorX, y: floorY, w: ceilW, h: ceilH };
|
||||||
|
}
|
||||||
|
return { x: x, y: y, h: h, w: w, excavation: excavation };
|
||||||
}
|
}
|
||||||
function useQRCode(props) {
|
function excavateModules(modules, excavation) {
|
||||||
var margin = vue.computed(function () { var _a; return ((_a = props.margin) !== null && _a !== void 0 ? _a : DEFAULT_MARGIN) >>> 0; });
|
return modules.slice().map(function (row, y) {
|
||||||
var cells = vue.computed(function () {
|
if (y < excavation.y || y >= excavation.y + excavation.h) {
|
||||||
var level = validErrorCorrectLevel(props.level) ? props.level : defaultErrorCorrectLevel;
|
return row;
|
||||||
return QR.QrCode.encodeText(props.value, ErrorCorrectLevelMap[level]).getModules();
|
|
||||||
});
|
|
||||||
var numCells = vue.computed(function () { return cells.value.length + margin.value * 2; });
|
|
||||||
var fgPath = vue.computed(function () {
|
|
||||||
if (props.radius > 0) {
|
|
||||||
return generateRoundedPath(cells.value, margin.value, props.radius);
|
|
||||||
}
|
}
|
||||||
return generatePath(cells.value, margin.value);
|
return row.map(function (cell, x) {
|
||||||
|
if (x < excavation.x || x >= excavation.x + excavation.w) {
|
||||||
|
return cell;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
var imageProps = vue.computed(function () {
|
|
||||||
if (!props.imageSettings.src)
|
|
||||||
return null;
|
|
||||||
var settings = getImageSettings(cells.value, props.size, margin.value, props.imageSettings);
|
|
||||||
return {
|
|
||||||
x: settings.x + margin.value,
|
|
||||||
y: settings.y + margin.value,
|
|
||||||
width: settings.w,
|
|
||||||
height: settings.h,
|
|
||||||
borderRadius: settings.borderRadius,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
var imageBorderProps = vue.computed(function () {
|
|
||||||
if (!props.imageSettings.excavate || !imageProps.value)
|
|
||||||
return null;
|
|
||||||
var borderThickness = IMAGE_EXCAVATE_THICKNESS / (props.size / numCells.value);
|
|
||||||
return {
|
|
||||||
x: imageProps.value.x - borderThickness,
|
|
||||||
y: imageProps.value.y - borderThickness,
|
|
||||||
width: imageProps.value.width + borderThickness * 2,
|
|
||||||
height: imageProps.value.height + borderThickness * 2,
|
|
||||||
borderRadius: imageProps.value.borderRadius,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
return { margin: margin, numCells: numCells, cells: cells, fgPath: fgPath, imageProps: imageProps, imageBorderProps: imageBorderProps };
|
|
||||||
}
|
}
|
||||||
var QRCodeProps = {
|
var QRCodeProps = {
|
||||||
value: {
|
value: {
|
||||||
@@ -1082,7 +1006,7 @@ var QRCodeProps = {
|
|||||||
},
|
},
|
||||||
size: {
|
size: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: DEFAULT_QR_SIZE,
|
default: 100,
|
||||||
},
|
},
|
||||||
level: {
|
level: {
|
||||||
type: String,
|
type: String,
|
||||||
@@ -1100,7 +1024,7 @@ var QRCodeProps = {
|
|||||||
margin: {
|
margin: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: false,
|
required: false,
|
||||||
default: DEFAULT_MARGIN,
|
default: 0,
|
||||||
},
|
},
|
||||||
imageSettings: {
|
imageSettings: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@@ -1128,12 +1052,6 @@ var QRCodeProps = {
|
|||||||
required: false,
|
required: false,
|
||||||
default: '#fff',
|
default: '#fff',
|
||||||
},
|
},
|
||||||
radius: {
|
|
||||||
type: Number,
|
|
||||||
required: false,
|
|
||||||
default: 0,
|
|
||||||
validator: function (r) { return !isNaN(r) && r >= 0 && r <= 0.5; },
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
var QRCodeVueProps = __assign(__assign({}, QRCodeProps), { renderAs: {
|
var QRCodeVueProps = __assign(__assign({}, QRCodeProps), { renderAs: {
|
||||||
type: String,
|
type: String,
|
||||||
@@ -1145,11 +1063,36 @@ var QrcodeSvg = vue.defineComponent({
|
|||||||
name: 'QRCodeSvg',
|
name: 'QRCodeSvg',
|
||||||
props: QRCodeProps,
|
props: QRCodeProps,
|
||||||
setup: function (props) {
|
setup: function (props) {
|
||||||
var _a = useQRCode(props), numCells = _a.numCells, fgPath = _a.fgPath, imageProps = _a.imageProps, imageBorderProps = _a.imageBorderProps;
|
var numCells = vue.ref(0);
|
||||||
var uid = getUid();
|
var fgPath = vue.ref('');
|
||||||
var qrGradientId = "qrcode.vue-gradient-".concat(uid);
|
var imageProps;
|
||||||
var qrLogoClipPathId = "qrcode.vue-logo-clip-path-".concat(uid);
|
var generate = function () {
|
||||||
var gradientVNode = vue.computed(function () {
|
var value = props.value, _level = props.level, _margin = props.margin;
|
||||||
|
var margin = _margin >>> 0;
|
||||||
|
var level = validErrorCorrectLevel(_level) ? _level : defaultErrorCorrectLevel;
|
||||||
|
var cells = QR.QrCode.encodeText(value, ErrorCorrectLevelMap[level]).getModules();
|
||||||
|
numCells.value = cells.length + margin * 2;
|
||||||
|
if (props.imageSettings.src) {
|
||||||
|
var imageSettings = getImageSettings(cells, props.size, margin, props.imageSettings);
|
||||||
|
imageProps = {
|
||||||
|
x: imageSettings.x + margin,
|
||||||
|
y: imageSettings.y + margin,
|
||||||
|
width: imageSettings.w,
|
||||||
|
height: imageSettings.h,
|
||||||
|
};
|
||||||
|
if (imageSettings.excavation) {
|
||||||
|
cells = excavateModules(cells, imageSettings.excavation);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Drawing strategy: instead of a rect per module, we're going to create a
|
||||||
|
// single path for the dark modules and layer that on top of a light rect,
|
||||||
|
// for a total of 2 DOM nodes. We pay a bit more in string concat but that's
|
||||||
|
// way faster than DOM ops.
|
||||||
|
// For level 1, 441 nodes -> 2
|
||||||
|
// For level 40, 31329 -> 2
|
||||||
|
fgPath.value = generatePath(cells, margin);
|
||||||
|
};
|
||||||
|
var renderGradient = function () {
|
||||||
if (!props.gradient)
|
if (!props.gradient)
|
||||||
return null;
|
return null;
|
||||||
var gradientProps = props.gradientType === 'linear'
|
var gradientProps = props.gradientType === 'linear'
|
||||||
@@ -1166,7 +1109,7 @@ var QrcodeSvg = vue.defineComponent({
|
|||||||
fx: '50%',
|
fx: '50%',
|
||||||
fy: '50%',
|
fy: '50%',
|
||||||
};
|
};
|
||||||
return vue.h(props.gradientType === 'linear' ? 'linearGradient' : 'radialGradient', __assign({ id: qrGradientId }, gradientProps), [
|
return vue.h(props.gradientType === 'linear' ? 'linearGradient' : 'radialGradient', __assign({ id: 'qr-gradient' }, gradientProps), [
|
||||||
vue.h('stop', {
|
vue.h('stop', {
|
||||||
offset: '0%',
|
offset: '0%',
|
||||||
style: { stopColor: props.gradientStartColor },
|
style: { stopColor: props.gradientStartColor },
|
||||||
@@ -1176,52 +1119,27 @@ var QrcodeSvg = vue.defineComponent({
|
|||||||
style: { stopColor: props.gradientEndColor },
|
style: { stopColor: props.gradientEndColor },
|
||||||
}),
|
}),
|
||||||
]);
|
]);
|
||||||
});
|
};
|
||||||
var clipPathVNode = vue.computed(function () {
|
generate();
|
||||||
if (!imageProps.value)
|
vue.onUpdated(generate);
|
||||||
return null;
|
|
||||||
var borderRadius = imageProps.value.borderRadius;
|
|
||||||
if (borderRadius <= 0)
|
|
||||||
return null;
|
|
||||||
return vue.h('clipPath', { id: qrLogoClipPathId }, [
|
|
||||||
vue.h('rect', {
|
|
||||||
x: imageProps.value.x,
|
|
||||||
y: imageProps.value.y,
|
|
||||||
width: imageProps.value.width,
|
|
||||||
height: imageProps.value.height,
|
|
||||||
rx: borderRadius,
|
|
||||||
ry: borderRadius,
|
|
||||||
}),
|
|
||||||
]);
|
|
||||||
});
|
|
||||||
return function () { return vue.h('svg', {
|
return function () { return vue.h('svg', {
|
||||||
width: props.size,
|
width: props.size,
|
||||||
height: props.size,
|
height: props.size,
|
||||||
|
'shape-rendering': "crispEdges",
|
||||||
xmlns: 'http://www.w3.org/2000/svg',
|
xmlns: 'http://www.w3.org/2000/svg',
|
||||||
viewBox: "0 0 ".concat(numCells.value, " ").concat(numCells.value),
|
viewBox: "0 0 ".concat(numCells.value, " ").concat(numCells.value),
|
||||||
role: 'img',
|
|
||||||
'aria-label': props.value,
|
|
||||||
}, [
|
}, [
|
||||||
vue.h('defs', {}, [gradientVNode.value, clipPathVNode.value]),
|
vue.h('defs', {}, [renderGradient()]),
|
||||||
vue.h('rect', {
|
vue.h('rect', {
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: '100%',
|
height: '100%',
|
||||||
fill: props.background,
|
fill: props.background,
|
||||||
}),
|
}),
|
||||||
vue.h('path', {
|
vue.h('path', {
|
||||||
fill: props.gradient ? "url(#".concat(qrGradientId, ")") : props.foreground,
|
fill: props.gradient ? 'url(#qr-gradient)' : props.foreground,
|
||||||
d: fgPath.value,
|
d: fgPath.value,
|
||||||
}),
|
}),
|
||||||
imageBorderProps.value && vue.h('rect', {
|
props.imageSettings.src && vue.h('image', __assign({ href: props.imageSettings.src }, imageProps)),
|
||||||
x: imageBorderProps.value.x,
|
|
||||||
y: imageBorderProps.value.y,
|
|
||||||
width: imageBorderProps.value.width,
|
|
||||||
height: imageBorderProps.value.height,
|
|
||||||
fill: props.background,
|
|
||||||
rx: imageBorderProps.value.borderRadius,
|
|
||||||
ry: imageBorderProps.value.borderRadius,
|
|
||||||
}),
|
|
||||||
props.imageSettings.src && imageProps.value && vue.h('image', __assign(__assign({ href: props.imageSettings.src }, imageProps.value), (imageProps.value.borderRadius > 0 ? { 'clip-path': "url(#".concat(qrLogoClipPathId, ")") } : {}))),
|
|
||||||
]); };
|
]); };
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@@ -1229,89 +1147,81 @@ var QrcodeCanvas = vue.defineComponent({
|
|||||||
name: 'QRCodeCanvas',
|
name: 'QRCodeCanvas',
|
||||||
props: QRCodeProps,
|
props: QRCodeProps,
|
||||||
setup: function (props, ctx) {
|
setup: function (props, ctx) {
|
||||||
var _a = useQRCode(props), margin = _a.margin, cells = _a.cells, numCells = _a.numCells, fgPath = _a.fgPath, imageProps = _a.imageProps, imageBorderProps = _a.imageBorderProps;
|
|
||||||
var canvasEl = vue.ref(null);
|
var canvasEl = vue.ref(null);
|
||||||
var imageEl = vue.ref(null);
|
var imageRef = vue.ref(null);
|
||||||
var drawRoundedRect = function (ctx, x, y, width, height, radius) {
|
|
||||||
ctx.beginPath();
|
|
||||||
if (ctx.roundRect) {
|
|
||||||
ctx.roundRect(x, y, width, height, radius);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
ctx.rect(x, y, width, height);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
var generate = function () {
|
var generate = function () {
|
||||||
var size = props.size, background = props.background, foreground = props.foreground, gradient = props.gradient, gradientType = props.gradientType, gradientStartColor = props.gradientStartColor, gradientEndColor = props.gradientEndColor;
|
var value = props.value, _level = props.level, size = props.size, _margin = props.margin, background = props.background, foreground = props.foreground, gradient = props.gradient, gradientType = props.gradientType, gradientStartColor = props.gradientStartColor, gradientEndColor = props.gradientEndColor;
|
||||||
|
var margin = _margin >>> 0;
|
||||||
|
var level = validErrorCorrectLevel(_level) ? _level : defaultErrorCorrectLevel;
|
||||||
var canvas = canvasEl.value;
|
var canvas = canvasEl.value;
|
||||||
if (!canvas) {
|
if (!canvas) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var canvasCtx = canvas.getContext('2d');
|
var ctx = canvas.getContext('2d');
|
||||||
if (!canvasCtx) {
|
if (!ctx) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var image = imageEl.value;
|
var cells = QR.QrCode.encodeText(value, ErrorCorrectLevelMap[level]).getModules();
|
||||||
var devicePixelRatio = typeof window !== 'undefined' ? window.devicePixelRatio || 1 : 1;
|
var numCells = cells.length + margin * 2;
|
||||||
var scale = (size / numCells.value) * devicePixelRatio;
|
var image = imageRef.value;
|
||||||
|
var imageProps = { x: 0, y: 0, width: 0, height: 0 };
|
||||||
|
var showImage = props.imageSettings.src && image != null && image.naturalWidth !== 0 && image.naturalHeight !== 0;
|
||||||
|
if (showImage) {
|
||||||
|
var imageSettings = getImageSettings(cells, props.size, margin, props.imageSettings);
|
||||||
|
imageProps = {
|
||||||
|
x: imageSettings.x + margin,
|
||||||
|
y: imageSettings.y + margin,
|
||||||
|
width: imageSettings.w,
|
||||||
|
height: imageSettings.h,
|
||||||
|
};
|
||||||
|
if (imageSettings.excavation) {
|
||||||
|
cells = excavateModules(cells, imageSettings.excavation);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var devicePixelRatio = window.devicePixelRatio || 1;
|
||||||
|
var scale = (size / numCells) * devicePixelRatio;
|
||||||
canvas.height = canvas.width = size * devicePixelRatio;
|
canvas.height = canvas.width = size * devicePixelRatio;
|
||||||
canvasCtx.setTransform(scale, 0, 0, scale, 0, 0);
|
ctx.scale(scale, scale);
|
||||||
canvasCtx.fillStyle = background;
|
ctx.fillStyle = background;
|
||||||
canvasCtx.fillRect(0, 0, numCells.value, numCells.value);
|
ctx.fillRect(0, 0, numCells, numCells);
|
||||||
if (gradient) {
|
if (gradient) {
|
||||||
var grad = void 0;
|
var grad = void 0;
|
||||||
if (gradientType === 'linear') {
|
if (gradientType === 'linear') {
|
||||||
grad = canvasCtx.createLinearGradient(0, 0, numCells.value, numCells.value);
|
grad = ctx.createLinearGradient(0, 0, numCells, numCells);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
grad = canvasCtx.createRadialGradient(numCells.value / 2, numCells.value / 2, 0, numCells.value / 2, numCells.value / 2, numCells.value / 2);
|
grad = ctx.createRadialGradient(numCells / 2, numCells / 2, 0, numCells / 2, numCells / 2, numCells / 2);
|
||||||
}
|
}
|
||||||
grad.addColorStop(0, gradientStartColor);
|
grad.addColorStop(0, gradientStartColor);
|
||||||
grad.addColorStop(1, gradientEndColor);
|
grad.addColorStop(1, gradientEndColor);
|
||||||
canvasCtx.fillStyle = grad;
|
ctx.fillStyle = grad;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
canvasCtx.fillStyle = foreground;
|
ctx.fillStyle = foreground;
|
||||||
}
|
}
|
||||||
if (SUPPORTS_PATH2D) {
|
if (SUPPORTS_PATH2D) {
|
||||||
canvasCtx.fill(new Path2D(fgPath.value));
|
ctx.fill(new Path2D(generatePath(cells, margin)));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
cells.value.forEach(function (row, rdx) {
|
cells.forEach(function (row, rdx) {
|
||||||
row.forEach(function (cell, cdx) {
|
row.forEach(function (cell, cdx) {
|
||||||
if (cell) {
|
if (cell) {
|
||||||
canvasCtx.fillRect(cdx + margin.value, rdx + margin.value, 1, 1);
|
ctx.fillRect(cdx + margin, rdx + margin, 1, 1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
var showImage = props.imageSettings.src && image && image.naturalWidth !== 0 && image.naturalHeight !== 0;
|
if (showImage) {
|
||||||
if (showImage && imageProps.value) {
|
ctx.drawImage(image, imageProps.x, imageProps.y, imageProps.width, imageProps.height);
|
||||||
if (imageBorderProps.value) {
|
|
||||||
var imageBorder = imageBorderProps.value;
|
|
||||||
canvasCtx.fillStyle = props.background;
|
|
||||||
drawRoundedRect(canvasCtx, imageBorder.x, imageBorder.y, imageBorder.width, imageBorder.height, imageBorder.borderRadius);
|
|
||||||
canvasCtx.fill();
|
|
||||||
}
|
|
||||||
var borderRadius = imageProps.value.borderRadius;
|
|
||||||
if (borderRadius > 0) {
|
|
||||||
canvasCtx.save();
|
|
||||||
drawRoundedRect(canvasCtx, imageProps.value.x, imageProps.value.y, imageProps.value.width, imageProps.value.height, borderRadius);
|
|
||||||
canvasCtx.clip();
|
|
||||||
canvasCtx.drawImage(image, imageProps.value.x, imageProps.value.y, imageProps.value.width, imageProps.value.height);
|
|
||||||
canvasCtx.restore();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
canvasCtx.drawImage(image, imageProps.value.x, imageProps.value.y, imageProps.value.width, imageProps.value.height);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
vue.onMounted(generate);
|
vue.onMounted(generate);
|
||||||
vue.watchEffect(generate);
|
vue.onUpdated(generate);
|
||||||
|
var style = ctx.attrs.style;
|
||||||
return function () { return vue.h(vue.Fragment, [
|
return function () { return vue.h(vue.Fragment, [
|
||||||
vue.h('canvas', __assign(__assign({}, ctx.attrs), { ref: canvasEl, role: 'img', 'aria-label': props.value, style: __assign(__assign({}, ctx.attrs.style), { width: "".concat(props.size, "px"), height: "".concat(props.size, "px") }) })),
|
vue.h('canvas', __assign(__assign({}, ctx.attrs), { ref: canvasEl, style: __assign(__assign({}, style), { width: "".concat(props.size, "px"), height: "".concat(props.size, "px") }) })),
|
||||||
props.imageSettings.src && vue.h('img', {
|
props.imageSettings.src && vue.h('img', {
|
||||||
ref: imageEl,
|
ref: imageRef,
|
||||||
src: props.imageSettings.src,
|
src: props.imageSettings.src,
|
||||||
style: { display: 'none' },
|
style: { display: 'none' },
|
||||||
onLoad: generate,
|
onLoad: generate,
|
||||||
@@ -1321,23 +1231,23 @@ var QrcodeCanvas = vue.defineComponent({
|
|||||||
});
|
});
|
||||||
var QrcodeVue = vue.defineComponent({
|
var QrcodeVue = vue.defineComponent({
|
||||||
name: 'Qrcode',
|
name: 'Qrcode',
|
||||||
props: QRCodeVueProps,
|
render: function () {
|
||||||
setup: function (props) {
|
var _a = this.$props, renderAs = _a.renderAs, value = _a.value, size = _a.size, margin = _a.margin, level = _a.level, background = _a.background, foreground = _a.foreground, imageSettings = _a.imageSettings, gradient = _a.gradient, gradientType = _a.gradientType, gradientStartColor = _a.gradientStartColor, gradientEndColor = _a.gradientEndColor;
|
||||||
return function () { return vue.h(props.renderAs === 'svg' ? QrcodeSvg : QrcodeCanvas, {
|
return vue.h(renderAs === 'svg' ? QrcodeSvg : QrcodeCanvas, {
|
||||||
value: props.value,
|
value: value,
|
||||||
size: props.size,
|
size: size,
|
||||||
margin: props.margin,
|
margin: margin,
|
||||||
level: props.level,
|
level: level,
|
||||||
background: props.background,
|
background: background,
|
||||||
foreground: props.foreground,
|
foreground: foreground,
|
||||||
imageSettings: props.imageSettings,
|
imageSettings: imageSettings,
|
||||||
gradient: props.gradient,
|
gradient: gradient,
|
||||||
gradientType: props.gradientType,
|
gradientType: gradientType,
|
||||||
gradientStartColor: props.gradientStartColor,
|
gradientStartColor: gradientStartColor,
|
||||||
gradientEndColor: props.gradientEndColor,
|
gradientEndColor: gradientEndColor,
|
||||||
radius: props.radius,
|
});
|
||||||
}); };
|
|
||||||
},
|
},
|
||||||
|
props: QRCodeVueProps,
|
||||||
});
|
});
|
||||||
|
|
||||||
exports.QrcodeCanvas = QrcodeCanvas;
|
exports.QrcodeCanvas = QrcodeCanvas;
|
||||||
|
|||||||
Vendored
+28
-15
@@ -43,7 +43,8 @@ summary {
|
|||||||
abbr[title] {
|
abbr[title] {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
text-decoration: underline dotted;
|
-webkit-text-decoration: underline dotted;
|
||||||
|
text-decoration: underline dotted;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -199,7 +200,8 @@ input[type=search]::-webkit-search-decoration {
|
|||||||
.material-symbols-outlined,
|
.material-symbols-outlined,
|
||||||
.material-symbols-rounded,
|
.material-symbols-rounded,
|
||||||
.material-symbols-sharp {
|
.material-symbols-sharp {
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
cursor: inherit;
|
cursor: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
@@ -996,7 +998,8 @@ input[type=search]::-webkit-search-decoration {
|
|||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
.q-checkbox__bg, .q-checkbox__icon-container {
|
.q-checkbox__bg, .q-checkbox__icon-container {
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
.q-checkbox__bg {
|
.q-checkbox__bg {
|
||||||
top: 25%;
|
top: 25%;
|
||||||
@@ -2209,7 +2212,8 @@ body.q-ios-padding .q-dialog__inner > div {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
outline: 0 !important;
|
outline: 0 !important;
|
||||||
user-select: auto;
|
-webkit-user-select: auto;
|
||||||
|
user-select: auto;
|
||||||
}
|
}
|
||||||
.q-field__native:-webkit-autofill, .q-field__input:-webkit-autofill {
|
.q-field__native:-webkit-autofill, .q-field__input:-webkit-autofill {
|
||||||
-webkit-animation-name: q-autofill;
|
-webkit-animation-name: q-autofill;
|
||||||
@@ -3035,7 +3039,8 @@ body.body--dark .q-knob--editable:focus:before {
|
|||||||
z-index: 2001;
|
z-index: 2001;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 15px;
|
width: 15px;
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.q-layout, .q-header, .q-footer, .q-page {
|
.q-layout, .q-header, .q-footer, .q-page {
|
||||||
@@ -3292,7 +3297,8 @@ body.platform-ios .q-layout--containerized {
|
|||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
.q-radio__bg, .q-radio__icon-container {
|
.q-radio__bg, .q-radio__icon-container {
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
.q-radio__bg {
|
.q-radio__bg {
|
||||||
top: 25%;
|
top: 25%;
|
||||||
@@ -3776,7 +3782,8 @@ body.platform-ios:not(.native-mobile) .q-dialog__inner--top .q-select__dialog--f
|
|||||||
.q-slide-item__content {
|
.q-slide-item__content {
|
||||||
background: inherit;
|
background: inherit;
|
||||||
transition: transform 0.2s ease-in;
|
transition: transform 0.2s ease-in;
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4149,7 +4156,8 @@ body.desktop .q-slider.q-slider--enabled .q-slider__track-container:hover .q-sli
|
|||||||
}
|
}
|
||||||
.q-splitter__separator {
|
.q-splitter__separator {
|
||||||
background-color: rgba(0, 0, 0, 0.12);
|
background-color: rgba(0, 0, 0, 0.12);
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
@@ -4238,7 +4246,8 @@ body.desktop .q-slider.q-slider--enabled .q-slider__track-container:hover .q-sli
|
|||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
.q-stepper__tab--navigation {
|
.q-stepper__tab--navigation {
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.q-stepper__tab--active, .q-stepper__tab--done {
|
.q-stepper__tab--active, .q-stepper__tab--done {
|
||||||
@@ -4470,7 +4479,8 @@ body.desktop .q-slider.q-slider--enabled .q-slider__track-container:hover .q-sli
|
|||||||
.q-table th {
|
.q-table th {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
.q-table th.sortable {
|
.q-table th.sortable {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -5474,7 +5484,8 @@ body.desktop .q-table > tbody > tr:not(.q-tr--no-hover):hover > td:not(.q-td--no
|
|||||||
width: 0.5em;
|
width: 0.5em;
|
||||||
height: 0.5em;
|
height: 0.5em;
|
||||||
transition: left 0.22s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: left 0.22s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
.q-toggle__thumb:after {
|
.q-toggle__thumb:after {
|
||||||
@@ -10326,7 +10337,6 @@ body.body--dark .inset-shadow-down {
|
|||||||
.glossy {
|
.glossy {
|
||||||
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04)) !important;
|
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04)) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.q-placeholder::placeholder {
|
.q-placeholder::placeholder {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
@@ -10358,7 +10368,8 @@ body.body--dark .inset-shadow-down {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
.q-link--focusable:focus-visible {
|
.q-link--focusable:focus-visible {
|
||||||
text-decoration: underline dashed currentColor 1px;
|
-webkit-text-decoration: underline dashed currentColor 1px;
|
||||||
|
text-decoration: underline dashed currentColor 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.electron .q-electron-drag {
|
body.electron .q-electron-drag {
|
||||||
@@ -10375,7 +10386,8 @@ img.responsive {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.non-selectable {
|
.non-selectable {
|
||||||
user-select: none !important;
|
-webkit-user-select: none !important;
|
||||||
|
user-select: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll,
|
.scroll,
|
||||||
@@ -11033,7 +11045,8 @@ body.q-ios-padding .fullscreen {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.q-touch {
|
.q-touch {
|
||||||
user-select: none;
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
user-drag: none;
|
user-drag: none;
|
||||||
-khtml-user-drag: none;
|
-khtml-user-drag: none;
|
||||||
-webkit-user-drag: none;
|
-webkit-user-drag: none;
|
||||||
|
|||||||
+79
-78
File diff suppressed because one or more lines are too long
+3
-3
File diff suppressed because one or more lines are too long
+777
-174
File diff suppressed because it is too large
Load Diff
+9
-9
File diff suppressed because one or more lines are too long
@@ -90,9 +90,7 @@
|
|||||||
window.g.isPublicPage = false
|
window.g.isPublicPage = false
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</script>
|
</script>
|
||||||
{% endif %} {% for url in INCLUDED_EXTENSION_I18N %}
|
{% endif %}
|
||||||
<script src="{{ url }}"></script>
|
|
||||||
{% endfor %}
|
|
||||||
<!-- app init -->
|
<!-- app init -->
|
||||||
<script>
|
<script>
|
||||||
window.app = Vue.createApp({
|
window.app = Vue.createApp({
|
||||||
|
|||||||
@@ -774,13 +774,7 @@ include('components/lnbits-error.vue') %}
|
|||||||
v-model="password"
|
v-model="password"
|
||||||
name="password"
|
name="password"
|
||||||
:label="$t('password') + ' *'"
|
:label="$t('password') + ' *'"
|
||||||
:type="showPwd ? 'text' : 'password'"
|
type="password"
|
||||||
><template v-slot:append>
|
|
||||||
<q-icon
|
|
||||||
:name="showPwd ? 'visibility' : 'visibility_off'"
|
|
||||||
class="cursor-pointer"
|
|
||||||
@click="showPwd = !showPwd"
|
|
||||||
/> </template
|
|
||||||
></q-input>
|
></q-input>
|
||||||
<div class="row justify-end">
|
<div class="row justify-end">
|
||||||
<q-btn
|
<q-btn
|
||||||
@@ -809,28 +803,16 @@ include('components/lnbits-error.vue') %}
|
|||||||
filled
|
filled
|
||||||
v-model="password"
|
v-model="password"
|
||||||
:label="$t('password') + ' *'"
|
:label="$t('password') + ' *'"
|
||||||
:type="showPwd ? 'text' : 'password'"
|
type="password"
|
||||||
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
||||||
><template v-slot:append>
|
|
||||||
<q-icon
|
|
||||||
:name="showPwd ? 'visibility' : 'visibility_off'"
|
|
||||||
class="cursor-pointer"
|
|
||||||
@click="showPwd = !showPwd"
|
|
||||||
/> </template
|
|
||||||
></q-input>
|
></q-input>
|
||||||
<q-input
|
<q-input
|
||||||
dense
|
dense
|
||||||
filled
|
filled
|
||||||
v-model="passwordRepeat"
|
v-model="passwordRepeat"
|
||||||
:label="$t('password_repeat') + ' *'"
|
:label="$t('password_repeat') + ' *'"
|
||||||
:type="showPwdRepeat ? 'text' : 'password'"
|
type="password"
|
||||||
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
||||||
><template v-slot:append>
|
|
||||||
<q-icon
|
|
||||||
:name="showPwdRepeat ? 'visibility' : 'visibility_off'"
|
|
||||||
class="cursor-pointer"
|
|
||||||
@click="showPwdRepeat = !showPwdRepeat"
|
|
||||||
/> </template
|
|
||||||
></q-input>
|
></q-input>
|
||||||
<div
|
<div
|
||||||
v-if="confirmationMethodsCount > 1"
|
v-if="confirmationMethodsCount > 1"
|
||||||
@@ -943,28 +925,16 @@ include('components/lnbits-error.vue') %}
|
|||||||
filled
|
filled
|
||||||
v-model="password"
|
v-model="password"
|
||||||
:label="$t('password') + ' *'"
|
:label="$t('password') + ' *'"
|
||||||
:type="showPwd ? 'text' : 'password'"
|
type="password"
|
||||||
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
||||||
><template v-slot:append>
|
|
||||||
<q-icon
|
|
||||||
:name="showPwd ? 'visibility' : 'visibility_off'"
|
|
||||||
class="cursor-pointer"
|
|
||||||
@click="showPwd = !showPwd"
|
|
||||||
/> </template
|
|
||||||
></q-input>
|
></q-input>
|
||||||
<q-input
|
<q-input
|
||||||
dense
|
dense
|
||||||
filled
|
filled
|
||||||
v-model="passwordRepeat"
|
v-model="passwordRepeat"
|
||||||
:label="$t('password_repeat') + ' *'"
|
:label="$t('password_repeat') + ' *'"
|
||||||
:type="showPwdRepeat ? 'text' : 'password'"
|
type="password"
|
||||||
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
:rules="[val => !val || val.length >= 8 || $t('invalid_password')]"
|
||||||
><template v-slot:append>
|
|
||||||
<q-icon
|
|
||||||
:name="showPwdRepeat ? 'visibility' : 'visibility_off'"
|
|
||||||
class="cursor-pointer"
|
|
||||||
@click="showPwdRepeat = !showPwdRepeat"
|
|
||||||
/> </template
|
|
||||||
></q-input>
|
></q-input>
|
||||||
<div class="row justify-end">
|
<div class="row justify-end">
|
||||||
<q-btn
|
<q-btn
|
||||||
|
|||||||
@@ -866,7 +866,6 @@
|
|||||||
</q-expansion-item>
|
</q-expansion-item>
|
||||||
</q-card>
|
</q-card>
|
||||||
</q-expansion-item>
|
</q-expansion-item>
|
||||||
<q-separator></q-separator>
|
|
||||||
<q-expansion-item header-class="text-primary text-bold">
|
<q-expansion-item header-class="text-primary text-bold">
|
||||||
<template v-slot:header>
|
<template v-slot:header>
|
||||||
<q-item-section avatar>
|
<q-item-section avatar>
|
||||||
@@ -1176,8 +1175,8 @@
|
|||||||
<q-chip dense color="positive" text-color="white" icon="check"
|
<q-chip dense color="positive" text-color="white" icon="check"
|
||||||
>Checkout</q-chip
|
>Checkout</q-chip
|
||||||
>
|
>
|
||||||
<q-chip dense color="warning" text-color="black" icon="schedule"
|
<q-chip dense color="positive" text-color="white" icon="check"
|
||||||
>Subscriptions coming soon</q-chip
|
>Subscriptions</q-chip
|
||||||
>
|
>
|
||||||
<q-chip dense color="negative" text-color="white" icon="close"
|
<q-chip dense color="negative" text-color="white" icon="close"
|
||||||
>Tap-to-pay</q-chip
|
>Tap-to-pay</q-chip
|
||||||
|
|||||||
@@ -320,15 +320,6 @@
|
|||||||
>
|
>
|
||||||
</q-toggle>
|
</q-toggle>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-sm-6 col-lg-2">
|
|
||||||
<q-toggle
|
|
||||||
type="bool"
|
|
||||||
v-model="formData.lnbits_default_burger_menu_background"
|
|
||||||
color="primary"
|
|
||||||
:label="$t('burger_menu_background')"
|
|
||||||
>
|
|
||||||
</q-toggle>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|||||||
@@ -601,30 +601,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row q-mb-md">
|
|
||||||
<div class="col-4">
|
|
||||||
<span v-text="$t('burger_menu_background')"></span>
|
|
||||||
</div>
|
|
||||||
<div class="col-8">
|
|
||||||
<q-toggle
|
|
||||||
dense
|
|
||||||
flat
|
|
||||||
round
|
|
||||||
icon="menu_open"
|
|
||||||
v-model="g.burgerMenuChoice"
|
|
||||||
@update:model-value="
|
|
||||||
siteCustomisationChanged({burgerMenuChoice: $event})
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<q-tooltip
|
|
||||||
><span
|
|
||||||
v-text="$t('toggle_burger_menu_background')"
|
|
||||||
></span
|
|
||||||
></q-tooltip>
|
|
||||||
</q-toggle>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row q-mb-md">
|
<div class="row q-mb-md">
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<span v-text="$t('toggle_darkmode')"></span>
|
<span v-text="$t('toggle_darkmode')"></span>
|
||||||
|
|||||||
Generated
+193
-665
File diff suppressed because it is too large
Load Diff
+10
-10
@@ -15,24 +15,24 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"clean-css-cli": "^5.6.3",
|
"clean-css-cli": "^5.6.3",
|
||||||
"concat": "^1.0.3",
|
"concat": "^1.0.3",
|
||||||
"prettier": "^3.8.3",
|
"prettier": "^3.7.4",
|
||||||
"pyright": "1.1.289",
|
"pyright": "1.1.289",
|
||||||
"sass": "^1.99.0",
|
"sass": "^1.94.2",
|
||||||
"terser": "^5.47.1"
|
"terser": "^5.44.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.16.0",
|
"axios": "^1.15.0",
|
||||||
"chart.js": "^4.5.1",
|
"chart.js": "^4.5.1",
|
||||||
"moment": "^2.30.1",
|
"moment": "^2.30.1",
|
||||||
"nostr-tools": "^2.23.3",
|
"nostr-tools": "^2.18.2",
|
||||||
"qrcode.vue": "^3.9.0",
|
"qrcode.vue": "^3.6.0",
|
||||||
"quasar": "2.19.3",
|
"quasar": "2.18.6",
|
||||||
"showdown": "^2.1.0",
|
"showdown": "^2.1.0",
|
||||||
"underscore": "^1.13.8",
|
"underscore": "^1.13.8",
|
||||||
"vue": "3.5.34",
|
"vue": "3.5.25",
|
||||||
"vue-i18n": "^11.4.2",
|
"vue-i18n": "^11.2.2",
|
||||||
"vue-qrcode-reader": "^5.7.3",
|
"vue-qrcode-reader": "^5.7.3",
|
||||||
"vue-router": "5.0.6",
|
"vue-router": "4.6.3",
|
||||||
"vuex": "4.1.0"
|
"vuex": "4.1.0"
|
||||||
},
|
},
|
||||||
"vendor": [
|
"vendor": [
|
||||||
|
|||||||
Generated
+7
-7
@@ -1,4 +1,4 @@
|
|||||||
# This file is automatically @generated by Poetry 2.4.1 and should not be changed by hand.
|
# This file is automatically @generated by Poetry 2.4.0 and should not be changed by hand.
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aiohappyeyeballs"
|
name = "aiohappyeyeballs"
|
||||||
@@ -3394,7 +3394,7 @@ version = "5.1.2"
|
|||||||
description = "Call stack profiler for Python. Shows you why your code is slow!"
|
description = "Call stack profiler for Python. Shows you why your code is slow!"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.8"
|
python-versions = ">=3.8"
|
||||||
groups = ["main"]
|
groups = ["dev"]
|
||||||
files = [
|
files = [
|
||||||
{file = "pyinstrument-5.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f224fe80ba288a00980af298d3808219f9d246fd95b4f91729c9c33a0dc54fe6"},
|
{file = "pyinstrument-5.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f224fe80ba288a00980af298d3808219f9d246fd95b4f91729c9c33a0dc54fe6"},
|
||||||
{file = "pyinstrument-5.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7df09fc0d5b72daf48b73cdf07738761bff7f656c81aff686b3ccdd7d2abe236"},
|
{file = "pyinstrument-5.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7df09fc0d5b72daf48b73cdf07738761bff7f656c81aff686b3ccdd7d2abe236"},
|
||||||
@@ -4560,14 +4560,14 @@ files = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "urllib3"
|
name = "urllib3"
|
||||||
version = "2.7.0"
|
version = "2.6.3"
|
||||||
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.10"
|
python-versions = ">=3.9"
|
||||||
groups = ["main", "dev"]
|
groups = ["main", "dev"]
|
||||||
files = [
|
files = [
|
||||||
{file = "urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897"},
|
{file = "urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4"},
|
||||||
{file = "urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c"},
|
{file = "urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.extras]
|
[package.extras]
|
||||||
@@ -5110,4 +5110,4 @@ migration = ["psycopg2-binary"]
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.1"
|
lock-version = "2.1"
|
||||||
python-versions = ">=3.10,<3.13"
|
python-versions = ">=3.10,<3.13"
|
||||||
content-hash = "4050934800e6dfcc5242d1847d3db69eb6e91d634c09368a28255ad3c908b568"
|
content-hash = "0879a6230bbc0d0e1d8d7d090e1572ba863078b18e0d78478baf2100aa245e08"
|
||||||
|
|||||||
+1
-5
@@ -51,8 +51,6 @@ dependencies = [
|
|||||||
"pillow~=12.1.0",
|
"pillow~=12.1.0",
|
||||||
"python-dotenv~=1.2.1",
|
"python-dotenv~=1.2.1",
|
||||||
"greenlet~=3.3.0",
|
"greenlet~=3.3.0",
|
||||||
"urllib3>=2.7.0",
|
|
||||||
"pyinstrument>=5.1.2",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
@@ -85,11 +83,9 @@ dev = [
|
|||||||
"types-mock~=5.2.0.20250924",
|
"types-mock~=5.2.0.20250924",
|
||||||
"mock~=5.2.0",
|
"mock~=5.2.0",
|
||||||
"grpcio-tools~=1.76.0",
|
"grpcio-tools~=1.76.0",
|
||||||
|
"pyinstrument>=5.1.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.uv]
|
|
||||||
exclude-newer = "1 week"
|
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
packages = [
|
packages = [
|
||||||
{include = "lnbits"},
|
{include = "lnbits"},
|
||||||
|
|||||||
@@ -13,15 +13,14 @@ async def test_asset_api_upload_list_update_and_delete(
|
|||||||
client: AsyncClient,
|
client: AsyncClient,
|
||||||
user_headers_from: dict[str, str],
|
user_headers_from: dict[str, str],
|
||||||
):
|
):
|
||||||
payload = get_png_bytes()
|
|
||||||
upload = await client.post(
|
upload = await client.post(
|
||||||
"/api/v1/assets?public_asset=false",
|
"/api/v1/assets?public_asset=false",
|
||||||
headers={"Authorization": user_headers_from["Authorization"]},
|
headers={"Authorization": user_headers_from["Authorization"]},
|
||||||
files={"file": ("note.png", payload, "image/png")},
|
files={"file": ("note.txt", b"hello world", "text/plain")},
|
||||||
)
|
)
|
||||||
assert upload.status_code == 200
|
assert upload.status_code == 200
|
||||||
asset = upload.json()
|
asset = upload.json()
|
||||||
assert asset["name"] == "note.png"
|
assert asset["name"] == "note.txt"
|
||||||
assert asset["is_public"] is False
|
assert asset["is_public"] is False
|
||||||
|
|
||||||
page = await client.get("/api/v1/assets/paginated", headers=user_headers_from)
|
page = await client.get("/api/v1/assets/paginated", headers=user_headers_from)
|
||||||
@@ -30,30 +29,27 @@ async def test_asset_api_upload_list_update_and_delete(
|
|||||||
|
|
||||||
info = await client.get(f"/api/v1/assets/{asset['id']}", headers=user_headers_from)
|
info = await client.get(f"/api/v1/assets/{asset['id']}", headers=user_headers_from)
|
||||||
assert info.status_code == 200
|
assert info.status_code == 200
|
||||||
assert info.json()["name"] == "note.png"
|
assert info.json()["name"] == "note.txt"
|
||||||
|
|
||||||
data = await client.get(
|
data = await client.get(
|
||||||
f"/api/v1/assets/{asset['id']}/data", headers=user_headers_from
|
f"/api/v1/assets/{asset['id']}/data", headers=user_headers_from
|
||||||
)
|
)
|
||||||
assert data.status_code == 200
|
assert data.status_code == 200
|
||||||
assert data.content == payload
|
assert data.content == b"hello world"
|
||||||
assert data.headers["content-type"] == "image/png"
|
assert data.headers["content-disposition"] == 'inline; filename="note.txt"'
|
||||||
assert data.headers["content-disposition"] == 'inline; filename="note.png"'
|
|
||||||
assert data.headers["x-content-type-options"] == "nosniff"
|
|
||||||
assert data.headers["content-security-policy"].startswith("sandbox")
|
|
||||||
|
|
||||||
updated = await client.put(
|
updated = await client.put(
|
||||||
f"/api/v1/assets/{asset['id']}",
|
f"/api/v1/assets/{asset['id']}",
|
||||||
headers=user_headers_from,
|
headers=user_headers_from,
|
||||||
json={"name": "renamed.png", "is_public": True},
|
json={"name": "renamed.txt", "is_public": True},
|
||||||
)
|
)
|
||||||
assert updated.status_code == 200
|
assert updated.status_code == 200
|
||||||
assert updated.json()["name"] == "renamed.png"
|
assert updated.json()["name"] == "renamed.txt"
|
||||||
assert updated.json()["is_public"] is True
|
assert updated.json()["is_public"] is True
|
||||||
|
|
||||||
public_data = await client.get(f"/api/v1/assets/{asset['id']}/data")
|
public_data = await client.get(f"/api/v1/assets/{asset['id']}/data")
|
||||||
assert public_data.status_code == 200
|
assert public_data.status_code == 200
|
||||||
assert public_data.content == payload
|
assert public_data.content == b"hello world"
|
||||||
|
|
||||||
deleted = await client.delete(
|
deleted = await client.delete(
|
||||||
f"/api/v1/assets/{asset['id']}", headers=user_headers_from
|
f"/api/v1/assets/{asset['id']}", headers=user_headers_from
|
||||||
@@ -102,51 +98,15 @@ async def test_asset_api_enforces_visibility_and_supports_admin_updates(
|
|||||||
assert admin_updated.json()["is_public"] is True
|
assert admin_updated.json()["is_public"] is True
|
||||||
assert admin_updated.json()["name"] == "admin-visible.png"
|
assert admin_updated.json()["name"] == "admin-visible.png"
|
||||||
|
|
||||||
image_data = await client.get(f"/api/v1/assets/{private_asset.id}/data")
|
|
||||||
assert image_data.status_code == 200
|
|
||||||
assert image_data.headers["content-type"] == "image/png"
|
|
||||||
assert image_data.headers["content-disposition"] == (
|
|
||||||
'inline; filename="admin-visible.png"'
|
|
||||||
)
|
|
||||||
assert image_data.headers["x-content-type-options"] == "nosniff"
|
|
||||||
|
|
||||||
thumbnail = await client.get(f"/api/v1/assets/{private_asset.id}/thumbnail")
|
thumbnail = await client.get(f"/api/v1/assets/{private_asset.id}/thumbnail")
|
||||||
assert thumbnail.status_code == 200
|
assert thumbnail.status_code == 200
|
||||||
assert thumbnail.content
|
assert thumbnail.content
|
||||||
assert thumbnail.headers["content-type"] == "image/png"
|
assert thumbnail.headers["content-type"] == "image/png"
|
||||||
assert thumbnail.headers["content-disposition"] == (
|
|
||||||
'inline; filename="admin-visible.png"'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_asset_api_blocks_non_image_uploads(
|
|
||||||
client: AsyncClient,
|
|
||||||
user_headers_from: dict[str, str],
|
|
||||||
):
|
|
||||||
payload = (
|
|
||||||
b'<?xml version="1.0"?>'
|
|
||||||
b'<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">'
|
|
||||||
b'<xsl:template match="/">'
|
|
||||||
b"<script>alert(1)</script>"
|
|
||||||
b"</xsl:template>"
|
|
||||||
b"</xsl:stylesheet>"
|
|
||||||
)
|
|
||||||
|
|
||||||
blocked = await client.post(
|
|
||||||
"/api/v1/assets",
|
|
||||||
headers={"Authorization": user_headers_from["Authorization"]},
|
|
||||||
files={"file": ("payload.xsl", payload, "text/xml")},
|
|
||||||
)
|
|
||||||
|
|
||||||
assert blocked.status_code == 400
|
|
||||||
assert blocked.json()["detail"] == "File type 'text/xml' not allowed."
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
async def test_asset_api_validates_uploads_and_missing_assets(
|
async def test_asset_api_validates_uploads_and_missing_assets(
|
||||||
client: AsyncClient,
|
client: AsyncClient,
|
||||||
to_user,
|
|
||||||
user_headers_from: dict[str, str],
|
user_headers_from: dict[str, str],
|
||||||
):
|
):
|
||||||
invalid = await client.post(
|
invalid = await client.post(
|
||||||
@@ -157,15 +117,6 @@ async def test_asset_api_validates_uploads_and_missing_assets(
|
|||||||
assert invalid.status_code == 400
|
assert invalid.status_code == 400
|
||||||
assert "not allowed" in invalid.json()["detail"]
|
assert "not allowed" in invalid.json()["detail"]
|
||||||
|
|
||||||
fake_image_headers = await get_user_token_headers(client, to_user.id)
|
|
||||||
fake_image = await client.post(
|
|
||||||
"/api/v1/assets",
|
|
||||||
headers={"Authorization": fake_image_headers["Authorization"]},
|
|
||||||
files={"file": ("fake.png", b"<root></root>", "image/png")},
|
|
||||||
)
|
|
||||||
assert fake_image.status_code == 400
|
|
||||||
assert "does not match declared file type" in fake_image.json()["detail"]
|
|
||||||
|
|
||||||
missing = await client.delete(
|
missing = await client.delete(
|
||||||
f"/api/v1/assets/{uuid4().hex}",
|
f"/api/v1/assets/{uuid4().hex}",
|
||||||
headers=user_headers_from,
|
headers=user_headers_from,
|
||||||
@@ -177,9 +128,7 @@ async def test_asset_api_validates_uploads_and_missing_assets(
|
|||||||
|
|
||||||
stored = await create_user_asset(
|
stored = await create_user_asset(
|
||||||
"missing-user-check",
|
"missing-user-check",
|
||||||
make_upload_file(
|
make_upload_file(b"content", filename="content.txt", content_type="text/plain"),
|
||||||
get_png_bytes(), filename="content.png", content_type="image/png"
|
|
||||||
),
|
|
||||||
is_public=True,
|
is_public=True,
|
||||||
)
|
)
|
||||||
fetched = await get_user_asset("missing-user-check", stored.id)
|
fetched = await get_user_asset("missing-user-check", stored.id)
|
||||||
|
|||||||
+19
-127
@@ -185,10 +185,17 @@ async def test_callback_api_handles_revolut_paid_events(mocker):
|
|||||||
async def test_callback_api_handles_revolut_subscription_event(
|
async def test_callback_api_handles_revolut_subscription_event(
|
||||||
mocker, settings: Settings
|
mocker, settings: Settings
|
||||||
):
|
):
|
||||||
wallet_id = "wallet_1"
|
user = await create_user_account(
|
||||||
payment = mocker.Mock()
|
Account(
|
||||||
payment.extra = {}
|
id=uuid4().hex,
|
||||||
payment.msat = 925_000
|
username=f"user_{uuid4().hex[:8]}",
|
||||||
|
email=f"user_{uuid4().hex[:8]}@lnbits.com",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
wallet = user.wallets[0]
|
||||||
|
payment = await create_wallet_invoice(
|
||||||
|
wallet.id, CreateInvoice(out=False, amount=15, memo="subscription")
|
||||||
|
)
|
||||||
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
settings.revolut_api_secret_key = "revolut-secret"
|
||||||
@@ -202,7 +209,7 @@ async def test_callback_api_handles_revolut_subscription_event(
|
|||||||
"current_cycle_id": "CYCLE_1",
|
"current_cycle_id": "CYCLE_1",
|
||||||
"external_reference": json.dumps(
|
"external_reference": json.dumps(
|
||||||
{
|
{
|
||||||
"wallet_id": wallet_id,
|
"wallet_id": wallet.id,
|
||||||
"tag": "members",
|
"tag": "members",
|
||||||
"subscription_request_id": "request_1",
|
"subscription_request_id": "request_1",
|
||||||
"extra": {"link": "link-1", "customer_id": "customer_1"},
|
"extra": {"link": "link-1", "customer_id": "customer_1"},
|
||||||
@@ -234,14 +241,10 @@ async def test_callback_api_handles_revolut_subscription_event(
|
|||||||
"lnbits.core.views.callback_api.get_standalone_payment",
|
"lnbits.core.views.callback_api.get_standalone_payment",
|
||||||
mocker.AsyncMock(side_effect=[None]),
|
mocker.AsyncMock(side_effect=[None]),
|
||||||
)
|
)
|
||||||
create_wallet_invoice_mock = mocker.patch(
|
create_fiat_invoice_mock = mocker.patch(
|
||||||
"lnbits.core.views.callback_api.create_wallet_invoice",
|
"lnbits.core.views.callback_api.create_fiat_invoice",
|
||||||
mocker.AsyncMock(return_value=payment),
|
mocker.AsyncMock(return_value=payment),
|
||||||
)
|
)
|
||||||
mocker.patch("lnbits.core.views.callback_api.service_fee_fiat", return_value=2)
|
|
||||||
update_payment_mock = mocker.patch(
|
|
||||||
"lnbits.core.views.callback_api.update_payment", mocker.AsyncMock()
|
|
||||||
)
|
|
||||||
fiat_status_mock = mocker.patch(
|
fiat_status_mock = mocker.patch(
|
||||||
"lnbits.core.views.callback_api.check_fiat_status", mocker.AsyncMock()
|
"lnbits.core.views.callback_api.check_fiat_status", mocker.AsyncMock()
|
||||||
)
|
)
|
||||||
@@ -253,127 +256,16 @@ async def test_callback_api_handles_revolut_subscription_event(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
assert create_wallet_invoice_mock.await_count == 1
|
assert create_fiat_invoice_mock.await_count == 1
|
||||||
called_wallet_id, invoice = create_wallet_invoice_mock.await_args.args
|
revolut_call = create_fiat_invoice_mock.await_args.kwargs
|
||||||
assert called_wallet_id == "wallet_1"
|
assert revolut_call["wallet_id"] == wallet.id
|
||||||
|
invoice = revolut_call["invoice_data"]
|
||||||
|
assert invoice.fiat_provider == "revolut"
|
||||||
assert invoice.amount == 9.25
|
assert invoice.amount == 9.25
|
||||||
assert invoice.memo == "Revolut Members"
|
assert invoice.memo == "Revolut Members"
|
||||||
assert invoice.external_id == "SUBSCRIPTION_1"
|
assert invoice.external_id == "SUBSCRIPTION_1"
|
||||||
assert invoice.internal is True
|
|
||||||
assert invoice.extra["fiat_method"] == "subscription"
|
assert invoice.extra["fiat_method"] == "subscription"
|
||||||
assert invoice.extra["subscription"]["checking_id"] == "order_ORDER_SUB_1"
|
assert invoice.extra["subscription"]["checking_id"] == "order_ORDER_SUB_1"
|
||||||
assert payment.fiat_provider == "revolut"
|
|
||||||
assert payment.fee == -2
|
|
||||||
assert payment.extra["fiat_checking_id"] == "order_ORDER_SUB_1"
|
|
||||||
assert payment.checking_id == "fiat_revolut_order_ORDER_SUB_1"
|
|
||||||
update_payment_mock.assert_awaited_once_with(
|
|
||||||
payment, "fiat_revolut_order_ORDER_SUB_1"
|
|
||||||
)
|
|
||||||
fiat_status_mock.assert_awaited_once_with(payment)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_callback_api_handles_revolut_subscription_order_event(
|
|
||||||
mocker, settings: Settings
|
|
||||||
):
|
|
||||||
wallet_id = "wallet_1"
|
|
||||||
payment = mocker.Mock()
|
|
||||||
payment.extra = {}
|
|
||||||
payment.msat = 925_000
|
|
||||||
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
revolut_provider = RevolutWallet()
|
|
||||||
subscription = {
|
|
||||||
"id": "SUBSCRIPTION_1",
|
|
||||||
"state": "active",
|
|
||||||
"current_cycle_id": "CYCLE_1",
|
|
||||||
"external_reference": json.dumps(
|
|
||||||
{
|
|
||||||
"wallet_id": wallet_id,
|
|
||||||
"tag": "members",
|
|
||||||
"subscription_request_id": "request_1",
|
|
||||||
"extra": {"link": "link-1"},
|
|
||||||
"memo": "Revolut Members",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
}
|
|
||||||
order = {
|
|
||||||
"id": "ORDER_SUB_1",
|
|
||||||
"type": "payment",
|
|
||||||
"state": "completed",
|
|
||||||
"amount": 925,
|
|
||||||
"currency": "USD",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/sub_1",
|
|
||||||
"channel_data": {
|
|
||||||
"subscription_id": "SUBSCRIPTION_1",
|
|
||||||
"subscription_cycle_id": "CYCLE_1",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
get_order_mock = mocker.patch.object(
|
|
||||||
revolut_provider, "get_order", side_effect=[order, order]
|
|
||||||
)
|
|
||||||
get_subscription_mock = mocker.patch.object(
|
|
||||||
revolut_provider,
|
|
||||||
"get_subscription",
|
|
||||||
return_value=subscription,
|
|
||||||
)
|
|
||||||
mocker.patch.object(
|
|
||||||
revolut_provider,
|
|
||||||
"get_subscription_cycle",
|
|
||||||
return_value={"id": "CYCLE_1", "order_id": "ORDER_SUB_1"},
|
|
||||||
)
|
|
||||||
mocker.patch(
|
|
||||||
"lnbits.core.views.callback_api.get_fiat_provider",
|
|
||||||
mocker.AsyncMock(return_value=revolut_provider),
|
|
||||||
)
|
|
||||||
get_payment_mock = mocker.patch(
|
|
||||||
"lnbits.core.views.callback_api.get_standalone_payment",
|
|
||||||
mocker.AsyncMock(side_effect=[None, None]),
|
|
||||||
)
|
|
||||||
create_wallet_invoice_mock = mocker.patch(
|
|
||||||
"lnbits.core.views.callback_api.create_wallet_invoice",
|
|
||||||
mocker.AsyncMock(return_value=payment),
|
|
||||||
)
|
|
||||||
mocker.patch("lnbits.core.views.callback_api.service_fee_fiat", return_value=2)
|
|
||||||
update_payment_mock = mocker.patch(
|
|
||||||
"lnbits.core.views.callback_api.update_payment", mocker.AsyncMock()
|
|
||||||
)
|
|
||||||
fiat_status_mock = mocker.patch(
|
|
||||||
"lnbits.core.views.callback_api.check_fiat_status", mocker.AsyncMock()
|
|
||||||
)
|
|
||||||
|
|
||||||
await handle_revolut_event(
|
|
||||||
{
|
|
||||||
"event": "ORDER_COMPLETED",
|
|
||||||
"order_id": "ORDER_SUB_1",
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
assert get_payment_mock.await_count == 2
|
|
||||||
get_payment_mock.assert_any_await("fiat_revolut_order_ORDER_SUB_1")
|
|
||||||
assert get_order_mock.await_count == 2
|
|
||||||
assert [call.args for call in get_subscription_mock.await_args_list] == [
|
|
||||||
("SUBSCRIPTION_1",),
|
|
||||||
("SUBSCRIPTION_1",),
|
|
||||||
]
|
|
||||||
assert create_wallet_invoice_mock.await_count == 1
|
|
||||||
called_wallet_id, invoice = create_wallet_invoice_mock.await_args.args
|
|
||||||
assert called_wallet_id == "wallet_1"
|
|
||||||
assert invoice.amount == 9.25
|
|
||||||
assert invoice.memo == "Revolut Members"
|
|
||||||
assert invoice.external_id == "SUBSCRIPTION_1"
|
|
||||||
assert invoice.internal is True
|
|
||||||
assert invoice.extra["fiat_method"] == "subscription"
|
|
||||||
assert invoice.extra["subscription"]["checking_id"] == "order_ORDER_SUB_1"
|
|
||||||
assert payment.fiat_provider == "revolut"
|
|
||||||
assert payment.fee == -2
|
|
||||||
assert payment.extra["fiat_checking_id"] == "order_ORDER_SUB_1"
|
|
||||||
assert payment.checking_id == "fiat_revolut_order_ORDER_SUB_1"
|
|
||||||
update_payment_mock.assert_awaited_once_with(
|
|
||||||
payment, "fiat_revolut_order_ORDER_SUB_1"
|
|
||||||
)
|
|
||||||
fiat_status_mock.assert_awaited_once_with(payment)
|
fiat_status_mock.assert_awaited_once_with(payment)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
98ae578877a3479bb0424d2e418b427a
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
6355d3c6c5df49dbb562a74f9deb19ce
|
||||||
@@ -74,7 +74,6 @@ class MockHTTPClient:
|
|||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def fiat_provider_test_settings(settings: Settings):
|
def fiat_provider_test_settings(settings: Settings):
|
||||||
original_lnbits_running = settings.lnbits_running
|
|
||||||
original_allowed_currencies = settings.lnbits_allowed_currencies
|
original_allowed_currencies = settings.lnbits_allowed_currencies
|
||||||
original_paypal_enabled = settings.paypal_enabled
|
original_paypal_enabled = settings.paypal_enabled
|
||||||
original_square_enabled = settings.square_enabled
|
original_square_enabled = settings.square_enabled
|
||||||
@@ -99,7 +98,6 @@ def fiat_provider_test_settings(settings: Settings):
|
|||||||
settings.square_enabled = False
|
settings.square_enabled = False
|
||||||
settings.revolut_enabled = False
|
settings.revolut_enabled = False
|
||||||
yield
|
yield
|
||||||
settings.lnbits_running = original_lnbits_running
|
|
||||||
settings.lnbits_allowed_currencies = original_allowed_currencies
|
settings.lnbits_allowed_currencies = original_allowed_currencies
|
||||||
settings.paypal_enabled = original_paypal_enabled
|
settings.paypal_enabled = original_paypal_enabled
|
||||||
settings.square_enabled = original_square_enabled
|
settings.square_enabled = original_square_enabled
|
||||||
@@ -447,7 +445,6 @@ async def test_square_wallet_create_invoice(settings: Settings):
|
|||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
async def test_square_wallet_create_subscription(settings: Settings):
|
async def test_square_wallet_create_subscription(settings: Settings):
|
||||||
settings.lnbits_running = False
|
|
||||||
settings.square_api_endpoint = "https://connect.squareupsandbox.com"
|
settings.square_api_endpoint = "https://connect.squareupsandbox.com"
|
||||||
settings.square_access_token = "square-token"
|
settings.square_access_token = "square-token"
|
||||||
settings.square_location_id = "LOC123"
|
settings.square_location_id = "LOC123"
|
||||||
@@ -523,7 +520,6 @@ async def test_square_wallet_create_subscription(settings: Settings):
|
|||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
async def test_square_wallet_create_subscription_from_plan_id(settings: Settings):
|
async def test_square_wallet_create_subscription_from_plan_id(settings: Settings):
|
||||||
settings.lnbits_running = False
|
|
||||||
settings.square_api_endpoint = "https://connect.squareupsandbox.com"
|
settings.square_api_endpoint = "https://connect.squareupsandbox.com"
|
||||||
settings.square_access_token = "square-token"
|
settings.square_access_token = "square-token"
|
||||||
settings.square_location_id = "LOC123"
|
settings.square_location_id = "LOC123"
|
||||||
@@ -812,48 +808,6 @@ async def test_revolut_wallet_create_invoice(settings: Settings):
|
|||||||
assert payload["redirect_url"] == "https://lnbits.example/success"
|
assert payload["redirect_url"] == "https://lnbits.example/success"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_revolut_wallet_create_invoice_uses_currency_minor_units(
|
|
||||||
settings: Settings,
|
|
||||||
):
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
|
|
||||||
wallet = RevolutWallet()
|
|
||||||
client = MockHTTPClient(
|
|
||||||
[
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "ORDER_JPY",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/jpy",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "ORDER_KWD",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/kwd",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
wallet.client = client # type: ignore[assignment]
|
|
||||||
|
|
||||||
await wallet.create_invoice(
|
|
||||||
amount=123,
|
|
||||||
payment_hash="hash_jpy",
|
|
||||||
currency="JPY",
|
|
||||||
)
|
|
||||||
await wallet.create_invoice(
|
|
||||||
amount=1.234,
|
|
||||||
payment_hash="hash_kwd",
|
|
||||||
currency="KWD",
|
|
||||||
)
|
|
||||||
|
|
||||||
assert client.calls[0][1]["json"]["amount"] == 123
|
|
||||||
assert client.calls[1][1]["json"]["amount"] == 1234
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
async def test_revolut_wallet_get_invoice_status(settings: Settings):
|
async def test_revolut_wallet_get_invoice_status(settings: Settings):
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
||||||
@@ -880,16 +834,6 @@ async def test_revolut_wallet_create_subscription(settings: Settings):
|
|||||||
wallet = RevolutWallet()
|
wallet = RevolutWallet()
|
||||||
client = MockHTTPClient(
|
client = MockHTTPClient(
|
||||||
[
|
[
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"customers": [
|
|
||||||
{
|
|
||||||
"id": "CUSTOMER123",
|
|
||||||
"email": "customer@example.com",
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
MockHTTPResponse(
|
||||||
json_data={
|
json_data={
|
||||||
"id": "SUBSCRIPTION123",
|
"id": "SUBSCRIPTION123",
|
||||||
@@ -910,8 +854,7 @@ async def test_revolut_wallet_create_subscription(settings: Settings):
|
|||||||
wallet_id="wallet_1",
|
wallet_id="wallet_1",
|
||||||
memo="Monthly Gold",
|
memo="Monthly Gold",
|
||||||
tag="gold",
|
tag="gold",
|
||||||
customer_email="customer@example.com",
|
extra={"customer_id": "CUSTOMER123", "link": "link-1"},
|
||||||
extra={"link": "link-1"},
|
|
||||||
success_url="https://lnbits.example/subscription-success",
|
success_url="https://lnbits.example/subscription-success",
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -920,312 +863,24 @@ async def test_revolut_wallet_create_subscription(settings: Settings):
|
|||||||
)
|
)
|
||||||
|
|
||||||
assert response.ok is True
|
assert response.ok is True
|
||||||
assert response.subscription_request_id is not None
|
assert response.subscription_request_id == "SUBSCRIPTION123"
|
||||||
assert (
|
assert (
|
||||||
response.checkout_session_url
|
response.checkout_session_url
|
||||||
== "https://checkout.revolut.com/payment-link/sub_123"
|
== "https://checkout.revolut.com/payment-link/sub_123"
|
||||||
)
|
)
|
||||||
assert client.calls[0][0] == "/api/customers"
|
assert client.calls[0][0] == "/api/subscriptions"
|
||||||
assert client.calls[0][1]["params"] == {"limit": 500}
|
payload = client.calls[0][1]["json"]
|
||||||
assert client.calls[0][1]["timeout"] == 30
|
|
||||||
assert client.calls[1][0] == "/api/subscriptions"
|
|
||||||
payload = client.calls[1][1]["json"]
|
|
||||||
assert payload["plan_variation_id"] == "PLAN_VARIATION_123"
|
assert payload["plan_variation_id"] == "PLAN_VARIATION_123"
|
||||||
assert payload["customer_id"] == "CUSTOMER123"
|
assert payload["customer_id"] == "CUSTOMER123"
|
||||||
assert client.calls[1][1]["timeout"] == 30
|
|
||||||
assert client.calls[1][1]["headers"]["Idempotency-Key"] == (
|
|
||||||
response.subscription_request_id
|
|
||||||
)
|
|
||||||
assert payload["setup_order_redirect_url"] == (
|
assert payload["setup_order_redirect_url"] == (
|
||||||
"https://lnbits.example/subscription-success"
|
"https://lnbits.example/subscription-success"
|
||||||
)
|
)
|
||||||
reference = json.loads(payload["external_reference"])
|
reference = json.loads(payload["external_reference"])
|
||||||
assert reference["wallet_id"] == "wallet_1"
|
assert reference["wallet_id"] == "wallet_1"
|
||||||
assert reference["tag"] == "gold"
|
assert reference["tag"] == "gold"
|
||||||
assert reference["subscription_request_id"] == response.subscription_request_id
|
|
||||||
assert reference["memo"] == "Monthly Gold"
|
assert reference["memo"] == "Monthly Gold"
|
||||||
assert reference["extra"]["link"] == "link-1"
|
assert reference["extra"]["customer_id"] == "CUSTOMER123"
|
||||||
assert client.calls[2][0] == "/api/orders/ORDER123"
|
assert client.calls[1][0] == "/api/orders/ORDER123"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_revolut_wallet_create_subscription_uses_customer_email(
|
|
||||||
settings: Settings,
|
|
||||||
):
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
|
|
||||||
wallet = RevolutWallet()
|
|
||||||
client = MockHTTPClient(
|
|
||||||
[
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"customers": [
|
|
||||||
{
|
|
||||||
"id": "CUSTOMER123",
|
|
||||||
"email": "customer@example.com",
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "SUBSCRIPTION123",
|
|
||||||
"setup_order_id": "ORDER123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "ORDER123",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/sub_123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
wallet.client = client # type: ignore[assignment]
|
|
||||||
|
|
||||||
payment_options = FiatSubscriptionPaymentOptions(
|
|
||||||
wallet_id="wallet_1",
|
|
||||||
customer_email="customer@example.com",
|
|
||||||
)
|
|
||||||
|
|
||||||
response = await wallet.create_subscription(
|
|
||||||
"PLAN_VARIATION_123", 1, payment_options
|
|
||||||
)
|
|
||||||
|
|
||||||
assert response.ok is True
|
|
||||||
assert client.calls[0][0] == "/api/customers"
|
|
||||||
assert client.calls[0][1]["params"] == {"limit": 500}
|
|
||||||
assert client.calls[0][1]["timeout"] == 30
|
|
||||||
assert client.calls[1][0] == "/api/subscriptions"
|
|
||||||
assert client.calls[1][1]["json"]["customer_id"] == "CUSTOMER123"
|
|
||||||
assert client.calls[1][1]["timeout"] == 30
|
|
||||||
assert client.calls[2][0] == "/api/orders/ORDER123"
|
|
||||||
assert client.calls[2][1]["timeout"] == 30
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_revolut_wallet_create_subscription_uses_paginated_customer_email(
|
|
||||||
settings: Settings,
|
|
||||||
):
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
|
|
||||||
wallet = RevolutWallet()
|
|
||||||
client = MockHTTPClient(
|
|
||||||
[
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"next_page_token": "PAGE2",
|
|
||||||
"customers": [
|
|
||||||
{
|
|
||||||
"id": "OTHER_CUSTOMER",
|
|
||||||
"email": "other@example.com",
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"customers": [
|
|
||||||
{
|
|
||||||
"id": "CUSTOMER123",
|
|
||||||
"email": "customer@example.com",
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "SUBSCRIPTION123",
|
|
||||||
"setup_order_id": "ORDER123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "ORDER123",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/sub_123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
wallet.client = client # type: ignore[assignment]
|
|
||||||
|
|
||||||
payment_options = FiatSubscriptionPaymentOptions(
|
|
||||||
wallet_id="wallet_1",
|
|
||||||
customer_email="customer@example.com",
|
|
||||||
)
|
|
||||||
|
|
||||||
response = await wallet.create_subscription(
|
|
||||||
"PLAN_VARIATION_123", 1, payment_options
|
|
||||||
)
|
|
||||||
|
|
||||||
assert response.ok is True
|
|
||||||
assert client.calls[0][0] == "/api/customers"
|
|
||||||
assert client.calls[0][1]["params"] == {"limit": 500}
|
|
||||||
assert client.calls[1][0] == "/api/customers"
|
|
||||||
assert client.calls[1][1]["params"] == {
|
|
||||||
"limit": 500,
|
|
||||||
"page_token": "PAGE2",
|
|
||||||
}
|
|
||||||
assert client.calls[1][1]["timeout"] == 30
|
|
||||||
assert client.calls[2][0] == "/api/subscriptions"
|
|
||||||
assert client.calls[2][1]["json"]["customer_id"] == "CUSTOMER123"
|
|
||||||
assert client.calls[3][0] == "/api/orders/ORDER123"
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_revolut_wallet_create_subscription_creates_customer(settings: Settings):
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
|
|
||||||
wallet = RevolutWallet()
|
|
||||||
client = MockHTTPClient(
|
|
||||||
[
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"next_page_token": "PAGE2",
|
|
||||||
"customers": [
|
|
||||||
{
|
|
||||||
"id": "OTHER_CUSTOMER",
|
|
||||||
"email": "other@example.com",
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(json_data={"customers": []}),
|
|
||||||
MockHTTPResponse(json_data={"id": "CUSTOMER123"}),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "SUBSCRIPTION123",
|
|
||||||
"setup_order_id": "ORDER123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "ORDER123",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/sub_123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
wallet.client = client # type: ignore[assignment]
|
|
||||||
|
|
||||||
payment_options = FiatSubscriptionPaymentOptions(
|
|
||||||
wallet_id="wallet_1",
|
|
||||||
customer_email="customer@example.com",
|
|
||||||
)
|
|
||||||
|
|
||||||
response = await wallet.create_subscription(
|
|
||||||
"PLAN_VARIATION_123", 1, payment_options
|
|
||||||
)
|
|
||||||
|
|
||||||
assert response.ok is True
|
|
||||||
assert client.calls[0][0] == "/api/customers"
|
|
||||||
assert client.calls[0][1]["params"] == {"limit": 500}
|
|
||||||
assert client.calls[1][0] == "/api/customers"
|
|
||||||
assert client.calls[1][1]["params"] == {
|
|
||||||
"limit": 500,
|
|
||||||
"page_token": "PAGE2",
|
|
||||||
}
|
|
||||||
assert client.calls[2][0] == "/api/customers"
|
|
||||||
assert client.calls[2][1]["json"] == {"email": "customer@example.com"}
|
|
||||||
assert client.calls[2][1]["timeout"] == 30
|
|
||||||
assert client.calls[3][0] == "/api/subscriptions"
|
|
||||||
assert client.calls[3][1]["json"]["customer_id"] == "CUSTOMER123"
|
|
||||||
assert client.calls[4][0] == "/api/orders/ORDER123"
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_revolut_wallet_create_subscription_stops_customer_lookup_after_20_pages(
|
|
||||||
settings: Settings,
|
|
||||||
):
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
|
|
||||||
wallet = RevolutWallet()
|
|
||||||
customer_pages = [
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"next_page_token": f"PAGE{page + 2}",
|
|
||||||
"customers": [
|
|
||||||
{
|
|
||||||
"id": f"OTHER_CUSTOMER_{page}",
|
|
||||||
"email": f"other-{page}@example.com",
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
|
||||||
)
|
|
||||||
for page in range(20)
|
|
||||||
]
|
|
||||||
client = MockHTTPClient(
|
|
||||||
[
|
|
||||||
*customer_pages,
|
|
||||||
MockHTTPResponse(json_data={"id": "CUSTOMER123"}),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "SUBSCRIPTION123",
|
|
||||||
"setup_order_id": "ORDER123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
MockHTTPResponse(
|
|
||||||
json_data={
|
|
||||||
"id": "ORDER123",
|
|
||||||
"checkout_url": "https://checkout.revolut.com/payment-link/sub_123",
|
|
||||||
}
|
|
||||||
),
|
|
||||||
]
|
|
||||||
)
|
|
||||||
wallet.client = client # type: ignore[assignment]
|
|
||||||
|
|
||||||
payment_options = FiatSubscriptionPaymentOptions(
|
|
||||||
wallet_id="wallet_1",
|
|
||||||
customer_email="customer@example.com",
|
|
||||||
)
|
|
||||||
|
|
||||||
response = await wallet.create_subscription(
|
|
||||||
"PLAN_VARIATION_123", 1, payment_options
|
|
||||||
)
|
|
||||||
|
|
||||||
assert response.ok is True
|
|
||||||
assert [call[0] for call in client.calls[:20]] == ["/api/customers"] * 20
|
|
||||||
assert client.calls[0][1]["params"] == {"limit": 500}
|
|
||||||
assert client.calls[19][1]["params"] == {
|
|
||||||
"limit": 500,
|
|
||||||
"page_token": "PAGE20",
|
|
||||||
}
|
|
||||||
assert client.calls[20][0] == "/api/customers"
|
|
||||||
assert client.calls[20][1]["json"] == {"email": "customer@example.com"}
|
|
||||||
assert client.calls[21][0] == "/api/subscriptions"
|
|
||||||
assert client.calls[21][1]["json"]["customer_id"] == "CUSTOMER123"
|
|
||||||
assert client.calls[22][0] == "/api/orders/ORDER123"
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_revolut_wallet_create_subscription_requires_customer_email(
|
|
||||||
settings: Settings,
|
|
||||||
):
|
|
||||||
settings.revolut_api_endpoint = "https://sandbox-merchant.revolut.com"
|
|
||||||
settings.revolut_api_secret_key = "revolut-secret"
|
|
||||||
settings.revolut_api_version = "2026-04-20"
|
|
||||||
|
|
||||||
wallet = RevolutWallet()
|
|
||||||
client = MockHTTPClient([])
|
|
||||||
wallet.client = client # type: ignore[assignment]
|
|
||||||
|
|
||||||
payment_options = FiatSubscriptionPaymentOptions(wallet_id="wallet_1")
|
|
||||||
|
|
||||||
response = await wallet.create_subscription(
|
|
||||||
"PLAN_VARIATION_123", 1, payment_options
|
|
||||||
)
|
|
||||||
|
|
||||||
assert response.ok is False
|
|
||||||
assert response.error_message == "Revolut subscriptions require customer_email."
|
|
||||||
assert client.calls == []
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
@@ -1281,7 +936,7 @@ async def test_revolut_wallet_create_webhook(mocker: MockerFixture):
|
|||||||
(
|
(
|
||||||
"/api/webhooks",
|
"/api/webhooks",
|
||||||
{
|
{
|
||||||
"timeout": 30,
|
"timeout": 15,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
@@ -1291,7 +946,7 @@ async def test_revolut_wallet_create_webhook(mocker: MockerFixture):
|
|||||||
"url": "https://lnbits.example/api/v1/callback/revolut",
|
"url": "https://lnbits.example/api/v1/callback/revolut",
|
||||||
"events": REVOLUT_WEBHOOK_EVENTS,
|
"events": REVOLUT_WEBHOOK_EVENTS,
|
||||||
},
|
},
|
||||||
"timeout": 30,
|
"timeout": 15,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
@@ -1331,7 +986,7 @@ async def test_revolut_wallet_reuses_existing_webhook(mocker: MockerFixture):
|
|||||||
(
|
(
|
||||||
"/api/webhooks",
|
"/api/webhooks",
|
||||||
{
|
{
|
||||||
"timeout": 30,
|
"timeout": 15,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
@@ -1350,22 +1005,20 @@ async def test_revolut_wallet_rejects_local_webhook_url():
|
|||||||
|
|
||||||
def test_check_revolut_signature():
|
def test_check_revolut_signature():
|
||||||
payload = b'{"event":"ORDER_COMPLETED","order_id":"ORDER123"}'
|
payload = b'{"event":"ORDER_COMPLETED","order_id":"ORDER123"}'
|
||||||
timestamp = str(int(time.time() * 1000))
|
timestamp = str(int(time.time()))
|
||||||
secret = "revolut-secret"
|
secret = "revolut-secret"
|
||||||
signed_payload = b"v1." + timestamp.encode() + b"." + payload
|
sig = hmac.new(secret.encode(), payload, hashlib.sha256).hexdigest()
|
||||||
sig = "v1=" + hmac.new(secret.encode(), signed_payload, hashlib.sha256).hexdigest()
|
|
||||||
|
|
||||||
check_revolut_signature(payload, sig, timestamp, secret)
|
check_revolut_signature(payload, sig, timestamp, secret)
|
||||||
|
|
||||||
|
|
||||||
def test_check_revolut_signature_rejects_payload_only_signature():
|
def test_check_revolut_signature_millisecond_timestamp():
|
||||||
payload = b'{"event":"ORDER_COMPLETED","order_id":"ORDER123"}'
|
payload = b'{"event":"ORDER_COMPLETED","order_id":"ORDER123"}'
|
||||||
timestamp = str(int(time.time() * 1000))
|
timestamp = str(int(time.time() * 1000))
|
||||||
secret = "revolut-secret"
|
secret = "revolut-secret"
|
||||||
sig = hmac.new(secret.encode(), payload, hashlib.sha256).hexdigest()
|
sig = hmac.new(secret.encode(), payload, hashlib.sha256).hexdigest()
|
||||||
|
|
||||||
with pytest.raises(ValueError, match="signature verification failed"):
|
check_revolut_signature(payload, sig, timestamp, secret)
|
||||||
check_revolut_signature(payload, sig, timestamp, secret)
|
|
||||||
|
|
||||||
|
|
||||||
def test_check_revolut_signature_v1_header():
|
def test_check_revolut_signature_v1_header():
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ from tests.helpers import make_upload_file
|
|||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
async def test_create_user_asset_validates_upload_constraints(
|
async def test_create_user_asset_validates_upload_constraints(
|
||||||
app, settings: Settings, mocker: MockerFixture
|
settings: Settings, mocker: MockerFixture
|
||||||
):
|
):
|
||||||
file_without_type = make_upload_file(b"hello", filename="a.txt", content_type=None)
|
file_without_type = make_upload_file(b"hello", filename="a.txt", content_type=None)
|
||||||
with pytest.raises(ValueError, match="File must have a content type."):
|
with pytest.raises(ValueError, match="File must have a content type."):
|
||||||
@@ -31,40 +31,6 @@ async def test_create_user_asset_validates_upload_constraints(
|
|||||||
):
|
):
|
||||||
await create_user_asset("user-1", bad_type, is_public=False)
|
await create_user_asset("user-1", bad_type, is_public=False)
|
||||||
|
|
||||||
xsl_upload = make_upload_file(
|
|
||||||
b"hello",
|
|
||||||
filename="style.xsl",
|
|
||||||
content_type="text/xml",
|
|
||||||
)
|
|
||||||
with pytest.raises(ValueError, match="File type 'text/xml' not allowed."):
|
|
||||||
await create_user_asset("user-1", xsl_upload, is_public=False)
|
|
||||||
|
|
||||||
original_allowed_mime_types = list(settings.lnbits_assets_allowed_mime_types)
|
|
||||||
try:
|
|
||||||
settings.lnbits_assets_allowed_mime_types = [
|
|
||||||
*original_allowed_mime_types,
|
|
||||||
"text/xml",
|
|
||||||
]
|
|
||||||
xsl_content = make_upload_file(
|
|
||||||
b'<stylesheet xmlns="http://www.w3.org/1999/XSL/Transform"></stylesheet>',
|
|
||||||
filename="style.xml",
|
|
||||||
content_type="text/xml",
|
|
||||||
)
|
|
||||||
with pytest.raises(ValueError, match="File type 'text/xml' not allowed."):
|
|
||||||
await create_user_asset("user-1", xsl_content, is_public=False)
|
|
||||||
finally:
|
|
||||||
settings.lnbits_assets_allowed_mime_types = original_allowed_mime_types
|
|
||||||
|
|
||||||
fake_image = make_upload_file(
|
|
||||||
b"<?xml version='1.0'?><root></root>",
|
|
||||||
filename="fake.png",
|
|
||||||
content_type="image/png",
|
|
||||||
)
|
|
||||||
with pytest.raises(
|
|
||||||
ValueError, match="Image file content does not match declared file type."
|
|
||||||
):
|
|
||||||
await create_user_asset("user-1", fake_image, is_public=False)
|
|
||||||
|
|
||||||
original_max_assets = settings.lnbits_max_assets_per_user
|
original_max_assets = settings.lnbits_max_assets_per_user
|
||||||
original_max_size = settings.lnbits_max_asset_size_mb
|
original_max_size = settings.lnbits_max_asset_size_mb
|
||||||
original_no_limit_users = list(settings.lnbits_assets_no_limit_users)
|
original_no_limit_users = list(settings.lnbits_assets_no_limit_users)
|
||||||
@@ -74,14 +40,14 @@ async def test_create_user_asset_validates_upload_constraints(
|
|||||||
settings.lnbits_assets_no_limit_users = []
|
settings.lnbits_assets_no_limit_users = []
|
||||||
limited_user = await _create_user()
|
limited_user = await _create_user()
|
||||||
allowed_type = make_upload_file(
|
allowed_type = make_upload_file(
|
||||||
_png_bytes(), filename="ok.png", content_type="image/png"
|
b"hello", filename="ok.txt", content_type="text/plain"
|
||||||
)
|
)
|
||||||
await create_user_asset(limited_user, allowed_type, is_public=False)
|
await create_user_asset(limited_user, allowed_type, is_public=False)
|
||||||
|
|
||||||
blocked_by_count = make_upload_file(
|
blocked_by_count = make_upload_file(
|
||||||
_png_bytes(),
|
b"again",
|
||||||
filename="again.png",
|
filename="again.txt",
|
||||||
content_type="image/png",
|
content_type="text/plain",
|
||||||
)
|
)
|
||||||
with pytest.raises(ValueError, match="Max upload count of 1 exceeded."):
|
with pytest.raises(ValueError, match="Max upload count of 1 exceeded."):
|
||||||
await create_user_asset(limited_user, blocked_by_count, is_public=False)
|
await create_user_asset(limited_user, blocked_by_count, is_public=False)
|
||||||
@@ -89,9 +55,9 @@ async def test_create_user_asset_validates_upload_constraints(
|
|||||||
settings.lnbits_max_asset_size_mb = 0.000001
|
settings.lnbits_max_asset_size_mb = 0.000001
|
||||||
oversized_user = await _create_user()
|
oversized_user = await _create_user()
|
||||||
large_file = make_upload_file(
|
large_file = make_upload_file(
|
||||||
_png_bytes(),
|
b"0123456789",
|
||||||
filename="ok.png",
|
filename="ok.txt",
|
||||||
content_type="image/png",
|
content_type="text/plain",
|
||||||
)
|
)
|
||||||
with pytest.raises(ValueError, match="File limit of 1e-06MB exceeded."):
|
with pytest.raises(ValueError, match="File limit of 1e-06MB exceeded."):
|
||||||
await create_user_asset(oversized_user, large_file, is_public=False)
|
await create_user_asset(oversized_user, large_file, is_public=False)
|
||||||
@@ -102,66 +68,29 @@ async def test_create_user_asset_validates_upload_constraints(
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
async def test_create_user_asset_success(app, mocker: MockerFixture):
|
async def test_create_user_asset_success(mocker: MockerFixture):
|
||||||
user_id = await _create_user()
|
user_id = await _create_user()
|
||||||
mocker.patch(
|
mocker.patch(
|
||||||
"lnbits.core.services.assets.thumbnail_from_bytes",
|
"lnbits.core.services.assets.thumbnail_from_bytes",
|
||||||
return_value=None,
|
return_value=None,
|
||||||
)
|
)
|
||||||
contents = _png_bytes()
|
file = make_upload_file(b"hello", filename="hello.txt", content_type="text/plain")
|
||||||
file = make_upload_file(contents, filename="hello.png", content_type="image/png")
|
|
||||||
|
|
||||||
asset = await create_user_asset(user_id, file, is_public=True)
|
asset = await create_user_asset(user_id, file, is_public=True)
|
||||||
stored = await get_user_asset(user_id, asset.id)
|
stored = await get_user_asset(user_id, asset.id)
|
||||||
|
|
||||||
assert asset.id
|
assert asset.id
|
||||||
assert asset.user_id == user_id
|
assert asset.user_id == user_id
|
||||||
assert asset.name == "hello.png"
|
assert asset.name == "hello.txt"
|
||||||
assert asset.size_bytes == len(contents)
|
assert asset.size_bytes == 5
|
||||||
assert asset.data == contents
|
assert asset.data == b"hello"
|
||||||
assert asset.is_public is True
|
assert asset.is_public is True
|
||||||
assert stored is not None
|
assert stored is not None
|
||||||
assert stored.id == asset.id
|
assert stored.id == asset.id
|
||||||
assert stored.data == contents
|
assert stored.data == b"hello"
|
||||||
assert await get_user_assets_count(user_id) == 1
|
assert await get_user_assets_count(user_id) == 1
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_create_user_asset_stores_detected_image_mime_type(app):
|
|
||||||
user_id = await _create_user()
|
|
||||||
buffer = BytesIO()
|
|
||||||
Image.new("RGB", (32, 32), color="blue").save(buffer, format="JPEG")
|
|
||||||
file = make_upload_file(
|
|
||||||
buffer.getvalue(), filename="photo.jpg", content_type="image/jpg"
|
|
||||||
)
|
|
||||||
|
|
||||||
asset = await create_user_asset(user_id, file, is_public=True)
|
|
||||||
stored = await get_user_asset(user_id, asset.id)
|
|
||||||
|
|
||||||
assert asset.mime_type == "image/jpeg"
|
|
||||||
assert stored is not None
|
|
||||||
assert stored.mime_type == "image/jpeg"
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
|
||||||
async def test_create_user_asset_rejects_mismatched_image_content(app):
|
|
||||||
user_id = await _create_user()
|
|
||||||
buffer = BytesIO()
|
|
||||||
Image.new("RGB", (32, 32), color="blue").save(buffer, format="JPEG")
|
|
||||||
file = make_upload_file(
|
|
||||||
buffer.getvalue(), filename="photo.png", content_type="image/png"
|
|
||||||
)
|
|
||||||
|
|
||||||
with pytest.raises(
|
|
||||||
ValueError,
|
|
||||||
match=(
|
|
||||||
"Image file content does not match declared file type. "
|
|
||||||
"Declared: 'image/png', detected: 'image/jpeg'."
|
|
||||||
),
|
|
||||||
):
|
|
||||||
await create_user_asset(user_id, file, is_public=False)
|
|
||||||
|
|
||||||
|
|
||||||
def test_thumbnail_from_bytes_success_and_failure():
|
def test_thumbnail_from_bytes_success_and_failure():
|
||||||
image = Image.new("RGB", (512, 512), color="red")
|
image = Image.new("RGB", (512, 512), color="red")
|
||||||
buffer = BytesIO()
|
buffer = BytesIO()
|
||||||
@@ -178,9 +107,3 @@ async def _create_user() -> str:
|
|||||||
user_id = uuid4().hex
|
user_id = uuid4().hex
|
||||||
await create_account(Account(id=user_id, username=f"user_{user_id[:8]}"))
|
await create_account(Account(id=user_id, username=f"user_{user_id[:8]}"))
|
||||||
return user_id
|
return user_id
|
||||||
|
|
||||||
|
|
||||||
def _png_bytes() -> bytes:
|
|
||||||
buffer = BytesIO()
|
|
||||||
Image.new("RGB", (32, 32), color="green").save(buffer, format="PNG")
|
|
||||||
return buffer.getvalue()
|
|
||||||
|
|||||||
@@ -37,14 +37,12 @@ def test_dict_to_settings_parses_known_values():
|
|||||||
{
|
{
|
||||||
"lnbits_site_title": "Test Title",
|
"lnbits_site_title": "Test Title",
|
||||||
"lnbits_service_fee": 5,
|
"lnbits_service_fee": 5,
|
||||||
"lnbits_default_burger_menu_background": False,
|
|
||||||
"ignored_field": "ignored",
|
"ignored_field": "ignored",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
assert parsed.lnbits_site_title == "Test Title"
|
assert parsed.lnbits_site_title == "Test Title"
|
||||||
assert parsed.lnbits_service_fee == 5
|
assert parsed.lnbits_service_fee == 5
|
||||||
assert parsed.lnbits_default_burger_menu_background is False
|
|
||||||
assert not hasattr(parsed, "ignored_field")
|
assert not hasattr(parsed, "ignored_field")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -232,14 +232,6 @@ def test_installed_extensions_settings_activate_and_deactivate_paths():
|
|||||||
assert installed.find_extension_redirect("/.well-known/lnurlp", []) is None
|
assert installed.find_extension_redirect("/.well-known/lnurlp", []) is None
|
||||||
|
|
||||||
|
|
||||||
def test_public_settings_include_burger_menu_background(settings: Settings):
|
|
||||||
settings.lnbits_default_burger_menu_background = False
|
|
||||||
|
|
||||||
public_settings = PublicSettings.from_settings(settings)
|
|
||||||
|
|
||||||
assert public_settings.default_burger_menu_background is False
|
|
||||||
|
|
||||||
|
|
||||||
def test_installed_extensions_settings_detects_conflicting_redirects():
|
def test_installed_extensions_settings_detects_conflicting_redirects():
|
||||||
installed = InstalledExtensionsSettings(
|
installed = InstalledExtensionsSettings(
|
||||||
lnbits_extensions_redirects=[
|
lnbits_extensions_redirects=[
|
||||||
|
|||||||
Reference in New Issue
Block a user