forked from 3wordchant/capsul-flask
add beeteeceepae2 message to btcpay launch page & cleanup
This commit is contained in:
parent
a42d35be51
commit
a08edd870f
@ -47,7 +47,6 @@ def validate_dollars():
|
|||||||
@account_required
|
@account_required
|
||||||
def btcpay_payment():
|
def btcpay_payment():
|
||||||
errors = list()
|
errors = list()
|
||||||
invoice_id = None
|
|
||||||
|
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
result = validate_dollars()
|
result = validate_dollars()
|
||||||
@ -67,18 +66,17 @@ def btcpay_payment():
|
|||||||
current_app.logger.info(f"created btcpay invoice: {invoice}")
|
current_app.logger.info(f"created btcpay invoice: {invoice}")
|
||||||
|
|
||||||
# print(invoice)
|
# print(invoice)
|
||||||
invoice_id = invoice["id"]
|
|
||||||
|
|
||||||
current_app.logger.info(f"created btcpay invoice_id={invoice_id} ( {session['account']}, ${dollars} )")
|
current_app.logger.info(f"created btcpay invoice_id={invoice["id"]} ( {session['account']}, ${dollars} )")
|
||||||
|
|
||||||
get_model().create_payment_session("btcpay", invoice_id, session["account"], dollars)
|
get_model().create_payment_session("btcpay", invoice["id"], session["account"], dollars)
|
||||||
|
|
||||||
return redirect(invoice["url"])
|
return redirect(invoice["url"])
|
||||||
|
|
||||||
for error in errors:
|
for error in errors:
|
||||||
flash(error)
|
flash(error)
|
||||||
|
|
||||||
return render_template("btcpay.html", invoice_id=invoice_id)
|
return render_template("btcpay.html")
|
||||||
|
|
||||||
|
|
||||||
def poll_btcpay_session(invoice_id):
|
def poll_btcpay_session(invoice_id):
|
||||||
|
@ -26,11 +26,11 @@
|
|||||||
name="dollars"
|
name="dollars"
|
||||||
type="text"
|
type="text"
|
||||||
/>
|
/>
|
||||||
<input type="image" class="submit" name="submit"
|
<input type="submit" value="Pay with BtcPay"></button>
|
||||||
src="https://btcpay.cyberia.club/img/paybutton/pay.svg"
|
</div>
|
||||||
style="width:168px"
|
<div class="row">
|
||||||
alt="Pay with BtcPay"
|
<p>NOTE: for now we have switched over to our beta BTCPay Server instance at https://beeteeceepae2.cyberia.club</p>
|
||||||
/>
|
<p>In the future we'll migrate the DNS back over to btcpay.cyberia.club but for now this is easier.</p>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user