2021-07-21 01:12:26 +00:00
|
|
|
from __future__ import unicode_literals
|
2021-08-04 15:35:10 +00:00
|
|
|
from files.helpers.alerts import *
|
|
|
|
from files.helpers.sanitize import *
|
|
|
|
from files.helpers.filters import filter_comment_html
|
|
|
|
from files.helpers.markdown import *
|
|
|
|
from files.helpers.discord import remove_user, set_nick
|
2021-08-21 11:06:28 +00:00
|
|
|
from files.helpers.const import *
|
2021-08-04 15:35:10 +00:00
|
|
|
from files.mail import *
|
|
|
|
from files.__main__ import app, cache
|
2021-07-21 01:12:26 +00:00
|
|
|
import youtube_dl
|
2021-07-30 09:42:17 +00:00
|
|
|
from .front import frontlist
|
2021-08-19 15:11:35 +00:00
|
|
|
import os
|
|
|
|
from .posts import filter_title
|
2021-08-22 15:36:28 +00:00
|
|
|
from files.helpers.discord import add_role
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
valid_username_regex = re.compile("^[a-zA-Z0-9_\-]{3,25}$")
|
|
|
|
valid_password_regex = re.compile("^.{8,100}$")
|
|
|
|
|
2021-08-11 15:15:51 +00:00
|
|
|
YOUTUBE_KEY = environ.get("YOUTUBE_KEY", "").strip()
|
2021-08-05 14:43:54 +00:00
|
|
|
COINS_NAME = environ.get("COINS_NAME").strip()
|
2021-08-22 15:36:28 +00:00
|
|
|
GUMROAD_TOKEN = environ.get("GUMROAD_TOKEN").strip()
|
|
|
|
|
|
|
|
tiers={
|
|
|
|
"(Paypig)": 1,
|
|
|
|
"(Renthog)": 2,
|
|
|
|
"(Landchad)": 3,
|
|
|
|
"(Terminally online turboautist)": 4
|
|
|
|
}
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-08-15 04:18:50 +00:00
|
|
|
@app.post("/settings/removebackground")
|
|
|
|
@auth_required
|
|
|
|
def removebackground(v):
|
|
|
|
v.background = None
|
|
|
|
g.db.add(v)
|
|
|
|
return "", 204
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/profile")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_profile_post(v):
|
|
|
|
updated = False
|
|
|
|
|
2021-08-11 20:11:55 +00:00
|
|
|
if request.values.get("background", v.background) != v.background:
|
|
|
|
updated = True
|
|
|
|
v.background= request.values.get("background", None)
|
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
if request.values.get("slurreplacer", v.slurreplacer) != v.slurreplacer:
|
|
|
|
updated = True
|
|
|
|
v.slurreplacer = request.values.get("slurreplacer", None) == 'true'
|
|
|
|
|
|
|
|
if request.values.get("hidevotedon", v.hidevotedon) != v.hidevotedon:
|
|
|
|
updated = True
|
|
|
|
v.hidevotedon = request.values.get("hidevotedon", None) == 'true'
|
|
|
|
|
|
|
|
if request.values.get("newtab", v.newtab) != v.newtab:
|
|
|
|
updated = True
|
|
|
|
v.newtab = request.values.get("newtab", None) == 'true'
|
|
|
|
|
|
|
|
if request.values.get("newtabexternal", v.newtabexternal) != v.newtabexternal:
|
|
|
|
updated = True
|
|
|
|
v.newtabexternal = request.values.get("newtabexternal", None) == 'true'
|
|
|
|
|
|
|
|
if request.values.get("oldreddit", v.oldreddit) != v.oldreddit:
|
|
|
|
updated = True
|
|
|
|
v.oldreddit = request.values.get("oldreddit", None) == 'true'
|
|
|
|
|
2021-08-11 18:57:12 +00:00
|
|
|
if request.values.get("controversial", v.controversial) != v.controversial:
|
|
|
|
updated = True
|
|
|
|
v.controversial = request.values.get("controversial", None) == 'true'
|
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
if request.values.get("over18", v.over_18) != v.over_18:
|
|
|
|
updated = True
|
|
|
|
v.over_18 = request.values.get("over18", None) == 'true'
|
|
|
|
|
|
|
|
if request.values.get("private", v.is_private) != v.is_private:
|
|
|
|
updated = True
|
|
|
|
v.is_private = request.values.get("private", None) == 'true'
|
|
|
|
|
|
|
|
if request.values.get("nofollow", v.is_nofollow) != v.is_nofollow:
|
|
|
|
updated = True
|
|
|
|
v.is_nofollow = request.values.get("nofollow", None) == 'true'
|
|
|
|
|
2021-07-28 04:17:23 +00:00
|
|
|
if request.values.get("bio"):
|
2021-08-02 07:37:46 +00:00
|
|
|
bio = request.values.get("bio")[:1500]
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
if bio == v.bio:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error="You didn't change anything")
|
|
|
|
|
2021-08-19 05:54:40 +00:00
|
|
|
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|PNG|JPG|JPEG|GIF|9999))', bio, re.MULTILINE): bio = bio.replace(i.group(1), f'![]({i.group(1)})')
|
2021-07-31 08:47:10 +00:00
|
|
|
bio = bio.replace("\n", "\n\n").replace("\n\n\n\n\n\n", "\n\n").replace("\n\n\n\n", "\n\n").replace("\n\n\n", "\n\n")
|
2021-08-02 14:39:59 +00:00
|
|
|
with CustomRenderer() as renderer: bio_html = renderer.render(mistletoe.Document(bio))
|
2021-08-21 12:57:16 +00:00
|
|
|
bio_html = sanitize(bio_html)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
# Run safety filter
|
|
|
|
bans = filter_comment_html(bio_html)
|
|
|
|
|
|
|
|
if bans:
|
|
|
|
ban = bans[0]
|
|
|
|
reason = f"Remove the {ban.domain} link from your bio and try again."
|
|
|
|
if ban.reason:
|
2021-08-03 12:20:40 +00:00
|
|
|
reason += f" {ban.reason}"
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
#auto ban for digitally malicious content
|
|
|
|
if any([x.reason==4 for x in bans]):
|
|
|
|
v.ban(days=30, reason="Digitally malicious content is not allowed.")
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"error": reason}, 401
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
v.bio = bio
|
|
|
|
v.bio_html=bio_html
|
|
|
|
g.db.add(v)
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
msg="Your bio has been updated.")
|
|
|
|
|
2021-07-28 04:17:23 +00:00
|
|
|
if request.values.get("filters"):
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-08-02 07:37:46 +00:00
|
|
|
filters=request.values.get("filters")[:1000].strip()
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
if filters==v.custom_filter_list:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error="You didn't change anything")
|
|
|
|
|
|
|
|
v.custom_filter_list=filters
|
|
|
|
g.db.add(v)
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
msg="Your custom filters have been updated.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defaultsortingcomments = request.values.get("defaultsortingcomments")
|
|
|
|
if defaultsortingcomments:
|
|
|
|
if defaultsortingcomments in ["new", "old", "controversial", "top", "bottom", "random"]:
|
|
|
|
v.defaultsortingcomments = defaultsortingcomments
|
|
|
|
updated = True
|
|
|
|
else:
|
|
|
|
abort(400)
|
|
|
|
|
|
|
|
defaultsorting = request.values.get("defaultsorting")
|
|
|
|
if defaultsorting:
|
|
|
|
if defaultsorting in ["hot", "new", "old", "comments", "controversial", "top", "bottom", "random"]:
|
|
|
|
v.defaultsorting = defaultsorting
|
|
|
|
updated = True
|
|
|
|
else:
|
|
|
|
abort(400)
|
|
|
|
|
|
|
|
defaulttime = request.values.get("defaulttime")
|
|
|
|
if defaulttime:
|
|
|
|
if defaulttime in ["hour", "day", "week", "month", "year", "all"]:
|
|
|
|
v.defaulttime = defaulttime
|
|
|
|
updated = True
|
|
|
|
else:
|
|
|
|
abort(400)
|
|
|
|
|
|
|
|
theme = request.values.get("theme")
|
|
|
|
if theme:
|
|
|
|
v.theme = theme
|
2021-08-15 03:05:10 +00:00
|
|
|
if theme == "coffee" or theme == "4chan": v.themecolor = "38a169"
|
2021-07-21 01:12:26 +00:00
|
|
|
elif theme == "tron": v.themecolor = "80ffff"
|
2021-08-15 03:05:10 +00:00
|
|
|
elif theme == "win98": v.themecolor = "30409f"
|
2021-07-21 01:12:26 +00:00
|
|
|
g.db.add(v)
|
|
|
|
return "", 204
|
|
|
|
|
|
|
|
if updated:
|
|
|
|
g.db.add(v)
|
|
|
|
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"message": "Your settings have been updated."}
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
else:
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"error": "You didn't change anything."}, 400
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/changelogsub")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def changelogsub(v):
|
|
|
|
v.changelogsub = not v.changelogsub
|
|
|
|
g.db.add(v)
|
2021-07-30 09:42:17 +00:00
|
|
|
|
2021-08-11 17:06:56 +00:00
|
|
|
cache.delete_memoized(frontlist, v)
|
2021-07-30 09:42:17 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
return "", 204
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/namecolor")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def namecolor(v):
|
|
|
|
color = str(request.form.get("color", "")).strip()
|
2021-08-11 19:46:57 +00:00
|
|
|
if color.startswith('#'): color = color[1:]
|
|
|
|
if len(color) != 6: return render_template("settings_security.html", v=v, error="Invalid color code")
|
2021-07-21 01:12:26 +00:00
|
|
|
v.namecolor = color
|
|
|
|
g.db.add(v)
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/themecolor")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def themecolor(v):
|
|
|
|
themecolor = str(request.form.get("themecolor", "")).strip()
|
2021-08-11 19:46:57 +00:00
|
|
|
if themecolor.startswith('#'): themecolor = themecolor[1:]
|
|
|
|
if len(themecolor) != 6: return render_template("settings_security.html", v=v, error="Invalid color code")
|
2021-07-21 01:12:26 +00:00
|
|
|
v.themecolor = themecolor
|
|
|
|
g.db.add(v)
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-08-22 15:50:59 +00:00
|
|
|
@app.post("/settings/gumroad")
|
2021-08-22 15:36:28 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def gumroad(v):
|
2021-08-22 15:41:19 +00:00
|
|
|
#if not (v.email and v.is_activated):
|
|
|
|
#return render_template("settings_profile.html",
|
|
|
|
#v=v,
|
|
|
|
#error="You must have to a verified email to verify patron status")
|
2021-08-22 15:36:28 +00:00
|
|
|
|
|
|
|
data = {
|
|
|
|
'access_token': GUMROAD_TOKEN,
|
|
|
|
'email': v.email
|
|
|
|
}
|
|
|
|
response = requests.get('https://api.gumroad.com/v2/sales', data=data).json()["sales"]
|
|
|
|
|
|
|
|
if len(response) == 0:
|
2021-08-22 15:56:00 +00:00
|
|
|
return jsonify({"error": "Email not found"}), 404
|
2021-08-22 15:36:28 +00:00
|
|
|
|
|
|
|
response = response[0]
|
|
|
|
tier = tiers[response["variants_and_quantity"]]
|
|
|
|
if v.patron == tier:
|
2021-08-22 15:56:00 +00:00
|
|
|
return jsonify({"error": "Patron rewards already claimed"}), 400
|
2021-08-22 15:50:59 +00:00
|
|
|
|
2021-08-22 15:36:28 +00:00
|
|
|
v.patron = tier
|
|
|
|
|
|
|
|
grant_awards = {}
|
|
|
|
if tier == 1:
|
|
|
|
if v.discord_id: add_role(v, "paypig")
|
|
|
|
grant_awards["shit"] = 1
|
|
|
|
elif tier == 2:
|
|
|
|
if v.discord_id: add_role(v, "renthog")
|
|
|
|
grant_awards["shit"] = 3
|
|
|
|
elif tier == 3:
|
|
|
|
if v.discord_id: add_role(v, "landchad")
|
|
|
|
grant_awards["shit"] = 5
|
|
|
|
grant_awards["ban"] = 1
|
|
|
|
elif tier == 4:
|
|
|
|
if v.discord_id: add_role(v, "turboautist")
|
|
|
|
grant_awards["shit"] = 10
|
|
|
|
grant_awards["ban"] = 3
|
|
|
|
|
|
|
|
_awards = []
|
|
|
|
|
|
|
|
thing = g.db.query(AwardRelationship).order_by(AwardRelationship.id.desc()).first().id
|
|
|
|
|
|
|
|
for name in grant_awards:
|
|
|
|
for count in range(grant_awards[name]):
|
|
|
|
|
|
|
|
thing += 1
|
|
|
|
|
|
|
|
_awards.append(AwardRelationship(
|
|
|
|
id=thing,
|
2021-08-22 16:02:12 +00:00
|
|
|
user_id=v.id,
|
2021-08-22 15:36:28 +00:00
|
|
|
kind=name
|
|
|
|
))
|
|
|
|
|
|
|
|
g.db.bulk_save_objects(_awards)
|
|
|
|
|
|
|
|
g.db.add(v)
|
2021-08-22 15:50:59 +00:00
|
|
|
return jsonify({"message": "Patron rewards claimed"})
|
2021-08-22 15:36:28 +00:00
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/titlecolor")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def titlecolor(v):
|
|
|
|
titlecolor = str(request.form.get("titlecolor", "")).strip()
|
2021-08-11 19:46:57 +00:00
|
|
|
if titlecolor.startswith('#'): titlecolor = titlecolor[1:]
|
|
|
|
if len(titlecolor) != 6: return render_template("settings_security.html", v=v, error="Invalid color code")
|
2021-07-21 01:12:26 +00:00
|
|
|
v.titlecolor = titlecolor
|
|
|
|
g.db.add(v)
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/security")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_security_post(v):
|
|
|
|
if request.form.get("new_password"):
|
|
|
|
if request.form.get(
|
|
|
|
"new_password") != request.form.get("cnf_password"):
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Passwords do not match."))
|
|
|
|
|
|
|
|
if not re.match(valid_password_regex, request.form.get("new_password")):
|
|
|
|
#print(f"signup fail - {username } - invalid password")
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Password must be between 8 and 100 characters."))
|
|
|
|
|
|
|
|
if not v.verifyPass(request.form.get("old_password")):
|
|
|
|
return render_template(
|
|
|
|
"settings_security.html", v=v, error="Incorrect password")
|
|
|
|
|
|
|
|
v.passhash = v.hash_password(request.form.get("new_password"))
|
|
|
|
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return redirect("/settings/security?msg=" +
|
|
|
|
escape("Your password has been changed."))
|
|
|
|
|
|
|
|
if request.form.get("new_email"):
|
|
|
|
|
|
|
|
if not v.verifyPass(request.form.get('password')):
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Invalid password."))
|
|
|
|
|
|
|
|
new_email = request.form.get("new_email","").strip()
|
|
|
|
if new_email == v.email:
|
2021-08-22 15:11:41 +00:00
|
|
|
return redirect("/settings/security?error=That email is already yours!")
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
# check to see if email is in use
|
|
|
|
existing = g.db.query(User).filter(User.id != v.id,
|
|
|
|
func.lower(User.email) == new_email.lower()).first()
|
|
|
|
if existing:
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("That email address is already in use."))
|
|
|
|
|
|
|
|
url = f"https://{app.config['SERVER_NAME']}/activate"
|
|
|
|
|
|
|
|
now = int(time.time())
|
|
|
|
|
|
|
|
token = generate_hash(f"{new_email}+{v.id}+{now}")
|
|
|
|
params = f"?email={quote(new_email)}&id={v.id}&time={now}&token={token}"
|
|
|
|
|
|
|
|
link = url + params
|
|
|
|
|
|
|
|
send_mail(to_address=new_email,
|
|
|
|
subject="Verify your email address.",
|
|
|
|
html=render_template("email/email_change.html",
|
|
|
|
action_url=link,
|
|
|
|
v=v)
|
|
|
|
)
|
|
|
|
|
|
|
|
return redirect("/settings/security?msg=" + escape(
|
|
|
|
"Check your email and click the verification link to complete the email change."))
|
|
|
|
|
|
|
|
if request.form.get("2fa_token", ""):
|
|
|
|
|
|
|
|
if not v.verifyPass(request.form.get('password')):
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Invalid password or token."))
|
|
|
|
|
|
|
|
secret = request.form.get("2fa_secret")
|
|
|
|
x = pyotp.TOTP(secret)
|
|
|
|
if not x.verify(request.form.get("2fa_token"), valid_window=1):
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Invalid password or token."))
|
|
|
|
|
|
|
|
v.mfa_secret = secret
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return redirect("/settings/security?msg=" +
|
|
|
|
escape("Two-factor authentication enabled."))
|
|
|
|
|
|
|
|
if request.form.get("2fa_remove", ""):
|
|
|
|
|
|
|
|
if not v.verifyPass(request.form.get('password')):
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Invalid password or token."))
|
|
|
|
|
|
|
|
token = request.form.get("2fa_remove")
|
|
|
|
|
|
|
|
if not v.validate_2fa(token):
|
|
|
|
return redirect("/settings/security?error=" +
|
|
|
|
escape("Invalid password or token."))
|
|
|
|
|
|
|
|
v.mfa_secret = None
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return redirect("/settings/security?msg=" +
|
|
|
|
escape("Two-factor authentication disabled."))
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/log_out_all_others")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_log_out_others(v):
|
|
|
|
|
|
|
|
submitted_password = request.form.get("password", "")
|
|
|
|
|
|
|
|
if not v.verifyPass(submitted_password):
|
|
|
|
return render_template("settings_security.html",
|
|
|
|
v=v, error="Incorrect Password"), 401
|
|
|
|
|
|
|
|
# increment account's nonce
|
|
|
|
v.login_nonce += 1
|
|
|
|
|
|
|
|
# update cookie accordingly
|
|
|
|
session["login_nonce"] = v.login_nonce
|
|
|
|
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return render_template("settings_security.html", v=v,
|
|
|
|
msg="All other devices have been logged out")
|
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/images/profile")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_images_profile(v):
|
|
|
|
|
2021-07-27 21:35:50 +00:00
|
|
|
if request.content_length > 16 * 1024 * 1024:
|
|
|
|
g.db.rollback()
|
|
|
|
abort(413)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-31 09:00:56 +00:00
|
|
|
if request.headers.get("cf-ipcountry") == "T1": return "Image uploads are not allowed through TOR.", 403
|
2021-08-01 13:45:08 +00:00
|
|
|
highres = upload_file(request.files["profile"])
|
2021-07-30 09:36:01 +00:00
|
|
|
if not highres: abort(400)
|
2021-08-01 13:45:08 +00:00
|
|
|
imageurl = upload_file(resize=True)
|
|
|
|
if not imageurl: abort(400)
|
2021-07-30 09:31:17 +00:00
|
|
|
v.highres = highres
|
|
|
|
v.profileurl = imageurl
|
|
|
|
g.db.add(v)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-31 09:00:56 +00:00
|
|
|
return render_template("settings_profile.html", v=v, msg="Profile picture successfully updated.")
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/images/banner")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_images_banner(v):
|
2021-07-27 21:35:50 +00:00
|
|
|
if request.content_length > 16 * 1024 * 1024:
|
|
|
|
g.db.rollback()
|
|
|
|
abort(413)
|
|
|
|
|
2021-07-31 09:00:56 +00:00
|
|
|
if request.headers.get("cf-ipcountry") == "T1": return "Image uploads are not allowed through TOR.", 403
|
2021-07-29 08:03:00 +00:00
|
|
|
imageurl = upload_file(request.files["banner"])
|
2021-07-27 21:35:50 +00:00
|
|
|
if imageurl:
|
|
|
|
v.bannerurl = imageurl
|
|
|
|
g.db.add(v)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-31 09:18:59 +00:00
|
|
|
return render_template("settings_profile.html", v=v, msg="Banner successfully updated.")
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/delete/profile")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_delete_profile(v):
|
2021-08-09 04:20:36 +00:00
|
|
|
v.highres = None
|
2021-07-27 00:05:58 +00:00
|
|
|
v.profileurl = None
|
|
|
|
g.db.add(v)
|
2021-07-21 01:12:26 +00:00
|
|
|
return render_template("settings_profile.html", v=v,
|
|
|
|
msg="Profile picture successfully removed.")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/delete/banner")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_delete_banner(v):
|
2021-08-09 04:21:37 +00:00
|
|
|
|
2021-07-29 13:56:25 +00:00
|
|
|
v.bannerurl = None
|
|
|
|
g.db.add(v)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
return render_template("settings_profile.html", v=v,
|
|
|
|
msg="Banner successfully removed.")
|
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/read_announcement")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def update_announcement(v):
|
|
|
|
|
|
|
|
v.read_announcement_utc = int(time.time())
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return "", 204
|
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.get("/settings/blocks")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_blockedpage(v):
|
|
|
|
if v and v.is_banned and not v.unban_utc: return render_template("seized.html")
|
|
|
|
|
|
|
|
#users=[x.target for x in v.blocked]
|
|
|
|
|
|
|
|
return render_template("settings_blocks.html",
|
|
|
|
v=v)
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.get("/settings/css")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_css_get(v):
|
|
|
|
if v and v.is_banned and not v.unban_utc: return render_template("seized.html")
|
|
|
|
|
|
|
|
return render_template("settings_css.html", v=v)
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/css")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_css(v):
|
2021-08-02 07:37:46 +00:00
|
|
|
css = request.form.get("css").replace('\\', '')[:50000]
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
if not v.agendaposter:
|
|
|
|
v.css = css
|
|
|
|
else:
|
|
|
|
v.css = 'body *::before, body *::after { content: "Trans rights are human rights!"; }'
|
|
|
|
g.db.add(v)
|
|
|
|
return render_template("settings_css.html", v=v)
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.get("/settings/profilecss")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_profilecss_get(v):
|
|
|
|
if v and v.is_banned and not v.unban_utc: return render_template("seized.html")
|
2021-08-05 14:43:54 +00:00
|
|
|
if v.coins < 1000 and not v.patron: return f"You must have +1000 {COINS_NAME} or be a patron to set profile css."
|
2021-07-21 01:12:26 +00:00
|
|
|
return render_template("settings_profilecss.html", v=v)
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/profilecss")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_profilecss(v):
|
2021-08-05 14:43:54 +00:00
|
|
|
if v.coins < 1000 and not v.patron: return f"You must have +1000 {COINS_NAME} or be a patron to set profile css."
|
2021-08-02 07:37:46 +00:00
|
|
|
profilecss = request.form.get("profilecss").replace('\\', '')[:50000]
|
2021-07-21 01:12:26 +00:00
|
|
|
v.profilecss = profilecss
|
|
|
|
g.db.add(v)
|
|
|
|
return render_template("settings_profilecss.html", v=v)
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/block")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_block_user(v):
|
|
|
|
|
|
|
|
user = get_user(request.values.get("username"), graceful=True)
|
|
|
|
|
|
|
|
if not user:
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"error": "That user doesn't exist."}, 404
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
if user.id == v.id:
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"error": "You can't block yourself."}, 409
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
if v.has_block(user):
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"error": f"You have already blocked @{user.username}."}, 409
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-08-21 11:06:28 +00:00
|
|
|
if user.id == NOTIFICATIONS_ACCOUNT:
|
2021-08-04 15:35:10 +00:00
|
|
|
return {"error": "You can't block @files."}, 409
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
new_block = UserBlock(user_id=v.id,
|
|
|
|
target_id=user.id,
|
|
|
|
)
|
|
|
|
g.db.add(new_block)
|
|
|
|
|
2021-07-28 11:00:15 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
existing = g.db.query(Notification).filter_by(blocksender=v.id, user_id=user.id).first()
|
|
|
|
if not existing: send_block_notif(v.id, user.id, f"@{v.username} has blocked you!")
|
|
|
|
|
2021-07-31 05:28:05 +00:00
|
|
|
if v.admin_level == 1: return {"message": f"@{user.username} banned!"}
|
2021-07-28 21:31:50 +00:00
|
|
|
|
2021-08-11 17:06:56 +00:00
|
|
|
cache.delete_memoized(frontlist, v)
|
2021-07-30 09:42:17 +00:00
|
|
|
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"message": f"@{user.username} blocked."}
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/unblock")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_unblock_user(v):
|
|
|
|
|
|
|
|
user = get_user(request.values.get("username"))
|
|
|
|
|
|
|
|
x = v.has_block(user)
|
|
|
|
|
|
|
|
if not x: abort(409)
|
|
|
|
|
|
|
|
g.db.delete(x)
|
|
|
|
|
2021-07-28 11:00:15 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
existing = g.db.query(Notification).filter_by(unblocksender=v.id, user_id=user.id).first()
|
|
|
|
if not existing: send_unblock_notif(v.id, user.id, f"@{v.username} has unblocked you!")
|
|
|
|
|
2021-07-31 05:28:05 +00:00
|
|
|
if v.admin_level == 1: return {"message": f"@{user.username} unbanned!"}
|
2021-07-28 21:31:50 +00:00
|
|
|
|
2021-08-11 17:06:56 +00:00
|
|
|
cache.delete_memoized(frontlist, v)
|
2021-07-30 09:42:17 +00:00
|
|
|
|
2021-07-31 05:28:05 +00:00
|
|
|
return {"message": f"@{user.username} unblocked."}
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.get("/settings/apps")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_apps(v):
|
|
|
|
if v and v.is_banned and not v.unban_utc: return render_template("seized.html")
|
|
|
|
|
|
|
|
return render_template("settings_apps.html", v=v)
|
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/remove_discord")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_remove_discord(v):
|
|
|
|
|
|
|
|
if v.admin_level>1:
|
|
|
|
return render_template("settings_filters.html", v=v, error="Admins can't disconnect Discord.")
|
|
|
|
|
|
|
|
remove_user(v)
|
|
|
|
|
|
|
|
v.discord_id=None
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.get("/settings/content")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
def settings_content_get(v):
|
|
|
|
if v and v.is_banned and not v.unban_utc: return render_template("seized.html")
|
|
|
|
|
|
|
|
return render_template("settings_filters.html", v=v)
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/name_change")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_name_change(v):
|
|
|
|
|
|
|
|
new_name=request.form.get("name").strip()
|
|
|
|
|
|
|
|
#make sure name is different
|
|
|
|
if new_name==v.username:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error="You didn't change anything")
|
|
|
|
|
|
|
|
#verify acceptability
|
|
|
|
if not re.match(valid_username_regex, new_name):
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error=f"This isn't a valid username.")
|
|
|
|
|
|
|
|
#verify availability
|
|
|
|
name=new_name.replace('_','\_')
|
|
|
|
|
|
|
|
x= g.db.query(User).options(
|
|
|
|
lazyload('*')
|
|
|
|
).filter(
|
|
|
|
or_(
|
|
|
|
User.username.ilike(name),
|
|
|
|
User.original_username.ilike(name)
|
|
|
|
)
|
|
|
|
).first()
|
|
|
|
|
|
|
|
if x and x.id != v.id:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error=f"Username `{new_name}` is already in use.")
|
|
|
|
|
|
|
|
v=g.db.query(User).with_for_update().options(lazyload('*')).filter_by(id=v.id).first()
|
|
|
|
|
|
|
|
v.username=new_name
|
|
|
|
v.name_changed_utc=int(time.time())
|
|
|
|
|
|
|
|
set_nick(v, new_name)
|
|
|
|
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/song_change")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_song_change(v):
|
|
|
|
song=request.form.get("song").strip()
|
|
|
|
|
2021-07-26 18:47:42 +00:00
|
|
|
if song == "" and v.song and path.isfile(f"/songs/{v.song}.mp3") and g.db.query(User).filter_by(song=v.song).count() == 1:
|
2021-07-21 01:12:26 +00:00
|
|
|
os.remove(f"/songs/{v.song}.mp3")
|
|
|
|
v.song=None
|
|
|
|
g.db.add(v)
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
|
|
|
song = song.replace("https://music.youtube.com", "https://youtube.com")
|
|
|
|
if song.startswith(("https://www.youtube.com/watch?v=", "https://youtube.com/watch?v=", "https://m.youtube.com/watch?v=")):
|
|
|
|
id = song.split("v=")[1]
|
|
|
|
elif song.startswith("https://youtu.be/"):
|
|
|
|
id = song.split("https://youtu.be/")[1]
|
|
|
|
else:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error=f"Not a youtube link.")
|
|
|
|
|
|
|
|
if "?" in id: id = id.split("?")[0]
|
|
|
|
if "&" in id: id = id.split("&")[0]
|
|
|
|
|
2021-07-26 18:47:42 +00:00
|
|
|
if path.isfile(f'/songs/{id}.mp3'):
|
2021-07-21 01:12:26 +00:00
|
|
|
v.song=id
|
|
|
|
g.db.add(v)
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
|
|
|
|
2021-08-05 14:43:54 +00:00
|
|
|
req = requests.get(f"https://www.googleapis.com/youtube/v3/videos?id={id}&key={YOUTUBE_KEY}&part=contentDetails").json()
|
2021-07-21 01:12:26 +00:00
|
|
|
try: duration = req['items'][0]['contentDetails']['duration']
|
|
|
|
except:
|
|
|
|
print(req)
|
|
|
|
abort(400)
|
|
|
|
if "H" in duration:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error=f"Duration of the video must not exceed 10 minutes.")
|
|
|
|
|
|
|
|
if "M" in duration:
|
|
|
|
duration = int(duration.split("PT")[1].split("M")[0])
|
|
|
|
if duration > 10:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error=f"Duration of the video must not exceed 10 minutes.")
|
|
|
|
|
|
|
|
|
2021-07-26 18:47:42 +00:00
|
|
|
if v.song and path.isfile(f"/songs/{v.song}.mp3") and g.db.query(User).filter_by(song=v.song).count() == 1:
|
2021-07-21 01:12:26 +00:00
|
|
|
os.remove(f"/songs/{v.song}.mp3")
|
|
|
|
|
|
|
|
ydl_opts = {
|
|
|
|
'outtmpl': '/songs/%(title)s.%(ext)s',
|
|
|
|
'format': 'bestaudio/best',
|
|
|
|
'postprocessors': [{
|
|
|
|
'key': 'FFmpegExtractAudio',
|
|
|
|
'preferredcodec': 'mp3',
|
|
|
|
'preferredquality': '192',
|
|
|
|
}],
|
|
|
|
}
|
|
|
|
|
|
|
|
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
|
|
|
|
try: ydl.download([f"https://youtube.com/watch?v={id}"])
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error=f"Age-restricted videos aren't allowed.")
|
|
|
|
|
|
|
|
files = os.listdir("/songs/")
|
2021-07-26 18:47:42 +00:00
|
|
|
paths = [path.join("/songs/", basename) for basename in files]
|
|
|
|
songfile = max(paths, key=path.getctime)
|
2021-07-21 01:12:26 +00:00
|
|
|
os.rename(songfile, f"/songs/{id}.mp3")
|
|
|
|
|
|
|
|
v.song=id
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/title_change")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_title_change(v):
|
|
|
|
|
|
|
|
if v.flairchanged: abort(403)
|
|
|
|
|
2021-08-15 03:17:45 +00:00
|
|
|
new_name=request.form.get("title").strip()[:100]
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
#make sure name is different
|
|
|
|
if new_name==v.customtitle:
|
|
|
|
return render_template("settings_profile.html",
|
|
|
|
v=v,
|
|
|
|
error="You didn't change anything")
|
|
|
|
|
|
|
|
v.customtitleplain = new_name
|
|
|
|
|
2021-08-19 15:11:35 +00:00
|
|
|
v.customtitle = filter_title(new_name)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
g.db.add(v)
|
|
|
|
return redirect("/settings/profile")
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/settings/badges")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def settings_badge_recheck(v):
|
|
|
|
|
|
|
|
v.refresh_selfset_badges()
|
|
|
|
|
2021-08-17 21:43:49 +00:00
|
|
|
return {"message":"Badges Refreshed"}
|