v2.0.0: fiat payment support with core-based providers#87
Draft
dadofsambonzuki wants to merge 27 commits into
Draft
v2.0.0: fiat payment support with core-based providers#87dadofsambonzuki wants to merge 27 commits into
dadofsambonzuki wants to merge 27 commits into
Conversation
- Replaced standalone Fiat Configuration card and admin settings dialog with a single gear icon button that opens a combined modal - Extension Settings section (admin only) with network, mempool URL, webhook method via lnbits-dynamic-fields - Fiat Configuration section (all users) with per-provider toggles and password fields - Dialog auto-closes after saving fiat config
- Add api_endpoint, api_version, location_id to FiatConfig model - Add m017 migration for new fiat_configs columns - Show provider-specific fields in settings UI (Secret Key for Stripe, Client ID/Secret for PayPal, API Secret Key for Revolut, Access Token/Location ID for Square) instead of generic labels - Per-provider validation in canSaveFiatConfig (PayPal needs api_secret, Square needs location_id, others just api_key) - Use structured fields in helpers.py instead of parsing extra JSON
…_providers - Remove FiatConfig model, CRUD, API endpoints, UI, and migrations - Charge creation validates fiat_provider against settings.get_fiat_providers_for_user() - _create_*_checkout functions read credentials directly from core settings - Webhook verification uses core settings for secrets - Charge dialog fiat dropdown uses g.user.fiat_providers - Settings modal no longer has fiat configuration section
…remove hardcoded strings
…ix webhook double-encoding - Gracefully handle missing register_fiat_webhook_handler in core (required until PR #4051 is merged). - Send proper dict (charge.model_dump()) in webhook POST body instead of a pre-encoded JSON string (charge.json()) to avoid double-encoding.
… provider dropdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Major refactor to include fiat providers from LNbits core settings. Supports Stripe, PayPal, Square, and Revolut.
Changes
See individual commits for detailed changes.