firewalletbrowser/main.py

229 lines
6.7 KiB
Python
Raw Normal View History

2023-12-28 16:58:11 +11:00
from flask import Flask, make_response, redirect, request, jsonify, render_template, send_from_directory,send_file
2023-12-28 13:34:48 +11:00
import os
import dotenv
import requests
import account as account_module
import render
2023-12-28 16:04:45 +11:00
import re
2023-12-28 16:58:11 +11:00
from flask_qrcode import QRcode
2023-12-28 13:34:48 +11:00
dotenv.load_dotenv()
app = Flask(__name__)
2023-12-28 16:58:11 +11:00
qrcode = QRcode(app)
2023-12-28 13:34:48 +11:00
@app.route('/')
def index():
# Check if the user is logged in
if request.cookies.get("account") is None:
return redirect("/login")
account = account_module.check_account(request.cookies.get("account"))
2023-12-28 16:04:45 +11:00
if not account:
return redirect("/logout")
2023-12-28 13:34:48 +11:00
balance = account_module.getBalance(account)
available = balance['available']
total = balance['total']
# Add commas to the numbers
available = "{:,}".format(available)
total = "{:,}".format(total)
pending = account_module.getPendingTX(account)
domains = account_module.getDomains(account)
2023-12-28 16:04:45 +11:00
domain_count = len(domains)
2023-12-28 13:34:48 +11:00
domains = render.domains(domains)
2023-12-28 16:04:45 +11:00
2023-12-28 13:34:48 +11:00
return render_template("index.html", account=account, available=available,
2023-12-28 16:04:45 +11:00
total=total, pending=pending, domains=domains, domain_count=domain_count)
2023-12-28 13:34:48 +11:00
@app.route('/tx')
def transactions():
# Check if the user is logged in
if request.cookies.get("account") is None:
return redirect("/login")
account = account_module.check_account(request.cookies.get("account"))
# Get the transactions
transactions = account_module.getTransactions(account)
transactions = render.transactions(transactions)
return render_template("tx.html", account=account, tx=transactions)
2023-12-28 16:04:45 +11:00
@app.route('/send')
def send_page():
# Check if the user is logged in
if request.cookies.get("account") is None:
return redirect("/login")
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
account = account_module.check_account(request.cookies.get("account"))
max = account_module.getBalance(account)['available']
# Subtract approx fee of 0.02
max = max - 0.02
2023-12-28 16:58:11 +11:00
max = round(max, 2)
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
message = ''
address = ''
amount = ''
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
if 'message' in request.args:
message = request.args.get("message")
if 'address' in request.args:
address = request.args.get("address")
if 'amount' in request.args:
amount = request.args.get("amount")
return render_template("send.html", account=account,max=max,message=message,
address=address,amount=amount)
@app.route('/send', methods=["POST"])
def send():
if request.cookies.get("account") is None:
return redirect("/login")
account = account_module.check_account(request.cookies.get("account"))
if not account:
return redirect("/logout")
# Get the address and amount
address = request.form.get("address")
amount = request.form.get("amount")
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
if address is None or amount is None:
return redirect("/send?message=Invalid address or amount&address=" + address + "&amount=" + amount)
address_check = account_module.check_address(address,True,True)
if not address_check:
return redirect("/send?message=Invalid address&address=" + address + "&amount=" + amount)
address = address_check
# Check if the amount is valid
if re.match(r"^\d+(\.\d+)?$", amount) is None:
return redirect("/send?message=Invalid amount&address=" + address + "&amount=" + amount)
# Check if the amount is valid
amount = float(amount)
if amount <= 0:
return redirect("/send?message=Invalid amount&address=" + address + "&amount=" + str(amount))
if amount > account_module.getBalance(account)['available'] - 0.02:
return redirect("/send?message=Not enough funds to transfer&address=" + address + "&amount=" + str(amount))
# Send the transaction
response = account_module.send(request.cookies.get("account"),address,amount)
if 'error' in response:
return redirect("/send?message=" + response['error'] + "&address=" + address + "&amount=" + str(amount))
return redirect("/success?tx=" + response['tx'])
2023-12-28 16:58:11 +11:00
@app.route('/receive')
def receive():
# Check if the user is logged in
if request.cookies.get("account") is None:
return redirect("/login")
account = account_module.check_account(request.cookies.get("account"))
if not account:
return redirect("/logout")
address = account_module.getAddress(account)
return render_template("receive.html", account=account, address=address)
2023-12-28 16:04:45 +11:00
@app.route('/success')
def success():
# Check if the user is logged in
if request.cookies.get("account") is None:
return redirect("/login")
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
account = account_module.check_account(request.cookies.get("account"))
if not account:
return redirect("/logout")
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
tx = request.args.get("tx")
return render_template("success.html", account=account, tx=tx)
2023-12-28 13:34:48 +11:00
2023-12-28 16:04:45 +11:00
@app.route('/checkaddress')
def check_address():
address = request.args.get("address")
if address is None:
return jsonify({"result": "Invalid address"})
return jsonify({"result": account_module.check_address(address)})
2023-12-28 13:34:48 +11:00
#region Account
@app.route('/login')
def login():
if 'message' in request.args:
return render_template("login.html", error=request.args.get("message"))
2023-12-28 16:04:45 +11:00
return render_template("login.html")
2023-12-28 13:34:48 +11:00
@app.route('/login', methods=["POST"])
def login_post():
# Get the account and password
account = request.form.get("account")
password = request.form.get("password")
# Check if the account is valid
if account.count(":") > 0:
return render_template("login.html", error="Invalid account")
account = account + ":" + password
# Check if the account is valid
if not account_module.check_account(account):
return render_template("login.html", error="Invalid account")
# Set the cookie
response = make_response(redirect("/"))
response.set_cookie("account", account)
return response
@app.route('/logout')
def logout():
response = make_response(redirect("/login"))
response.set_cookie("account", "", expires=0)
return response
#endregion
2023-12-28 16:58:11 +11:00
#region Assets and default pages
@app.route('/qr/<data>')
def qr(data):
return send_file(qrcode(data, mode="raw"), mimetype="image/png")
2023-12-28 13:34:48 +11:00
@app.route('/assets/<path:path>')
def send_assets(path):
return send_from_directory('templates/assets', path)
2023-12-28 16:04:45 +11:00
# Try path
@app.route('/<path:path>')
def try_path(path):
if os.path.isfile("templates/" + path + ".html"):
return render_template(path + ".html")
else:
return page_not_found(404)
2023-12-28 13:34:48 +11:00
@app.errorhandler(404)
def page_not_found(e):
account = account_module.check_account(request.cookies.get("account"))
return render_template('404.html',account=account), 404
2023-12-28 16:58:11 +11:00
#endregion
2023-12-28 13:34:48 +11:00
if __name__ == '__main__':
app.run(debug=True)