remotes/1693045480750635534/spooky-22
Aevann1 2021-08-22 17:50:59 +02:00
parent 7417d74999
commit 7ab9e9bbe7
2 changed files with 6 additions and 11 deletions

View File

@ -205,7 +205,7 @@ def themecolor(v):
g.db.add(v)
return redirect("/settings/profile")
@app.get("/settings/gumroad")
@app.post("/settings/gumroad")
@auth_required
@validate_formkey
def gumroad(v):
@ -221,16 +221,13 @@ def gumroad(v):
response = requests.get('https://api.gumroad.com/v2/sales', data=data).json()["sales"]
if len(response) == 0:
return render_template("settings_profile.html",
v=v,
error="Email not found")
return jsonify({"error": "Email not found"})
response = response[0]
tier = tiers[response["variants_and_quantity"]]
if v.patron == tier:
return render_template("settings_profile.html",
v=v,
error="Patron status already verified")
return jsonify({"error": "Patron rewards already claimed"})
v.patron = tier
grant_awards = {}
@ -267,9 +264,7 @@ def gumroad(v):
g.db.bulk_save_objects(_awards)
g.db.add(v)
return render_template("settings_profile.html",
v=v,
msg="Patron status verified!")
return jsonify({"message": "Patron rewards claimed"})
@app.post("/settings/titlecolor")
@auth_required

View File

@ -138,7 +138,7 @@
<div class="footer">
<div class="d-flex">
<a class="btn btn-success" href="/settings/gumroad">Claim patron rewards</a>
<a class="btn btn-success" href="javascript:void(0)" onclick="post_toast('/settings/gumroad')">Claim patron rewards</a>
{% if v.email %}
<input class="btn btn-primary ml-auto"
type="submit" value="Update email">