rDrama/files/routes/settings.py

1074 lines
34 KiB
Python
Raw Normal View History

2021-10-15 14:08:27 +00:00
from __future__ import unicode_literals
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
from files.helpers.const import *
from files.mail import *
from files.__main__ import app, cache, limiter
import youtube_dl
from .front import frontlist
import os
2021-12-07 23:18:06 +00:00
from files.helpers.sanitize import filter_emojis_only
2021-10-15 14:08:27 +00:00
from files.helpers.discord import add_role
from shutil import copyfile
import requests
valid_username_regex = re.compile("^[a-zA-Z0-9_\-]{3,25}$")
valid_password_regex = re.compile("^.{8,100}$")
YOUTUBE_KEY = environ.get("YOUTUBE_KEY", "").strip()
COINS_NAME = environ.get("COINS_NAME").strip()
GUMROAD_TOKEN = environ.get("GUMROAD_TOKEN", "").strip()
2021-10-21 17:01:25 +00:00
SITE_NAME = environ.get("SITE_NAME", "").strip()
2021-12-28 04:47:02 +00:00
IMGUR_KEY = environ.get("IMGUR_KEY").strip()
GUMROAD_ID = environ.get("GUMROAD_ID", "tfcvri").strip()
2021-10-15 14:08:27 +00:00
tiers={
"(Paypig)": 1,
"(Renthog)": 2,
"(Landchad)": 3,
"(Terminally online turboautist)": 4,
2021-11-24 12:24:44 +00:00
"(Rich Bich)": 5,
2022-01-02 14:12:19 +00:00
"(LlamaBean)": 1,
2021-10-15 14:08:27 +00:00
}
@app.post("/settings/removebackground")
@limiter.limit("1/second")
@auth_required
def removebackground(v):
v.background = None
g.db.add(v)
g.db.commit()
return {"message": "Background removed!"}
@app.post("/settings/profile")
@limiter.limit("1/second")
@auth_required
def settings_profile_post(v):
2021-11-11 19:14:11 +00:00
if v and v.patron:
2021-12-29 12:38:54 +00:00
if request.content_length > 8 * 1024 * 1024: return {"error":"Max file size is 8 MB."}, 413
elif request.content_length > 4 * 1024 * 1024: return {"error":"Max file size is 4 MB."}, 413
2021-10-15 14:08:27 +00:00
2021-12-30 20:57:45 +00:00
if not v or v.oldsite: template = ''
else: template = 'CHRISTMAS/'
2021-10-15 14:08:27 +00:00
updated = False
2021-12-27 01:08:06 +00:00
if request.values.get("background", v.background) != v.background:
2021-10-15 14:08:27 +00:00
updated = True
v.background = request.values.get("background", None)
2021-11-07 13:12:31 +00:00
elif request.values.get("slurreplacer", v.slurreplacer) != v.slurreplacer:
2021-10-15 14:08:27 +00:00
updated = True
v.slurreplacer = request.values.get("slurreplacer", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("hidevotedon", v.hidevotedon) != v.hidevotedon:
2021-10-15 14:08:27 +00:00
updated = True
v.hidevotedon = request.values.get("hidevotedon", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("cardview", v.cardview) != v.cardview:
2021-10-15 14:08:27 +00:00
updated = True
v.cardview = request.values.get("cardview", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("highlightcomments", v.highlightcomments) != v.highlightcomments:
2021-10-15 14:08:27 +00:00
updated = True
v.highlightcomments = request.values.get("highlightcomments", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("newtab", v.newtab) != v.newtab:
2021-10-15 14:08:27 +00:00
updated = True
v.newtab = request.values.get("newtab", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("newtabexternal", v.newtabexternal) != v.newtabexternal:
2021-10-15 14:08:27 +00:00
updated = True
v.newtabexternal = request.values.get("newtabexternal", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("oldreddit", v.oldreddit) != v.oldreddit:
2021-10-15 14:08:27 +00:00
updated = True
v.oldreddit = request.values.get("oldreddit", None) == 'true'
2021-12-19 13:01:28 +00:00
elif request.values.get("oldsite", v.oldsite) != v.oldsite:
updated = True
v.oldsite = request.values.get("oldsite", None) == 'true'
2021-11-19 23:05:28 +00:00
elif request.values.get("teddit", v.teddit) != v.teddit:
updated = True
v.teddit = request.values.get("teddit", None) == 'true'
2022-01-02 21:49:36 +00:00
elif request.values.get("compact", v.compact) != v.compact:
updated = True
2022-01-02 21:50:37 +00:00
v.compact = request.values.get("compact", None) == 'true'
2022-01-02 21:49:36 +00:00
2021-11-07 13:12:31 +00:00
elif request.values.get("nitter", v.nitter) != v.nitter:
2021-10-15 14:08:27 +00:00
updated = True
v.nitter = request.values.get("nitter", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("controversial", v.controversial) != v.controversial:
2021-10-15 14:08:27 +00:00
updated = True
v.controversial = request.values.get("controversial", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("sigs_disabled", v.sigs_disabled) != v.sigs_disabled:
2021-11-04 17:24:43 +00:00
updated = True
v.sigs_disabled = request.values.get("sigs_disabled", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("over18", v.over_18) != v.over_18:
2021-10-15 14:08:27 +00:00
updated = True
v.over_18 = request.values.get("over18", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("private", v.is_private) != v.is_private:
2021-10-15 14:08:27 +00:00
updated = True
v.is_private = request.values.get("private", None) == 'true'
2021-11-07 13:12:31 +00:00
elif request.values.get("nofollow", v.is_nofollow) != v.is_nofollow:
2021-10-15 14:08:27 +00:00
updated = True
v.is_nofollow = request.values.get("nofollow", None) == 'true'
2021-11-30 13:09:17 +00:00
elif request.values.get("bio") == "":
v.bio = None
v.bio_html = None
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Your bio has been updated.")
2021-11-30 13:09:17 +00:00
2021-11-07 13:12:31 +00:00
elif request.values.get("sig") == "":
2021-11-04 19:54:12 +00:00
v.sig = None
v.sig_html = None
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Your sig has been updated.")
2021-11-04 19:54:12 +00:00
2021-11-07 13:12:31 +00:00
elif request.values.get("friends") == "":
v.friends = None
v.friends_html = None
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Your friends list has been updated.")
2021-11-07 13:12:31 +00:00
elif request.values.get("enemies") == "":
v.enemies = None
v.enemies_html = None
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Your enemies list has been updated.")
2021-11-07 13:12:31 +00:00
2022-01-07 21:44:38 +00:00
elif (v.patron or v.id == MOOSE_ID) and request.values.get("sig"):
2021-11-04 15:20:10 +00:00
sig = request.values.get("sig")[:200]
2021-11-04 15:12:17 +00:00
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', sig, re.MULTILINE):
if "wikipedia" not in i.group(1): sig = sig.replace(i.group(1), f'![]({i.group(1)})')
2021-11-04 15:20:10 +00:00
2021-11-04 15:12:17 +00:00
sig_html = CustomRenderer().render(mistletoe.Document(sig))
sig_html = sanitize(sig_html)
bans = filter_comment_html(sig_html)
if bans:
ban = bans[0]
reason = f"Remove the {ban.domain} link from your sig and try again."
if ban.reason:
reason += f" {ban.reason}"
return {"error": reason}, 401
2021-11-04 15:20:10 +00:00
if len(sig_html) > 1000:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-04 15:20:10 +00:00
v=v,
error="Your sig is too long")
2021-11-04 15:12:17 +00:00
2021-11-04 15:20:10 +00:00
v.sig = sig[:200]
2021-11-04 15:12:17 +00:00
v.sig_html=sig_html
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-04 15:12:17 +00:00
v=v,
msg="Your sig has been updated.")
2021-11-04 16:15:40 +00:00
2021-11-07 13:12:31 +00:00
elif request.values.get("friends"):
2021-11-04 16:07:13 +00:00
friends = request.values.get("friends")[:500]
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', friends, re.MULTILINE):
if "wikipedia" not in i.group(1): friends = friends.replace(i.group(1), f'![]({i.group(1)})')
friends_html = CustomRenderer().render(mistletoe.Document(friends))
friends_html = sanitize(friends_html)
bans = filter_comment_html(friends_html)
if bans:
ban = bans[0]
2021-11-06 15:21:05 +00:00
reason = f"Remove the {ban.domain} link from your friends list and try again."
2021-11-04 16:07:13 +00:00
if ban.reason: reason += f" {ban.reason}"
return {"error": reason}, 401
2021-11-04 16:15:40 +00:00
if len(friends_html) > 2000:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-04 16:07:13 +00:00
v=v,
2021-11-06 15:21:05 +00:00
error="Your friends list is too long")
2021-11-04 16:07:13 +00:00
2021-11-04 16:44:34 +00:00
2021-12-29 06:43:20 +00:00
notify_users = NOTIFY_USERS(friends_html, v)
2021-12-20 20:03:59 +00:00
cid = notif_comment(f"@{v.username} has added you to their friends list!")
2021-11-05 14:27:51 +00:00
for x in notify_users:
2021-12-20 20:03:59 +00:00
add_notif(cid, x)
2021-11-04 16:44:34 +00:00
2021-11-04 16:07:13 +00:00
v.friends = friends[:500]
v.friends_html=friends_html
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-04 16:07:13 +00:00
v=v,
2021-11-06 15:21:05 +00:00
msg="Your friends list has been updated.")
2021-11-04 16:07:13 +00:00
2021-11-07 13:12:31 +00:00
elif request.values.get("enemies"):
2021-11-06 15:21:05 +00:00
enemies = request.values.get("enemies")[:500]
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', enemies, re.MULTILINE):
if "wikipedia" not in i.group(1): enemies = enemies.replace(i.group(1), f'![]({i.group(1)})')
enemies_html = CustomRenderer().render(mistletoe.Document(enemies))
enemies_html = sanitize(enemies_html)
bans = filter_comment_html(enemies_html)
if bans:
ban = bans[0]
reason = f"Remove the {ban.domain} link from your enemies list and try again."
if ban.reason: reason += f" {ban.reason}"
return {"error": reason}, 401
if len(enemies_html) > 2000:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-06 15:21:05 +00:00
v=v,
error="Your enemies list is too long")
2021-12-29 06:43:20 +00:00
notify_users = NOTIFY_USERS(enemies_html, v)
2021-12-20 20:03:59 +00:00
cid = notif_comment(f"@{v.username} has added you to their enemies list!")
2021-11-06 15:21:05 +00:00
for x in notify_users:
2021-12-20 20:03:59 +00:00
add_notif(cid, x)
2021-11-06 15:21:05 +00:00
v.enemies = enemies[:500]
v.enemies_html=enemies_html
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-06 15:21:05 +00:00
v=v,
msg="Your enemies list has been updated.")
2021-11-04 16:15:40 +00:00
2021-11-07 13:12:31 +00:00
elif request.values.get("bio") or request.files.get('file') and request.headers.get("cf-ipcountry") != "T1":
2021-11-04 15:12:17 +00:00
bio = request.values.get("bio")[:1500]
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', bio, re.MULTILINE):
if "wikipedia" not in i.group(1): bio = bio.replace(i.group(1), f'![]({i.group(1)})')
if request.files.get('file'):
file = request.files['file']
2021-12-18 02:59:40 +00:00
if file.content_type.startswith('image/'):
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
file.save(name)
url = process_image(name)
2021-12-18 04:48:10 +00:00
bio += f"\n\n![]({url})"
2021-12-18 02:59:40 +00:00
elif file.content_type.startswith('video/'):
file.save("video.mp4")
with open("video.mp4", 'rb') as f:
2022-01-06 14:20:45 +00:00
try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link']
except: return {"error": "Imgur error"}, 400
2022-01-06 17:57:59 +00:00
if url.endswith('.'): url += 'mp4'
2021-12-18 04:48:10 +00:00
bio += f"\n\n{url}"
2021-12-18 02:59:40 +00:00
else:
2022-01-07 21:03:14 +00:00
if request.headers.get("Authorization"): return {"error": "Image/Video files only"}, 400
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2022-01-07 21:03:14 +00:00
return render_template(f"{template}settings_profile.html", v=v, error="Image/Video files only."), 400
2021-11-04 15:12:17 +00:00
bio_html = CustomRenderer().render(mistletoe.Document(bio))
bio_html = sanitize(bio_html)
bans = filter_comment_html(bio_html)
if len(bio_html) > 10000:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-11-04 15:12:17 +00:00
v=v,
error="Your bio is too long")
if bans:
ban = bans[0]
reason = f"Remove the {ban.domain} link from your bio and try again."
if ban.reason:
reason += f" {ban.reason}"
return {"error": reason}, 401
if len(bio_html) > 10000: abort(400)
v.bio = bio[:1500]
v.bio_html=bio_html
g.db.add(v)
g.db.commit()
2021-12-19 13:01:28 +00:00
return render_template(f"{template}settings_profile.html",
2021-11-04 15:12:17 +00:00
v=v,
msg="Your bio has been updated.")
2021-10-15 14:08:27 +00:00
frontsize = request.values.get("frontsize")
if frontsize:
if frontsize in ["25", "50", "100"]:
v.frontsize = int(frontsize)
updated = True
cache.delete_memoized(frontlist)
else: abort(400)
defaultsortingcomments = request.values.get("defaultsortingcomments")
if defaultsortingcomments:
if defaultsortingcomments in ["new", "old", "controversial", "top", "bottom"]:
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"]:
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:
2022-01-02 13:22:12 +00:00
if theme in ["classic","transparent", "win98", "dark", "light", "coffee", "tron", "4chan", "midnight"]:
if theme == "transparent" and not v.background:
return render_template(f"{template}settings_profile.html", v=v, error="You need to set a background to use the transparent theme!")
v.theme = theme
if theme == "win98": v.themecolor = "30409f"
updated = True
else: abort(400)
2021-10-15 14:08:27 +00:00
2021-12-19 23:36:26 +00:00
theme2 = request.values.get("theme2")
if theme2:
v.theme2 = theme2
updated = True
2021-10-15 14:08:27 +00:00
quadrant = request.values.get("quadrant")
2022-01-03 04:08:46 +00:00
if quadrant and request.host == 'pcmemes.net'.lower():
2021-10-15 14:08:27 +00:00
v.quadrant = quadrant
v.customtitle = quadrant
if quadrant=="Centrist":
v.namecolor = "7f8fa6"
v.titlecolor = "7f8fa6"
elif quadrant=="LibLeft":
v.namecolor = "62ca56"
v.titlecolor = "62ca56"
elif quadrant=="LibRight":
v.namecolor = "f8db58"
v.titlecolor = "f8db58"
elif quadrant=="AuthLeft":
v.namecolor = "ff0000"
v.titlecolor = "ff0000"
elif quadrant=="AuthRight":
v.namecolor = "2a96f3"
v.titlecolor = "2a96f3"
elif quadrant=="LibCenter":
v.namecolor = "add357"
v.titlecolor = "add357"
elif quadrant=="AuthCenter":
v.namecolor = "954b7a"
v.titlecolor = "954b7a"
elif quadrant=="Left":
v.namecolor = "b1652b"
v.titlecolor = "b1652b"
elif quadrant=="Right":
v.namecolor = "91b9A6"
v.titlecolor = "91b9A6"
updated = True
if updated:
g.db.add(v)
g.db.commit()
return {"message": "Your settings have been updated."}
else:
return {"error": "You didn't change anything."}, 400
2021-10-16 14:44:42 +00:00
@app.post("/settings/filters")
@auth_required
def filters(v):
filters=request.values.get("filters")[:1000].strip()
2021-12-19 13:01:28 +00:00
if filters == v.custom_filter_list:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_filters.html", v=v, error="You didn't change anything")
2021-10-16 14:44:42 +00:00
v.custom_filter_list=filters
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_filters.html", v=v, msg="Your custom filters have been updated.")
2021-10-16 14:44:42 +00:00
2021-10-15 14:08:27 +00:00
@app.post("/changelogsub")
@auth_required
def changelogsub(v):
v.changelogsub = not v.changelogsub
g.db.add(v)
cache.delete_memoized(frontlist)
g.db.commit()
if v.changelogsub: return {"message": "You have subscribed to the changelog!"}
else: return {"message": "You have unsubscribed from the changelog!"}
@app.post("/settings/namecolor")
@limiter.limit("1/second")
@auth_required
def namecolor(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2021-10-15 14:08:27 +00:00
color = str(request.values.get("color", "")).strip()
if color.startswith('#'): color = color[1:]
2021-12-19 13:01:28 +00:00
if len(color) != 6: return render_template(f"{template}settings_security.html", v=v, error="Invalid color code")
2021-10-15 14:08:27 +00:00
v.namecolor = color
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
@app.post("/settings/themecolor")
@limiter.limit("1/second")
@auth_required
def themecolor(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2021-10-15 14:08:27 +00:00
themecolor = str(request.values.get("themecolor", "")).strip()
if themecolor.startswith('#'): themecolor = themecolor[1:]
2021-12-19 13:01:28 +00:00
if len(themecolor) != 6: return render_template(f"{template}settings_security.html", v=v, error="Invalid color code")
2021-10-15 14:08:27 +00:00
v.themecolor = themecolor
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
@app.post("/settings/gumroad")
@limiter.limit("1/second")
@auth_required
def gumroad(v):
2021-10-21 17:01:25 +00:00
if SITE_NAME == 'Drama': patron = 'Paypig'
2021-10-15 14:08:27 +00:00
else: patron = 'Patron'
2022-01-06 16:46:09 +00:00
if not (v.email and v.is_activated):
return {"error": f"You must have a verified email to verify {patron} status and claim your rewards"}, 400
2021-10-15 14:08:27 +00:00
2022-01-01 22:06:53 +00:00
data = {'access_token': GUMROAD_TOKEN, 'email': v.email}
response = requests.get('https://api.gumroad.com/v2/sales', data=data).json()["sales"]
2021-10-15 14:08:27 +00:00
2022-01-01 22:06:53 +00:00
if len(response) == 0: return {"error": "Email not found"}, 404
2021-12-03 16:59:00 +00:00
2022-01-01 22:06:53 +00:00
response = response[0]
2021-10-15 14:08:27 +00:00
tier = tiers[response["variants_and_quantity"]]
if v.patron == tier: return {"error": f"{patron} rewards already claimed"}, 400
2021-12-20 00:09:03 +00:00
existing = g.db.query(User.id).filter_by(email=v.email, is_activated=True, patron=tier).one_or_none()
if existing: return {"error": f"{patron} rewards already claimed on another account"}, 400
2021-10-23 19:15:50 +00:00
if v.patron:
2021-12-20 14:56:47 +00:00
badge = v.has_badge(20+v.patron)
2021-11-01 18:25:10 +00:00
if badge: g.db.delete(badge)
2021-10-23 19:15:50 +00:00
2021-10-15 14:08:27 +00:00
v.patron = tier
2021-10-21 22:55:48 +00:00
if v.discord_id: add_role(v, f"{tier}")
2021-12-02 20:18:59 +00:00
if v.patron == 1: procoins = 2500
2021-10-21 22:55:48 +00:00
elif v.patron == 2: procoins = 5000
elif v.patron == 3: procoins = 10000
elif v.patron == 4: procoins = 25000
2021-11-24 12:24:44 +00:00
elif v.patron == 5: procoins = 50000
2021-10-21 22:55:48 +00:00
2021-10-21 22:59:19 +00:00
v.procoins += procoins
2021-12-20 20:03:59 +00:00
send_repeatable_notification(v.id, f"You have received {procoins} Marseybux! You can use them to buy awards in the [shop](/shop).")
2021-10-15 14:08:27 +00:00
2021-11-13 21:09:39 +00:00
if v.truecoins > 150 and v.patron > 0: v.cluballowed = True
2021-11-11 00:10:48 +00:00
if v.patron > 3 and v.verified == None: v.verified = "Verified"
g.db.add(v)
2021-10-15 14:08:27 +00:00
if not v.has_badge(20+tier):
2021-10-21 22:55:48 +00:00
new_badge = Badge(badge_id=20+tier, user_id=v.id)
2021-10-15 14:08:27 +00:00
g.db.add(new_badge)
2021-12-28 13:51:26 +00:00
send_notification(v.id, f"@AutoJanny has given you the following profile badge:\n\n![]({new_badge.path})\n\n{new_badge.name}")
2021-10-15 14:08:27 +00:00
g.db.commit()
return {"message": f"{patron} rewards claimed!"}
@app.post("/settings/titlecolor")
@limiter.limit("1/second")
@auth_required
def titlecolor(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2021-10-15 14:08:27 +00:00
titlecolor = str(request.values.get("titlecolor", "")).strip()
if titlecolor.startswith('#'): titlecolor = titlecolor[1:]
2021-12-19 13:01:28 +00:00
if len(titlecolor) != 6: return render_template(f"{template}settings_profile.html", v=v, error="Invalid color code")
2021-10-15 14:08:27 +00:00
v.titlecolor = titlecolor
g.db.add(v)
g.db.commit()
2021-10-27 00:37:34 +00:00
return redirect("/settings/profile")
2021-10-15 14:08:27 +00:00
2021-10-27 00:37:34 +00:00
@app.post("/settings/verifiedcolor")
@limiter.limit("1/second")
@auth_required
def verifiedcolor(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2021-10-27 00:37:34 +00:00
verifiedcolor = str(request.values.get("verifiedcolor", "")).strip()
if verifiedcolor.startswith('#'): verifiedcolor = verifiedcolor[1:]
2021-12-19 13:01:28 +00:00
if len(verifiedcolor) != 6: return render_template(f"{template}settings_profile.html", v=v, error="Invalid color code")
2021-10-27 00:37:34 +00:00
v.verifiedcolor = verifiedcolor
g.db.add(v)
g.db.commit()
2021-10-15 14:08:27 +00:00
return redirect("/settings/profile")
@app.post("/settings/security")
@limiter.limit("1/second")
@auth_required
def settings_security_post(v):
2021-12-21 19:48:39 +00:00
if request.values.get("new_password"):
2021-12-21 19:56:38 +00:00
if request.values.get("new_password") != request.values.get("cnf_password"):
return render_template("settings_security.html", v=v, error="Passwords do not match.")
2021-10-15 14:08:27 +00:00
if not re.match(valid_password_regex, request.values.get("new_password")):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Password must be between 8 and 100 characters.")
2021-10-15 14:08:27 +00:00
if not v.verifyPass(request.values.get("old_password")):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Incorrect password")
2021-10-15 14:08:27 +00:00
v.passhash = v.hash_password(request.values.get("new_password"))
g.db.add(v)
g.db.commit()
2021-12-31 12:52:04 +00:00
return render_template("settings_security.html", v=v, msg="Your password has been changed.")
2021-10-15 14:08:27 +00:00
if request.values.get("new_email"):
if not v.verifyPass(request.values.get('password')):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Invalid password.")
2021-10-15 14:08:27 +00:00
2021-12-20 14:56:47 +00:00
new_email = request.values.get("new_email","").strip().lower()
2021-11-23 21:03:20 +00:00
2021-10-15 14:08:27 +00:00
if new_email == v.email:
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="That email is already yours!")
2021-10-15 14:08:27 +00:00
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)
)
2022-01-06 16:46:09 +00:00
return render_template("settings_security.html", v=v, msg="Check your email and click the verification link to complete the email change.")
2021-10-15 14:08:27 +00:00
2022-01-02 13:32:50 +00:00
if request.values.get("2fa_token"):
2021-10-15 14:08:27 +00:00
if not v.verifyPass(request.values.get('password')):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Invalid password or token.")
2021-10-15 14:08:27 +00:00
secret = request.values.get("2fa_secret")
x = pyotp.TOTP(secret)
if not x.verify(request.values.get("2fa_token"), valid_window=1):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Invalid password or token.")
2021-10-15 14:08:27 +00:00
v.mfa_secret = secret
g.db.add(v)
g.db.commit()
2022-01-02 13:22:12 +00:00
return render_template("settings_security.html", v=v, msg="Two-factor authentication enabled.")
2021-10-15 14:08:27 +00:00
2022-01-02 13:32:50 +00:00
if request.values.get("2fa_remove"):
2021-10-15 14:08:27 +00:00
if not v.verifyPass(request.values.get('password')):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Invalid password or token.")
2021-10-15 14:08:27 +00:00
token = request.values.get("2fa_remove")
if not v.validate_2fa(token):
2021-12-21 19:56:38 +00:00
return render_template("settings_security.html", v=v, error="Invalid password or token.")
2021-10-15 14:08:27 +00:00
v.mfa_secret = None
g.db.add(v)
g.db.commit()
2022-01-02 13:22:12 +00:00
return render_template("settings_security.html", v=v, msg="Two-factor authentication disabled.")
2021-10-15 14:08:27 +00:00
@app.post("/settings/log_out_all_others")
@limiter.limit("1/second")
@auth_required
def settings_log_out_others(v):
submitted_password = request.values.get("password", "").strip()
2021-12-17 03:25:05 +00:00
if not v.verifyPass(submitted_password):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_security.html", v=v, error="Incorrect Password"), 401
2021-10-15 14:08:27 +00:00
v.login_nonce += 1
session["login_nonce"] = v.login_nonce
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_security.html", v=v, msg="All other devices have been logged out")
2021-10-15 14:08:27 +00:00
@app.post("/settings/images/profile")
@limiter.limit("1/second")
@auth_required
def settings_images_profile(v):
2021-11-11 19:14:11 +00:00
if v and v.patron:
2021-12-29 12:38:54 +00:00
if request.content_length > 8 * 1024 * 1024: return {"error":"Max file size is 8 MB."}, 413
elif request.content_length > 4 * 1024 * 1024: return {"error":"Max file size is 4 MB."}, 413
2021-10-15 14:08:27 +00:00
2021-12-29 12:38:54 +00:00
if request.headers.get("cf-ipcountry") == "T1": return {"error":"Image uploads are not allowed through TOR."}, 403
2021-10-15 14:08:27 +00:00
file = request.files["profile"]
2021-12-13 01:00:08 +00:00
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
2021-10-15 14:08:27 +00:00
file.save(name)
2021-12-14 20:25:57 +00:00
highres = process_image(name)
2021-10-15 14:08:27 +00:00
if not highres: abort(400)
2021-11-11 18:58:09 +00:00
name2 = name.replace('.webp', 'r.webp')
2021-10-15 14:08:27 +00:00
copyfile(name, name2)
2021-12-14 20:25:57 +00:00
imageurl = process_image(name2, True)
2021-10-15 14:08:27 +00:00
if not imageurl: abort(400)
2021-12-13 01:00:08 +00:00
if v.highres and '/images/' in v.highres : os.remove('/images/' + v.highres.split('/images/')[1])
if v.profileurl and '/images/' in v.profileurl : os.remove('/images/' + v.profileurl.split('/images/')[1])
2021-10-15 14:08:27 +00:00
v.highres = highres
v.profileurl = imageurl
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Profile picture successfully updated.")
2021-10-15 14:08:27 +00:00
@app.post("/settings/images/banner")
@limiter.limit("1/second")
@auth_required
def settings_images_banner(v):
2021-11-11 19:14:11 +00:00
if v and v.patron:
2021-12-29 12:38:54 +00:00
if request.content_length > 8 * 1024 * 1024: return {"error":"Max file size is 8 MB."}, 413
elif request.content_length > 4 * 1024 * 1024: return {"error":"Max file size is 4 MB."}, 413
2021-10-15 14:08:27 +00:00
2021-12-29 12:38:54 +00:00
if request.headers.get("cf-ipcountry") == "T1": return {"error":"Image uploads are not allowed through TOR."}, 403
2021-10-15 14:08:27 +00:00
file = request.files["banner"]
2021-12-13 01:00:08 +00:00
name = f'/images/{time.time()}'.replace('.','')[:-5] + '.webp'
2021-10-15 14:08:27 +00:00
file.save(name)
2021-12-14 20:25:57 +00:00
bannerurl = process_image(name)
2021-10-15 14:08:27 +00:00
2021-10-27 20:12:16 +00:00
if bannerurl:
2021-12-13 01:00:08 +00:00
if v.bannerurl and '/images/' in v.bannerurl : os.remove('/images/' + v.bannerurl.split('/images/')[1])
2021-10-27 20:12:16 +00:00
v.bannerurl = bannerurl
2021-10-15 14:08:27 +00:00
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Banner successfully updated.")
2021-10-15 14:08:27 +00:00
@app.post("/settings/delete/profile")
@limiter.limit("1/second")
@auth_required
def settings_delete_profile(v):
2021-12-03 18:10:24 +00:00
2021-12-03 19:20:52 +00:00
if v.profileurl or v.highres:
v.deletepfp()
g.db.add(v)
g.db.commit()
2021-12-03 18:10:24 +00:00
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v,
2021-10-15 14:08:27 +00:00
msg="Profile picture successfully removed.")
@app.post("/settings/delete/banner")
@limiter.limit("1/second")
@auth_required
def settings_delete_banner(v):
2021-12-03 18:10:24 +00:00
if v.bannerurl:
2021-12-03 19:20:52 +00:00
v.deletebanner()
2021-12-03 18:10:24 +00:00
g.db.add(v)
g.db.commit()
2021-10-15 14:08:27 +00:00
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html", v=v, msg="Banner successfully removed.")
2021-10-15 14:08:27 +00:00
@app.get("/settings/blocks")
@auth_required
def settings_blockedpage(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_blocks.html", v=v)
2021-10-15 14:08:27 +00:00
@app.get("/settings/css")
@auth_required
def settings_css_get(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_css.html", v=v)
2021-10-15 14:08:27 +00:00
@app.post("/settings/css")
@limiter.limit("1/second")
@auth_required
def settings_css(v):
2021-12-28 12:30:59 +00:00
if v.agendaposter: return {"error": "Agendapostered users can't edit css!"}
2021-10-15 14:08:27 +00:00
2021-12-28 12:30:49 +00:00
css = request.values.get("css").strip().replace('\\', '').strip()[:4000]
2021-12-10 17:31:32 +00:00
v.css = css
2021-10-15 14:08:27 +00:00
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_css.html", v=v)
2021-10-15 14:08:27 +00:00
@app.get("/settings/profilecss")
@auth_required
def settings_profilecss_get(v):
2021-12-09 21:21:52 +00:00
if v.truecoins < 1000 and not v.patron and v.admin_level == 0 : return f"You must have +1000 {COINS_NAME} or be a paypig to set profile css."
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profilecss.html", v=v)
2021-10-15 14:08:27 +00:00
@app.post("/settings/profilecss")
@limiter.limit("1/second")
@auth_required
def settings_profilecss(v):
2021-12-09 21:21:52 +00:00
if v.truecoins < 1000 and not v.patron: return f"You must have +1000 {COINS_NAME} or be a paypig to set profile css."
2021-10-15 14:08:27 +00:00
profilecss = request.values.get("profilecss").strip().replace('\\', '').strip()[:4000]
v.profilecss = profilecss
g.db.add(v)
g.db.commit()
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profilecss.html", v=v)
2021-10-15 14:08:27 +00:00
@app.post("/settings/block")
@limiter.limit("1/second")
@auth_required
def settings_block_user(v):
user = get_user(request.values.get("username"), graceful=True)
2021-11-26 23:46:41 +00:00
if not user: return {"error": "That user doesn't exist."}, 404
2021-11-23 22:36:38 +00:00
if user.unblockable: return {"error": "This user is unblockable."}, 403
2021-10-15 14:08:27 +00:00
if user.id == v.id:
return {"error": "You can't block yourself."}, 409
2021-11-29 23:07:57 +00:00
if v.is_blocking(user):
2021-10-15 14:08:27 +00:00
return {"error": f"You have already blocked @{user.username}."}, 409
2021-11-18 14:21:19 +00:00
if user.id == NOTIFICATIONS_ID:
2021-10-15 14:08:27 +00:00
return {"error": "You can't block this user."}, 409
new_block = UserBlock(user_id=v.id,
target_id=user.id,
)
g.db.add(new_block)
2021-12-20 20:03:59 +00:00
send_notification(user.id, f"@{v.username} has blocked you!")
2021-10-15 14:08:27 +00:00
cache.delete_memoized(frontlist)
g.db.commit()
2021-11-26 19:28:55 +00:00
return {"message": f"@{user.username} blocked."}
2021-10-15 14:08:27 +00:00
@app.post("/settings/unblock")
@limiter.limit("1/second")
@auth_required
def settings_unblock_user(v):
user = get_user(request.values.get("username"))
2021-11-29 23:07:57 +00:00
x = v.is_blocking(user)
2021-10-15 14:08:27 +00:00
if not x: abort(409)
g.db.delete(x)
2021-12-20 20:03:59 +00:00
send_notification(user.id, f"@{v.username} has unblocked you!")
2021-10-15 14:08:27 +00:00
cache.delete_memoized(frontlist)
g.db.commit()
return {"message": f"@{user.username} unblocked."}
@app.get("/settings/apps")
@auth_required
def settings_apps(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_apps.html", v=v)
2021-10-15 14:08:27 +00:00
@app.post("/settings/remove_discord")
@limiter.limit("1/second")
@auth_required
def settings_remove_discord(v):
remove_user(v)
v.discord_id=None
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
@app.get("/settings/content")
@auth_required
def settings_content_get(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_filters.html", v=v)
2021-10-15 14:08:27 +00:00
@app.post("/settings/name_change")
@limiter.limit("1/second")
2022-01-06 16:46:09 +00:00
@is_not_permabanned
2021-10-15 14:08:27 +00:00
def settings_name_change(v):
new_name=request.values.get("name").strip()
if new_name==v.username:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-10-15 14:08:27 +00:00
v=v,
error="You didn't change anything")
if not re.match(valid_username_regex, new_name):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-10-15 14:08:27 +00:00
v=v,
2022-01-07 21:03:14 +00:00
error="This isn't a valid username.")
2021-10-15 14:08:27 +00:00
name=new_name.replace('_','\_')
2021-11-07 13:37:26 +00:00
x= g.db.query(User).filter(
2021-10-15 14:08:27 +00:00
or_(
User.username.ilike(name),
User.original_username.ilike(name)
)
2022-01-02 00:06:46 +00:00
).one_or_none()
2021-10-15 14:08:27 +00:00
if x and x.id != v.id:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-10-15 14:08:27 +00:00
v=v,
error=f"Username `{new_name}` is already in use.")
2022-01-02 00:06:46 +00:00
v=g.db.query(User).with_for_update().filter_by(id=v.id).one_or_none()
2021-10-15 14:08:27 +00:00
v.username=new_name
v.name_changed_utc=int(time.time())
set_nick(v, new_name)
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
@app.post("/settings/song_change")
2021-12-11 14:04:24 +00:00
@limiter.limit("5/day;1/second")
2021-10-15 14:08:27 +00:00
@auth_required
def settings_song_change(v):
song=request.values.get("song").strip()
2021-12-13 01:00:08 +00:00
if song == "" and v.song and path.isfile(f"/songs/{v.song}.mp3") and g.db.query(User.id).filter_by(song=v.song).count() == 1:
os.remove(f"/songs/{v.song}.mp3")
2021-10-15 14:08:27 +00:00
v.song = None
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
song = song.replace("https://music.youtube.com", "https://youtube.com")
2021-12-25 20:46:49 +00:00
if song.startswith(("https://www.youtube.com/watch?v=", "https://youtube.com/watch?v=", "https://m.youtube.com/watch?v=")):
2021-10-15 14:08:27 +00:00
id = song.split("v=")[1]
elif song.startswith("https://youtu.be/"):
id = song.split("https://youtu.be/")[1]
2021-12-20 12:48:02 +00:00
else:
if not v or v.oldsite: template = ''
else: template = 'CHRISTMAS/'
2022-01-07 21:03:14 +00:00
return render_template(f"{template}settings_profile.html", v=v, error="Not a youtube link.")
2021-10-15 14:08:27 +00:00
if "?" in id: id = id.split("?")[0]
if "&" in id: id = id.split("&")[0]
2021-12-13 01:00:08 +00:00
if path.isfile(f'/songs/{id}.mp3'):
2021-10-15 14:08:27 +00:00
v.song = id
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
2021-11-14 01:19:32 +00:00
req = requests.get(f"https://www.googleapis.com/youtube/v3/videos?id={id}&key={YOUTUBE_KEY}&part=contentDetails", timeout=5).json()
2021-10-15 14:08:27 +00:00
duration = req['items'][0]['contentDetails']['duration']
2021-12-17 17:55:11 +00:00
if duration == 'P0D':
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2022-01-07 21:03:14 +00:00
return render_template(f"{template}settings_profile.html", v=v, error="Can't use a live youtube video!")
2021-12-17 17:55:11 +00:00
2021-10-15 14:08:27 +00:00
if "H" in duration:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2022-01-07 21:03:14 +00:00
return render_template(f"{template}settings_profile.html", v=v, error="Duration of the video must not exceed 10 minutes.")
2021-10-15 14:08:27 +00:00
if "M" in duration:
duration = int(duration.split("PT")[1].split("M")[0])
if duration > 10:
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2022-01-07 21:03:14 +00:00
return render_template(f"{template}settings_profile.html", v=v, error="Duration of the video must not exceed 10 minutes.")
2021-10-15 14:08:27 +00:00
2021-12-13 01:00:08 +00:00
if v.song and path.isfile(f"/songs/{v.song}.mp3") and g.db.query(User.id).filter_by(song=v.song).count() == 1:
os.remove(f"/songs/{v.song}.mp3")
2021-10-15 14:08:27 +00:00
ydl_opts = {
2021-12-13 01:00:08 +00:00
'outtmpl': '/songs/%(title)s.%(ext)s',
2021-10-15 14:08:27 +00:00
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
2021-12-25 20:46:49 +00:00
try: ydl.download([f"https://youtube.com/watch?v={id}"])
2021-10-15 14:08:27 +00:00
except Exception as e:
print(e)
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
return render_template(f"{template}settings_profile.html",
2021-10-15 14:08:27 +00:00
v=v,
2022-01-07 21:03:14 +00:00
error="Age-restricted videos aren't allowed.")
2021-10-15 14:08:27 +00:00
2021-12-13 01:00:08 +00:00
files = os.listdir("/songs/")
paths = [path.join("/songs/", basename) for basename in files]
2021-10-15 14:08:27 +00:00
songfile = max(paths, key=path.getctime)
2021-12-13 01:00:08 +00:00
os.rename(songfile, f"/songs/{id}.mp3")
2021-10-15 14:08:27 +00:00
v.song = id
g.db.add(v)
g.db.commit()
return redirect("/settings/profile")
@app.post("/settings/title_change")
@limiter.limit("1/second")
@auth_required
def settings_title_change(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2021-10-15 14:08:27 +00:00
if v.flairchanged: abort(403)
new_name=request.values.get("title").strip()[:100].replace("𒐪","")
2021-12-19 13:01:28 +00:00
if new_name==v.customtitle: return render_template(f"{template}settings_profile.html", v=v, error="You didn't change anything")
2021-10-15 14:08:27 +00:00
v.customtitleplain = new_name
2021-12-07 23:18:06 +00:00
v.customtitle = filter_emojis_only(new_name)
2021-10-15 14:08:27 +00:00
2021-10-19 16:16:34 +00:00
if len(v.customtitle) < 1000:
g.db.add(v)
g.db.commit()
2021-10-15 14:08:27 +00:00
2021-12-11 14:04:24 +00:00
return redirect("/settings/profile")