faucet/main.py

220 lines
5.7 KiB
Python
Raw Permalink Normal View History

from flask import (
Flask,
make_response,
redirect,
request,
jsonify,
render_template,
send_from_directory,
)
2023-11-07 23:04:54 +11:00
import os
import dotenv
import requests
import gift
2023-11-08 12:48:17 +11:00
import json
import schedule
import time
2023-11-08 14:49:08 +11:00
from email_validator import validate_email, EmailNotValidError
2023-11-07 23:04:54 +11:00
app = Flask(__name__)
dotenv.load_dotenv()
address = "hs1qr7d0xqsyatls47jf28gvm97twe8k606gspfpsz"
2023-11-07 23:04:54 +11:00
if os.getenv("address") != None:
address = os.getenv("address")
2023-11-07 23:04:54 +11:00
# Assets routes
@app.route("/assets/<path:path>")
def send_report(path):
return send_from_directory("templates/assets", path)
2023-11-07 23:04:54 +11:00
@app.route("/")
2023-11-07 23:04:54 +11:00
def index():
params = request.args
if "r" in request.cookies:
print("Referer: " + request.cookies["r"])
return render_template(
"index.html", hidden=request.cookies["r"], address=address
)
if "r" in params:
print("Referer: " + params["r"])
2023-11-08 13:33:17 +11:00
# Set cookie
resp = make_response(
render_template("index.html", hidden=params["r"], address=address)
)
resp.set_cookie("r", params["r"], max_age=60 * 60 * 24)
2023-11-08 13:33:17 +11:00
return resp
return render_template("index.html", address=address)
2023-11-07 23:04:54 +11:00
@app.route("/", methods=["POST"])
2023-11-07 23:04:54 +11:00
def submit():
name = request.form["name"]
email = request.form["email"]
hidden = request.form["hi"]
2023-11-07 23:04:54 +11:00
ip = request.remote_addr
2023-11-07 23:14:36 +11:00
if "X-REAL-IP" in request.headers:
ip = request.headers["X-REAL-IP"]
2023-11-07 23:14:36 +11:00
if "X-Real-Ip" in request.headers:
ip = request.headers["X-Real-Ip"]
2023-11-07 23:14:36 +11:00
if hidden == "":
hidden = "None"
2023-11-07 23:04:54 +11:00
if "r" in request.cookies:
hidden = request.cookies["r"]
2023-11-08 13:33:17 +11:00
2023-11-08 14:49:08 +11:00
# Validate email
try:
emailinfo = validate_email(email, check_deliverability=False)
email = emailinfo.normalized
except EmailNotValidError as e:
return render_template(
"error.html", error="Invalid email address", address=address
)
2023-11-08 14:49:08 +11:00
2023-11-07 23:04:54 +11:00
status = gift.gift(name, email, hidden, ip)
print(status, flush=True)
2023-11-07 23:11:08 +11:00
2023-11-07 23:04:54 +11:00
if status == True:
return render_template("success.html", address=address)
2023-11-07 23:04:54 +11:00
else:
return render_template("error.html", error=status, address=address)
2023-11-07 23:04:54 +11:00
@app.route("/api", methods=["POST"])
2023-11-08 15:25:47 +11:00
def api():
# Get from params
params = request.args
name = params["name"]
email = params["email"]
key = params["key"]
2023-11-08 15:25:47 +11:00
if key != os.getenv("api_key"):
return jsonify({"error": "Invalid API key", "success": False})
2023-11-08 15:25:47 +11:00
if "X-REAL-IP" in request.headers:
ip = request.headers["X-REAL-IP"]
2023-11-08 15:25:47 +11:00
if "X-Real-Ip" in request.headers:
ip = request.headers["X-Real-Ip"]
2023-11-08 15:25:47 +11:00
# Validate email
try:
emailinfo = validate_email(email, check_deliverability=False)
email = emailinfo.normalized
except EmailNotValidError as e:
return jsonify({"error": "Invalid email address", "success": False})
2023-11-08 15:25:47 +11:00
status = gift.gift(name, email, "api", ip, True)
print(status, flush=True)
2023-11-08 15:25:47 +11:00
if status == True:
return jsonify({"success": True})
2023-11-08 15:25:47 +11:00
else:
return jsonify({"error": status, "success": False})
2023-11-08 15:25:47 +11:00
2023-11-07 23:04:54 +11:00
# Special routes
@app.route("/.well-known/wallets/<token>")
2023-11-07 23:04:54 +11:00
def send_wallet(token):
address = requests.get(
"https://nathan.woodburn.au/.well-known/wallets/" + token
).text
return make_response(address, 200, {"Content-Type": "text/plain"})
2023-11-07 23:04:54 +11:00
@app.route("/stats")
2023-11-08 12:48:17 +11:00
def stats():
# Read the file
path = "/data/gifts.json"
if os.getenv("local") == "true":
path = "./gifts.json"
2023-11-08 12:48:17 +11:00
# Load file
gifts = []
if os.path.isfile(path):
with open(path, "r") as f:
gifts = json.load(f)
2023-11-08 12:48:17 +11:00
# Loop through gifts
referals = {}
2023-11-08 12:55:10 +11:00
for gift_item in gifts:
if gift_item["referer"] not in referals:
referals[gift_item["referer"]] = 1
2023-11-08 12:48:17 +11:00
else:
referals[gift_item["referer"]] += 1
statsHTML = "Total gifts: " + str(len(gifts)) + "<br><br>"
statsHTML += "Referals:<br>"
2023-11-08 12:48:17 +11:00
for referal in referals:
statsHTML += referal + ": " + str(referals[referal]) + "<br>"
2023-11-08 12:48:17 +11:00
statsHTML += "<br>Remaining balance: " + str(gift.balance()) + " HNS<br>"
2023-11-08 12:48:17 +11:00
return render_template("stats.html", address=address, stats=statsHTML)
2023-11-08 12:48:17 +11:00
2023-11-07 23:04:54 +11:00
@app.route("/<path:path>")
2023-11-07 23:04:54 +11:00
def catch_all(path):
return redirect("/?r=" + path)
2023-11-07 23:04:54 +11:00
# 404 catch all
@app.errorhandler(404)
def not_found(e):
return redirect("/")
2023-11-07 23:04:54 +11:00
def update_address():
global address
payload = {
"asset": "HNS",
"timestamp": int(round(time.time() * 1000)),
"receiveWindow": 20000,
}
nbcookie = os.getenv("cookie")
cookies = {"namebase-main": nbcookie}
headers = {"Accept": "application/json", "Content-Type": "application/json"}
r = requests.post(
"https://www.namebase.io/api/v0/deposit/address",
data=json.dumps(payload),
headers=headers,
cookies=cookies,
)
if "address" not in r.json():
print("Error: " + r.text, flush=True)
# Send alert via discord
url = os.getenv("discord_webhook")
2023-12-12 15:13:34 +11:00
if url == None:
return "No webhook set"
payload = {"content": "NB cookie has expired\n@everyone"}
response = requests.post(
url, data=json.dumps(payload), headers={"Content-Type": "application/json"}
)
2023-12-12 15:13:34 +11:00
# Check if the message was sent successfully
if response.status_code == 204:
print("Message sent successfully!")
else:
print(f"Failed to send message. Status code: {response.status_code}")
print(response.text)
return
address = r.json()["address"]
print("Address updated: " + address, flush=True)
update_address()
if __name__ == "__main__":
app.run(debug=False, port=5000, host="0.0.0.0")