2021-10-15 14:08:27 +00:00
|
|
|
import time
|
|
|
|
import mistletoe
|
|
|
|
import gevent
|
|
|
|
import requests
|
|
|
|
from files.helpers.wrappers import *
|
|
|
|
from files.helpers.sanitize import *
|
|
|
|
from files.helpers.filters import *
|
|
|
|
from files.helpers.markdown import *
|
|
|
|
from files.helpers.session import *
|
2021-12-02 21:00:17 +00:00
|
|
|
from files.helpers.alerts import send_notification, NOTIFY_USERS
|
2021-10-15 14:08:27 +00:00
|
|
|
from files.helpers.discord import send_message
|
|
|
|
from files.helpers.const import *
|
|
|
|
from files.classes import *
|
|
|
|
from flask import *
|
|
|
|
from io import BytesIO
|
|
|
|
from files.__main__ import app, limiter, cache, db_session
|
|
|
|
from PIL import Image as PILimage
|
|
|
|
from .front import frontlist, changeloglist
|
|
|
|
from urllib.parse import ParseResult, urlunparse, urlparse, quote
|
2021-11-29 23:35:43 +00:00
|
|
|
from os import path
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
site = environ.get("DOMAIN").strip()
|
2021-11-29 23:35:43 +00:00
|
|
|
site_name = environ.get("SITE_NAME").strip()
|
2021-10-15 14:08:27 +00:00
|
|
|
CATBOX_KEY = environ.get("CATBOX_KEY").strip()
|
2021-11-26 20:11:39 +00:00
|
|
|
titleheaders = {"User-Agent": f"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36"}
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-29 23:35:43 +00:00
|
|
|
if path.exists(f'snappy_{site_name}.txt'):
|
|
|
|
with open(f'snappy_{site_name}.txt', "r") as f:
|
|
|
|
snappyquotes = f.read().split("{[para]}")
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
@app.post("/toggle_club/<pid>")
|
|
|
|
@auth_required
|
|
|
|
def toggle_club(pid, v):
|
|
|
|
|
|
|
|
post = get_post(pid)
|
|
|
|
|
2021-11-07 20:31:36 +00:00
|
|
|
if post.author_id != v.id and v.admin_level == 0: abort(403)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
post.club = not post.club
|
|
|
|
g.db.add(post)
|
|
|
|
|
2021-11-26 19:31:36 +00:00
|
|
|
g.db.commit()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
if post.club: return {"message": "Post has been marked as club-only!"}
|
|
|
|
else: return {"message": "Post has been unmarked as club-only!"}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/publish/<pid>")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def publish(pid, v):
|
|
|
|
post = get_post(pid)
|
|
|
|
if not post.author_id == v.id: abort(403)
|
|
|
|
post.private = False
|
|
|
|
g.db.add(post)
|
|
|
|
|
2021-12-02 20:48:13 +00:00
|
|
|
notify_users = NOTIFY_USERS(f'{post.body_html}{post.title}', v.id)
|
2021-10-25 13:55:56 +00:00
|
|
|
soup = BeautifulSoup(post.body_html, features="html.parser")
|
|
|
|
for mention in soup.find_all("a", href=re.compile("^/@(\w+)")):
|
|
|
|
username = mention["href"].split("@")[1]
|
2021-11-06 15:52:48 +00:00
|
|
|
user = g.db.query(User).filter_by(username=username).first()
|
2021-10-28 13:36:56 +00:00
|
|
|
if user and not v.any_block_exists(user) and user.id != v.id: notify_users.add(user.id)
|
2021-11-28 14:51:31 +00:00
|
|
|
|
2021-11-03 17:28:45 +00:00
|
|
|
for x in notify_users: send_notification(x, f"@{v.username} has mentioned you: http://{site}{post.permalink}")
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
for follow in v.followers:
|
|
|
|
user = get_account(follow.user_id)
|
2021-11-03 14:06:20 +00:00
|
|
|
if post.club and not user.club_allowed: continue
|
2021-10-29 16:05:50 +00:00
|
|
|
send_notification(user.id, f"@{v.username} has made a new post: [{post.title}](http://{site}{post.permalink})", True)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-10-25 13:55:56 +00:00
|
|
|
cache.delete_memoized(frontlist)
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
return {"message": "Post published!"}
|
|
|
|
|
|
|
|
@app.get("/submit")
|
|
|
|
@auth_required
|
|
|
|
def submit_get(v):
|
|
|
|
|
|
|
|
return render_template("submit.html",
|
|
|
|
v=v)
|
|
|
|
|
|
|
|
@app.get("/post/<pid>")
|
|
|
|
@app.get("/post/<pid>/<anything>")
|
|
|
|
@app.get("/logged_out/post/<pid>")
|
|
|
|
@app.get("/logged_out/post/<pid>/<anything>")
|
|
|
|
@auth_desired
|
|
|
|
def post_id(pid, anything=None, v=None):
|
|
|
|
|
|
|
|
if not v and not request.path.startswith('/logged_out') and not request.headers.get("Authorization"): return redirect(f"/logged_out{request.full_path}")
|
|
|
|
|
|
|
|
if v and request.path.startswith('/logged_out'): v = None
|
|
|
|
|
2021-11-24 17:33:44 +00:00
|
|
|
if v and v.agendaposter and random.randint(1, 20) == 1:
|
2021-11-23 14:12:19 +00:00
|
|
|
if request.host == 'rdrama.net':
|
|
|
|
return redirect(random.choice(['https://secure.actblue.com/donate/ms_blm_homepage_2019','https://rdrama.net/post/19711/a-short-guide-on-how-to','https://secure.transequality.org/site/Donation2?df_id=1480']))
|
|
|
|
return redirect('https://secure.actblue.com/donate/ms_blm_homepage_2019')
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
try: pid = int(pid)
|
|
|
|
except Exception as e: pass
|
|
|
|
|
2021-11-26 00:35:16 +00:00
|
|
|
if request.host == 'rdrama.net' and pid in [BUG_THREAD, EMOJI_THREAD]: defaultsortingcomments = 'new'
|
2021-11-26 00:34:52 +00:00
|
|
|
elif v: defaultsortingcomments = v.defaultsortingcomments
|
2021-10-15 14:08:27 +00:00
|
|
|
else: defaultsortingcomments = "top"
|
2021-11-26 00:34:52 +00:00
|
|
|
|
2021-11-26 01:07:28 +00:00
|
|
|
sort = request.values.get("sort", defaultsortingcomments)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
try: pid = int(pid)
|
|
|
|
except:
|
|
|
|
try: pid = int(pid, 36)
|
|
|
|
except: abort(404)
|
|
|
|
|
|
|
|
post = get_post(pid, v=v)
|
|
|
|
|
2021-12-02 20:57:57 +00:00
|
|
|
if post.club and not (v and (v.paid_dues or v.id == post.author_id)) or post.private and not (v and v.id == post.author_id): abort(403)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-12-05 02:21:35 +00:00
|
|
|
pinned = g.db.query(Comment).filter(Comment.parent_submission == post.id, Comment.is_pinned != None).all()
|
2021-11-26 00:26:29 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if v:
|
2021-11-06 15:52:48 +00:00
|
|
|
votes = g.db.query(CommentVote).filter_by(user_id=v.id).subquery()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
blocking = v.blocking.subquery()
|
|
|
|
|
|
|
|
blocked = v.blocked.subquery()
|
|
|
|
|
|
|
|
comments = g.db.query(
|
|
|
|
Comment,
|
|
|
|
votes.c.vote_type,
|
|
|
|
blocking.c.id,
|
|
|
|
blocked.c.id,
|
2021-11-06 15:52:48 +00:00
|
|
|
)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-15 22:13:29 +00:00
|
|
|
if not (v and v.shadowbanned) and not (v and v.admin_level > 1):
|
2021-11-06 00:33:32 +00:00
|
|
|
comments = comments.join(User, User.id == Comment.author_id).filter(User.shadowbanned == None)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-12-05 02:51:14 +00:00
|
|
|
comments=comments.filter(Comment.parent_submission == post.id, Comment.author_id != AUTOPOLLER_ID, Comment.is_pinned == None).join(
|
2021-10-15 14:08:27 +00:00
|
|
|
votes,
|
|
|
|
votes.c.comment_id == Comment.id,
|
|
|
|
isouter=True
|
|
|
|
).join(
|
|
|
|
blocking,
|
|
|
|
blocking.c.target_id == Comment.author_id,
|
|
|
|
isouter=True
|
|
|
|
).join(
|
|
|
|
blocked,
|
|
|
|
blocked.c.user_id == Comment.author_id,
|
|
|
|
isouter=True
|
|
|
|
)
|
|
|
|
|
2021-12-05 02:51:14 +00:00
|
|
|
output = []
|
|
|
|
for c in comments.all():
|
|
|
|
comment = c[0]
|
|
|
|
comment.voted = c[1] or 0
|
|
|
|
comment.is_blocking = c[2] or 0
|
|
|
|
comment.is_blocked = c[3] or 0
|
|
|
|
output.append(comment)
|
|
|
|
|
|
|
|
comments = comments.filter(Comment.level == 1)
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if sort == "new":
|
|
|
|
comments = comments.order_by(Comment.created_utc.desc())
|
|
|
|
elif sort == "old":
|
|
|
|
comments = comments.order_by(Comment.created_utc.asc())
|
|
|
|
elif sort == "controversial":
|
2021-11-30 23:21:29 +00:00
|
|
|
comments = comments.order_by(-1 * Comment.upvotes * Comment.downvotes * Comment.downvotes)
|
2021-10-15 14:08:27 +00:00
|
|
|
elif sort == "top":
|
2021-11-30 23:21:29 +00:00
|
|
|
comments = comments.order_by(-Comment.upvotes - Comment.downvotes)
|
2021-10-15 14:08:27 +00:00
|
|
|
elif sort == "bottom":
|
2021-11-30 23:21:29 +00:00
|
|
|
comments = comments.order_by(Comment.upvotes - Comment.downvotes)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-12-05 02:21:35 +00:00
|
|
|
offset = int(request.values.get("offset", 0))
|
|
|
|
if offset: comments = comments.offset(offset)
|
|
|
|
|
2021-12-05 02:58:30 +00:00
|
|
|
comments = [c[0] for c in comments.all()]
|
2021-10-15 14:08:27 +00:00
|
|
|
else:
|
2021-12-05 02:21:35 +00:00
|
|
|
comments = g.db.query(Comment).join(User, User.id == Comment.author_id).filter(User.shadowbanned == None, Comment.parent_submission == post.id, Comment.author_id != AUTOPOLLER_ID, Comment.level == 1, Comment.is_pinned == None)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
if sort == "new":
|
|
|
|
comments = comments.order_by(Comment.created_utc.desc())
|
|
|
|
elif sort == "old":
|
|
|
|
comments = comments.order_by(Comment.created_utc.asc())
|
|
|
|
elif sort == "controversial":
|
2021-11-30 23:21:29 +00:00
|
|
|
comments = comments.order_by(-1 * Comment.upvotes * Comment.downvotes * Comment.downvotes)
|
2021-10-15 14:08:27 +00:00
|
|
|
elif sort == "top":
|
2021-11-30 23:21:29 +00:00
|
|
|
comments = comments.order_by(-Comment.upvotes - Comment.downvotes)
|
2021-10-15 14:08:27 +00:00
|
|
|
elif sort == "bottom":
|
2021-11-30 23:21:29 +00:00
|
|
|
comments = comments.order_by(Comment.upvotes - Comment.downvotes)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-12-05 02:21:35 +00:00
|
|
|
offset = int(request.values.get("offset", 0))
|
|
|
|
if offset: comments = comments.offset(offset)
|
|
|
|
|
2021-12-05 02:58:30 +00:00
|
|
|
comments = comments.all()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-12-05 02:36:22 +00:00
|
|
|
if post.created_utc > 1638672040:
|
|
|
|
comments2 = []
|
|
|
|
count = 0
|
|
|
|
for comment in comments:
|
|
|
|
comments2.append(comment)
|
2021-12-05 02:38:15 +00:00
|
|
|
count += g.db.query(Comment.id).filter_by(parent_submission=post.id, top_comment_id=comment.id).count() + 1
|
2021-12-05 02:36:22 +00:00
|
|
|
offset += 1
|
2021-12-05 02:38:27 +00:00
|
|
|
if count > 50: break
|
2021-12-05 02:23:39 +00:00
|
|
|
|
2021-12-05 02:36:22 +00:00
|
|
|
if len(comments) == len(comments2): offset = None
|
2021-12-05 02:58:30 +00:00
|
|
|
comments = comments2
|
2021-12-05 02:23:39 +00:00
|
|
|
|
2021-12-05 02:58:30 +00:00
|
|
|
post.replies = pinned + comments
|
2021-12-05 02:21:35 +00:00
|
|
|
|
2021-11-26 01:07:28 +00:00
|
|
|
if request.host == 'rdrama.net' and pid in [BUG_THREAD, EMOJI_THREAD] and not request.values.get("sort"): post.replies = post.replies[:10]
|
2021-11-26 00:26:29 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
post.views += 1
|
|
|
|
g.db.add(post)
|
|
|
|
if isinstance(session.get('over_18', 0), dict): session["over_18"] = 0
|
|
|
|
if post.over_18 and not (v and v.over_18) and not session.get('over_18', 0) >= int(time.time()):
|
|
|
|
if request.headers.get("Authorization"): return {"error":"Must be 18+ to view"}, 451
|
|
|
|
else: return render_template("errors/nsfw.html", v=v)
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
if request.headers.get("Authorization"): return post.json
|
2021-10-22 00:19:23 +00:00
|
|
|
else:
|
2021-11-15 22:19:59 +00:00
|
|
|
if post.is_banned and not (v and (v.admin_level > 1 or post.author_id == v.id)): template = "submission_banned.html"
|
2021-10-22 00:19:23 +00:00
|
|
|
else: template = "submission.html"
|
2021-12-05 02:21:35 +00:00
|
|
|
return render_template(template, v=v, p=post, sort=sort, render_replies=True, offset=offset)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.post("/edit_post/<pid>")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def edit_post(pid, v):
|
2021-11-30 18:15:33 +00:00
|
|
|
if v and v.patron:
|
|
|
|
if request.content_length > 8 * 1024 * 1024: return "Max file size is 8 MB.", 413
|
|
|
|
elif request.content_length > 4 * 1024 * 1024: return "Max file size is 4 MB.", 413
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
p = get_post(pid)
|
|
|
|
|
2021-11-15 22:13:29 +00:00
|
|
|
if p.author_id != v.id and not (v.admin_level > 1 and v.admin_level > 2): abort(403)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
title = request.values.get("title", "").strip()
|
|
|
|
body = request.values.get("body", "").strip()
|
|
|
|
|
2021-10-29 16:57:50 +00:00
|
|
|
if len(body) > 10000: return {"error":"Character limit is 10000!"}, 403
|
|
|
|
|
2021-10-27 00:37:34 +00:00
|
|
|
if v.marseyawarded:
|
2021-10-27 20:12:16 +00:00
|
|
|
if time.time() > v.marseyawarded:
|
|
|
|
v.marseyawarded = None
|
|
|
|
g.db.add(v)
|
|
|
|
else:
|
|
|
|
marregex = list(re.finditer("^(:!?m\w+:\s*)+$", title))
|
|
|
|
if len(marregex) == 0: return {"error":"You can only type marseys!"}, 403
|
|
|
|
if body:
|
|
|
|
marregex = list(re.finditer("^(:!?m\w+:\s*)+$", body))
|
|
|
|
if len(marregex) == 0: return {"error":"You can only type marseys!"}, 403
|
2021-10-27 00:37:34 +00:00
|
|
|
|
2021-11-18 20:50:03 +00:00
|
|
|
if v.longpost:
|
|
|
|
if time.time() > v.longpost:
|
|
|
|
v.longpost = None
|
|
|
|
g.db.add(v)
|
2021-11-21 13:49:57 +00:00
|
|
|
elif len(body) < 280 or ' [](' in body or body.startswith('[]('): return {"error":"You have to type more than 280 characters!"}, 403
|
2021-11-23 22:36:38 +00:00
|
|
|
elif v.bird:
|
|
|
|
if time.time() > v.bird:
|
|
|
|
v.bird = None
|
|
|
|
g.db.add(v)
|
|
|
|
elif len(body) > 140: return {"error":"You have to type less than 140 characters!"}, 403
|
2021-11-18 20:50:03 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if title != p.title:
|
2021-11-25 22:22:15 +00:00
|
|
|
if v.agendaposter and not v.marseyawarded:
|
2021-11-24 17:49:17 +00:00
|
|
|
for k, l in AJ_REPLACEMENTS.items(): title = title.replace(k, l)
|
2021-11-24 20:51:07 +00:00
|
|
|
title = title.replace('I ', f'@{v.username} ')
|
|
|
|
title = censor_slurs2(title).upper().replace(' ME ', f' @{v.username} ')
|
2021-11-24 17:49:17 +00:00
|
|
|
|
2021-10-27 20:12:16 +00:00
|
|
|
title_html = filter_title(title)
|
2021-10-27 20:59:58 +00:00
|
|
|
if v.marseyawarded and len(list(re.finditer('>[^<\s+]|[^>\s+]<', title_html))) > 0: return {"error":"You can only type marseys!"}, 403
|
2021-10-15 14:08:27 +00:00
|
|
|
p.title = title
|
2021-10-27 20:12:16 +00:00
|
|
|
p.title_html = title_html
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-30 18:15:33 +00:00
|
|
|
if request.files.get("file") and request.headers.get("cf-ipcountry") != "T1":
|
|
|
|
file=request.files["file"]
|
|
|
|
if not file.content_type.startswith('image/'): return {"error": "That wasn't an image!"}, 400
|
|
|
|
|
|
|
|
name = f'/images/{int(time.time())}{secrets.token_urlsafe(2)}.webp'
|
|
|
|
file.save(name)
|
|
|
|
url = request.host_url[:-1] + process_image(name)
|
|
|
|
|
|
|
|
body += f"\n\n![]({url})"
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if body != p.body:
|
|
|
|
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', body, re.MULTILINE):
|
|
|
|
if "wikipedia" not in i.group(1): body = body.replace(i.group(1), f'![]({i.group(1)})')
|
2021-11-24 17:33:44 +00:00
|
|
|
|
2021-11-25 22:22:15 +00:00
|
|
|
if v.agendaposter and not v.marseyawarded:
|
2021-11-24 17:49:17 +00:00
|
|
|
for k, l in AJ_REPLACEMENTS.items(): body = body.replace(k, l)
|
2021-11-24 20:51:07 +00:00
|
|
|
body = body.replace('I ', f'@{v.username} ')
|
|
|
|
body = censor_slurs2(body).upper().replace(' ME ', f' @{v.username} ')
|
2021-11-24 17:33:44 +00:00
|
|
|
|
2021-12-03 23:34:03 +00:00
|
|
|
if not p.options.count():
|
|
|
|
for i in re.finditer('\s*\$\$([^\$\n]+)\$\$\s*', body):
|
|
|
|
body = body.replace(i.group(0), "")
|
|
|
|
c = Comment(author_id=AUTOPOLLER_ID,
|
|
|
|
parent_submission=p.id,
|
|
|
|
level=1,
|
|
|
|
body_html=filter_title(i.group(1)),
|
|
|
|
upvotes=0
|
|
|
|
)
|
|
|
|
g.db.add(c)
|
|
|
|
|
2021-11-24 17:33:44 +00:00
|
|
|
body_html = sanitize(CustomRenderer().render(mistletoe.Document(body)))
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
bans = filter_comment_html(body_html)
|
|
|
|
if bans:
|
|
|
|
ban = bans[0]
|
|
|
|
reason = f"Remove the {ban.domain} link from your post and try again."
|
|
|
|
if ban.reason:
|
|
|
|
reason += f" {ban.reason}"
|
|
|
|
|
|
|
|
return {"error": reason}, 403
|
|
|
|
|
|
|
|
p.body = body
|
2021-10-27 20:59:58 +00:00
|
|
|
if v.marseyawarded and len(list(re.finditer('>[^<\s+]|[^>\s+]<', body_html))) > 0: return {"error":"You can only type marseys!"}, 40
|
2021-11-18 20:50:03 +00:00
|
|
|
|
2021-11-23 22:36:38 +00:00
|
|
|
if v.longpost:
|
|
|
|
if len(body) < 280 or ' [](' in body or body.startswith('[]('): return {"error":"You have to type more than 280 characters!"}, 403
|
|
|
|
elif v.bird:
|
|
|
|
if len(body) > 140 : return {"error":"You have to type less than 140 characters!"}, 403
|
2021-11-18 20:50:03 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
p.body_html = body_html
|
|
|
|
|
|
|
|
if "rama" in request.host and "ivermectin" in body_html.lower():
|
|
|
|
|
|
|
|
p.is_banned = True
|
2021-11-03 16:15:06 +00:00
|
|
|
p.ban_reason = "AutoJanny"
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
g.db.add(p)
|
|
|
|
|
|
|
|
body = VAXX_MSG.format(username=v.username)
|
|
|
|
|
|
|
|
body_md = CustomRenderer().render(mistletoe.Document(body))
|
|
|
|
|
|
|
|
body_jannied_html = sanitize(body_md)
|
|
|
|
|
|
|
|
|
2021-11-18 14:21:19 +00:00
|
|
|
c_jannied = Comment(author_id=AUTOJANNY_ID,
|
2021-10-15 14:08:27 +00:00
|
|
|
parent_submission=p.id,
|
|
|
|
level=1,
|
|
|
|
over_18=False,
|
|
|
|
is_bot=True,
|
|
|
|
app_id=None,
|
|
|
|
is_pinned=True,
|
|
|
|
distinguish_level=6,
|
|
|
|
body_html=body_jannied_html,
|
|
|
|
)
|
|
|
|
|
|
|
|
g.db.add(c_jannied)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
|
|
|
|
n = Notification(comment_id=c_jannied.id, user_id=v.id)
|
|
|
|
g.db.add(n)
|
|
|
|
|
|
|
|
|
2021-10-29 16:11:45 +00:00
|
|
|
if v.agendaposter and not v.marseyawarded and "trans lives matter" not in body_html.lower():
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
p.is_banned = True
|
2021-11-03 16:15:06 +00:00
|
|
|
p.ban_reason = "AutoJanny"
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
g.db.add(p)
|
|
|
|
|
|
|
|
body = AGENDAPOSTER_MSG.format(username=v.username)
|
|
|
|
|
|
|
|
body_md = CustomRenderer().render(mistletoe.Document(body))
|
|
|
|
|
|
|
|
body_jannied_html = sanitize(body_md)
|
|
|
|
|
2021-11-18 14:21:19 +00:00
|
|
|
c_jannied = Comment(author_id=AUTOJANNY_ID,
|
2021-10-15 14:08:27 +00:00
|
|
|
parent_submission=p.id,
|
|
|
|
level=1,
|
|
|
|
over_18=False,
|
|
|
|
is_bot=True,
|
|
|
|
app_id=None,
|
|
|
|
is_pinned=True,
|
|
|
|
distinguish_level=6,
|
|
|
|
body_html=body_jannied_html,
|
|
|
|
)
|
|
|
|
|
|
|
|
g.db.add(c_jannied)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
n = Notification(comment_id=c_jannied.id, user_id=v.id)
|
|
|
|
g.db.add(n)
|
|
|
|
|
|
|
|
|
2021-12-02 20:48:13 +00:00
|
|
|
notify_users = NOTIFY_USERS(f'{body_html}{title}', v.id)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
soup = BeautifulSoup(body_html, features="html.parser")
|
|
|
|
for mention in soup.find_all("a", href=re.compile("^/@(\w+)")):
|
|
|
|
username = mention["href"].split("@")[1]
|
2021-11-06 15:52:48 +00:00
|
|
|
user = g.db.query(User).filter_by(username=username).first()
|
2021-10-28 13:36:56 +00:00
|
|
|
if user and not v.any_block_exists(user) and user.id != v.id: notify_users.add(user.id)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-10-19 23:43:11 +00:00
|
|
|
message = f"@{v.username} has mentioned you: http://{site}{p.permalink}"
|
2021-10-26 21:31:39 +00:00
|
|
|
|
2021-11-22 14:16:58 +00:00
|
|
|
for x in notify_users: send_notification(x, message)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
|
2021-11-01 18:25:10 +00:00
|
|
|
if (title != p.title or body != p.body) and v.id == p.author_id:
|
2021-10-15 14:08:27 +00:00
|
|
|
if int(time.time()) - p.created_utc > 60 * 3: p.edited_utc = int(time.time())
|
|
|
|
g.db.add(p)
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
return redirect(p.permalink)
|
|
|
|
|
|
|
|
@app.get("/submit/title")
|
|
|
|
@limiter.limit("6/minute")
|
|
|
|
@auth_required
|
|
|
|
def get_post_title(v):
|
|
|
|
|
|
|
|
url = request.values.get("url", None)
|
2021-11-26 23:46:41 +00:00
|
|
|
if not url: abort(400)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-27 18:24:32 +00:00
|
|
|
try: x = requests.get(url, headers=titleheaders, timeout=5)
|
|
|
|
except: abort(400)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-26 20:11:39 +00:00
|
|
|
soup = BeautifulSoup(x.content, 'html.parser')
|
2021-11-26 23:46:41 +00:00
|
|
|
|
|
|
|
title = soup.find('title')
|
|
|
|
if not title: abort(400)
|
2021-11-26 23:47:13 +00:00
|
|
|
|
|
|
|
return {"url": url, "title": title.string}
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
def archiveorg(url):
|
|
|
|
try: requests.get(f'https://web.archive.org/save/{url}', headers={'User-Agent': 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'}, timeout=100)
|
|
|
|
except Exception as e: print(e)
|
|
|
|
|
|
|
|
|
|
|
|
def thumbnail_thread(pid):
|
|
|
|
|
|
|
|
def expand_url(post_url, fragment_url):
|
|
|
|
|
|
|
|
if fragment_url.startswith("https://"):
|
|
|
|
return fragment_url
|
|
|
|
elif fragment_url.startswith("http://"):
|
|
|
|
return f"https://{fragment_url.split('http://')[1]}"
|
|
|
|
elif fragment_url.startswith('//'):
|
|
|
|
return f"https:{fragment_url}"
|
|
|
|
elif fragment_url.startswith('/'):
|
|
|
|
parsed_url = urlparse(post_url)
|
|
|
|
return f"https://{parsed_url.netloc}{fragment_url}"
|
|
|
|
else:
|
|
|
|
return f"{post_url}{'/' if not post_url.endswith('/') else ''}{fragment_url}"
|
|
|
|
|
|
|
|
db = db_session()
|
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
post = db.query(Submission).filter_by(id=pid).first()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
if not post:
|
|
|
|
time.sleep(5)
|
2021-11-06 15:52:48 +00:00
|
|
|
post = db.query(Submission).filter_by(id=pid).first()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
fetch_url=post.url
|
|
|
|
|
|
|
|
headers={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36"}
|
|
|
|
|
|
|
|
try:
|
2021-11-14 01:19:32 +00:00
|
|
|
x=requests.get(fetch_url, headers=headers, timeout=5)
|
2021-10-15 14:08:27 +00:00
|
|
|
except:
|
|
|
|
db.close()
|
|
|
|
return
|
|
|
|
|
|
|
|
if x.status_code != 200:
|
|
|
|
db.close()
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if x.headers.get("Content-Type","").startswith("text/html"):
|
|
|
|
soup=BeautifulSoup(x.content, 'html.parser')
|
|
|
|
|
|
|
|
thumb_candidate_urls=[]
|
|
|
|
|
|
|
|
meta_tags = [
|
2021-10-27 20:12:16 +00:00
|
|
|
"drama:thumbnail",
|
2021-10-15 14:08:27 +00:00
|
|
|
"twitter:image",
|
|
|
|
"og:image",
|
|
|
|
"thumbnail"
|
|
|
|
]
|
|
|
|
|
|
|
|
for tag_name in meta_tags:
|
|
|
|
|
|
|
|
|
|
|
|
tag = soup.find(
|
|
|
|
'meta',
|
|
|
|
attrs={
|
|
|
|
"name": tag_name,
|
|
|
|
"content": True
|
|
|
|
}
|
|
|
|
)
|
|
|
|
if not tag:
|
|
|
|
tag = soup.find(
|
|
|
|
'meta',
|
|
|
|
attrs={
|
|
|
|
'property': tag_name,
|
|
|
|
'content': True
|
|
|
|
}
|
|
|
|
)
|
|
|
|
if tag:
|
|
|
|
thumb_candidate_urls.append(expand_url(post.url, tag['content']))
|
|
|
|
|
|
|
|
for tag in soup.find_all("img", attrs={'src':True}):
|
|
|
|
thumb_candidate_urls.append(expand_url(post.url, tag['src']))
|
|
|
|
|
|
|
|
|
|
|
|
for url in thumb_candidate_urls:
|
|
|
|
|
|
|
|
try:
|
2021-11-14 01:19:32 +00:00
|
|
|
image_req=requests.get(url, headers=headers, timeout=5)
|
2021-10-15 14:08:27 +00:00
|
|
|
except:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if image_req.status_code >= 400:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not image_req.headers.get("Content-Type","").startswith("image/"):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if image_req.headers.get("Content-Type","").startswith("image/svg"):
|
|
|
|
continue
|
|
|
|
|
|
|
|
image = PILimage.open(BytesIO(image_req.content))
|
|
|
|
if image.width < 30 or image.height < 30:
|
|
|
|
continue
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
else:
|
|
|
|
db.close()
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elif x.headers.get("Content-Type","").startswith("image/"):
|
|
|
|
image_req=x
|
|
|
|
image = PILimage.open(BytesIO(x.content))
|
|
|
|
|
|
|
|
else:
|
|
|
|
db.close()
|
|
|
|
return
|
|
|
|
|
2021-11-11 18:58:09 +00:00
|
|
|
name = f'/images/{int(time.time())}{secrets.token_urlsafe(2)}.webp'
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
with open(name, "wb") as file:
|
|
|
|
for chunk in image_req.iter_content(1024):
|
|
|
|
file.write(chunk)
|
|
|
|
|
|
|
|
post.thumburl = "https://" + site + process_image(name, True)
|
|
|
|
db.add(post)
|
|
|
|
db.commit()
|
|
|
|
db.close()
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/submit")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@limiter.limit("6/minute")
|
|
|
|
@is_not_banned
|
|
|
|
@validate_formkey
|
|
|
|
def submit_post(v):
|
2021-11-11 19:14:11 +00:00
|
|
|
if v and v.patron:
|
|
|
|
if request.content_length > 8 * 1024 * 1024: return "Max file size is 8 MB.", 413
|
|
|
|
elif request.content_length > 4 * 1024 * 1024: return "Max file size is 4 MB.", 413
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-12-01 17:44:24 +00:00
|
|
|
title = request.values.get("title", "").strip()[:500]
|
2021-10-15 14:08:27 +00:00
|
|
|
url = request.values.get("url", "").strip()
|
2021-11-24 17:49:17 +00:00
|
|
|
|
2021-11-25 22:22:15 +00:00
|
|
|
if v.agendaposter and not v.marseyawarded:
|
2021-11-24 17:49:17 +00:00
|
|
|
for k, l in AJ_REPLACEMENTS.items(): title = title.replace(k, l)
|
2021-11-24 20:51:07 +00:00
|
|
|
title = title.replace('I ', f'@{v.username} ')
|
|
|
|
title = censor_slurs2(title).upper().replace(' ME ', f' @{v.username} ')
|
2021-11-24 17:49:17 +00:00
|
|
|
|
2021-10-27 20:12:16 +00:00
|
|
|
title_html = filter_title(title)
|
2021-11-18 20:50:03 +00:00
|
|
|
body = request.values.get("body", "").strip()
|
|
|
|
|
2021-10-27 20:59:58 +00:00
|
|
|
if v.marseyawarded and len(list(re.finditer('>[^<\s+]|[^>\s+]<', title_html))) > 0: return {"error":"You can only type marseys!"}, 40
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-23 22:36:38 +00:00
|
|
|
if v.longpost:
|
|
|
|
if len(body) < 280 or ' [](' in body or body.startswith('[]('): return {"error":"You have to type more than 280 characters!"}, 403
|
|
|
|
elif v.bird:
|
|
|
|
if len(body) > 140 : return {"error":"You have to type less than 140 characters!"}, 403
|
2021-11-18 20:50:03 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if url:
|
|
|
|
if "/i.imgur.com/" in url: url = url.replace(".png", ".webp").replace(".jpg", ".webp").replace(".jpeg", ".webp")
|
|
|
|
elif "/media.giphy.com/" in url or "/c.tenor.com/" in url: url = url.replace(".gif", ".webp")
|
|
|
|
elif "/i.ibb.com/" in url: url = url.replace(".png", ".webp").replace(".jpg", ".webp").replace(".jpeg", ".webp").replace(".gif", ".webp")
|
|
|
|
|
|
|
|
for rd in ["https://reddit.com/", "https://new.reddit.com/", "https://www.reddit.com/", "https://redd.it/"]:
|
|
|
|
url = url.replace(rd, "https://old.reddit.com/")
|
2021-10-21 13:02:47 +00:00
|
|
|
|
|
|
|
url = url.replace("old.reddit.com/gallery", "new.reddit.com/gallery")
|
|
|
|
|
2021-11-22 13:51:32 +00:00
|
|
|
url = url.replace("https://mobile.twitter.com", "https://twitter.com").replace("https://m.facebook", "https://facebook").replace("https://m.wikipedia", "https://wikipedia").replace("https://m.youtube", "https://youtube")
|
2021-11-22 14:16:58 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if url.startswith("https://streamable.com/") and not url.startswith("https://streamable.com/e/"): url = url.replace("https://streamable.com/", "https://streamable.com/e/")
|
|
|
|
|
|
|
|
parsed_url = urlparse(url)
|
|
|
|
|
|
|
|
domain = parsed_url.netloc
|
|
|
|
|
2021-10-27 20:12:16 +00:00
|
|
|
qd = parse_qs(parsed_url.query)
|
2021-11-30 17:19:55 +00:00
|
|
|
filtered = dict((k, v) for k, v in qd.items() if not k.startswith('utm_') and not k.startswith('ref_'))
|
2021-10-18 19:43:44 +00:00
|
|
|
|
2021-10-27 20:12:16 +00:00
|
|
|
new_url = ParseResult(scheme="https",
|
|
|
|
netloc=parsed_url.netloc,
|
|
|
|
path=parsed_url.path,
|
|
|
|
params=parsed_url.params,
|
|
|
|
query=urlencode(filtered, doseq=True),
|
|
|
|
fragment=parsed_url.fragment)
|
|
|
|
url = urlunparse(new_url)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
repost = g.db.query(Submission).filter(
|
2021-10-18 19:43:56 +00:00
|
|
|
Submission.url.ilike(url),
|
2021-10-15 14:08:27 +00:00
|
|
|
Submission.deleted_utc == 0,
|
|
|
|
Submission.is_banned == False
|
|
|
|
).first()
|
|
|
|
|
|
|
|
if repost: return redirect(repost.permalink)
|
|
|
|
|
|
|
|
domain_obj = get_domain(domain)
|
|
|
|
if domain_obj:
|
|
|
|
if request.headers.get("Authorization"): return {"error":domain_obj.reason}, 400
|
|
|
|
else: return render_template("submit.html", v=v, error=domain_obj.reason, title=title, url=url, body=request.values.get("body", "")), 400
|
2021-12-01 17:25:28 +00:00
|
|
|
elif "twitter.com" == domain:
|
2021-11-14 01:19:32 +00:00
|
|
|
try: embed = requests.get("https://publish.twitter.com/oembed", timeout=5, params={"url":url, "omit_script":"t"}).json()["html"]
|
2021-10-15 14:08:27 +00:00
|
|
|
except: embed = None
|
|
|
|
elif "youtu" in domain:
|
2021-11-18 21:27:15 +00:00
|
|
|
yt_id = re.match(re.compile("^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|shorts\/|\&v=)([^#\&\?]*).*"), url).group(2)
|
|
|
|
params = parse_qs(urlparse(url).query)
|
2021-11-18 21:29:42 +00:00
|
|
|
t = params.get('t', params.get('start', [0]))[0]
|
|
|
|
if isinstance(t, str): t = t.replace('s','')
|
2021-11-18 21:27:15 +00:00
|
|
|
if t: embed = f"https://youtube.com/embed/{yt_id}?start={t}"
|
|
|
|
else: embed = f"https://youtube.com/embed/{yt_id}"
|
2021-10-15 14:08:27 +00:00
|
|
|
elif app.config['SERVER_NAME'] in domain and "/post/" in url and "context" not in url:
|
|
|
|
id = url.split("/post/")[1]
|
|
|
|
if "/" in id: id = id.split("/")[0]
|
|
|
|
embed = id
|
|
|
|
else: embed = None
|
|
|
|
else: embed = None
|
|
|
|
|
|
|
|
if not url and not request.values.get("body") and not request.files.get("file", None):
|
|
|
|
if request.headers.get("Authorization"): return {"error": "`url` or `body` parameter required."}, 400
|
|
|
|
else: return render_template("submit.html", v=v, error="Please enter a url or some text.", title=title, url=url, body=request.values.get("body", "")), 400
|
|
|
|
|
|
|
|
if not title:
|
|
|
|
if request.headers.get("Authorization"): return {"error": "Please enter a better title"}, 400
|
|
|
|
else: return render_template("submit.html", v=v, error="Please enter a better title.", title=title, url=url, body=request.values.get("body", "")), 400
|
|
|
|
|
|
|
|
|
|
|
|
elif len(title) > 500:
|
|
|
|
if request.headers.get("Authorization"): return {"error": "500 character limit for titles"}, 400
|
|
|
|
else: render_template("submit.html", v=v, error="500 character limit for titles.", title=title[:500], url=url, body=request.values.get("body", "")), 400
|
2021-10-27 00:37:34 +00:00
|
|
|
|
|
|
|
if v.marseyawarded:
|
2021-10-27 20:12:16 +00:00
|
|
|
if time.time() > v.marseyawarded:
|
|
|
|
v.marseyawarded = None
|
|
|
|
g.db.add(v)
|
|
|
|
else:
|
|
|
|
marregex = list(re.finditer("^(:!?m\w+:\s*)+$", title))
|
|
|
|
if len(marregex) == 0: return {"error":"You can only type marseys!"}, 403
|
|
|
|
if body:
|
|
|
|
marregex = list(re.finditer("^(:!?m\w+:\s*)+$", body))
|
|
|
|
if len(marregex) == 0: return {"error":"You can only type marseys!"}, 403
|
2021-10-27 00:37:34 +00:00
|
|
|
|
2021-11-18 20:50:03 +00:00
|
|
|
if v.longpost:
|
|
|
|
if time.time() > v.longpost:
|
|
|
|
v.longpost = None
|
|
|
|
g.db.add(v)
|
2021-11-21 13:49:57 +00:00
|
|
|
elif len(body) < 280 or ' [](' in body or body.startswith('[]('): return {"error":"You have to type more than 280 characters!"}, 403
|
2021-11-23 22:36:38 +00:00
|
|
|
elif v.bird:
|
|
|
|
if time.time() > v.bird:
|
|
|
|
v.bird = None
|
|
|
|
g.db.add(v)
|
|
|
|
elif len(body) > 140: return {"error":"You have to type less than 140 characters!"}, 403
|
2021-11-18 20:50:03 +00:00
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
dup = g.db.query(Submission).filter(
|
2021-10-15 14:08:27 +00:00
|
|
|
Submission.author_id == v.id,
|
|
|
|
Submission.deleted_utc == 0,
|
|
|
|
Submission.title == title,
|
|
|
|
Submission.url == url,
|
|
|
|
Submission.body == body
|
|
|
|
).first()
|
|
|
|
|
|
|
|
if dup: return redirect(dup.permalink)
|
|
|
|
|
|
|
|
now = int(time.time())
|
|
|
|
cutoff = now - 60 * 60 * 24
|
|
|
|
|
|
|
|
|
2021-11-07 13:37:26 +00:00
|
|
|
similar_posts = g.db.query(Submission).filter(
|
2021-10-15 14:08:27 +00:00
|
|
|
Submission.author_id == v.id,
|
|
|
|
Submission.title.op('<->')(title) < app.config["SPAM_SIMILARITY_THRESHOLD"],
|
|
|
|
Submission.created_utc > cutoff
|
|
|
|
).all()
|
|
|
|
|
|
|
|
if url:
|
2021-11-07 13:37:26 +00:00
|
|
|
similar_urls = g.db.query(Submission).filter(
|
2021-10-15 14:08:27 +00:00
|
|
|
Submission.author_id == v.id,
|
|
|
|
Submission.url.op('<->')(url) < app.config["SPAM_URL_SIMILARITY_THRESHOLD"],
|
|
|
|
Submission.created_utc > cutoff
|
|
|
|
).all()
|
2021-10-27 20:12:16 +00:00
|
|
|
else: similar_urls = []
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
threshold = app.config["SPAM_SIMILAR_COUNT_THRESHOLD"]
|
2021-10-27 20:12:16 +00:00
|
|
|
if v.age >= (60 * 60 * 24 * 7): threshold *= 3
|
|
|
|
elif v.age >= (60 * 60 * 24): threshold *= 2
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
if max(len(similar_urls), len(similar_posts)) >= threshold:
|
|
|
|
|
|
|
|
text = "Your account has been suspended for 1 day for the following reason:\n\n> Too much spam!"
|
2021-10-23 16:10:05 +00:00
|
|
|
send_notification(v.id, text)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
v.ban(reason="Spamming.",
|
|
|
|
days=1)
|
|
|
|
|
|
|
|
for alt in v.alts:
|
|
|
|
if not alt.is_suspended:
|
|
|
|
alt.ban(reason="Spamming.", days=1)
|
|
|
|
|
|
|
|
for post in similar_posts + similar_urls:
|
|
|
|
post.is_banned = True
|
|
|
|
post.is_pinned = False
|
2021-11-05 14:40:14 +00:00
|
|
|
post.ban_reason = "AutoJanny"
|
2021-10-15 14:08:27 +00:00
|
|
|
g.db.add(post)
|
|
|
|
ma=ModAction(
|
2021-11-18 14:21:19 +00:00
|
|
|
user_id=AUTOJANNY_ID,
|
2021-10-15 14:08:27 +00:00
|
|
|
target_submission_id=post.id,
|
|
|
|
kind="ban_post",
|
2021-10-25 18:08:03 +00:00
|
|
|
_note="spam"
|
2021-10-15 14:08:27 +00:00
|
|
|
)
|
|
|
|
g.db.add(ma)
|
|
|
|
return redirect("/notifications")
|
|
|
|
|
|
|
|
if len(str(body)) > 10000:
|
|
|
|
|
|
|
|
if request.headers.get("Authorization"): return {"error":"10000 character limit for text body."}, 400
|
|
|
|
else: return render_template("submit.html", v=v, error="10000 character limit for text body.", title=title, url=url, body=request.values.get("body", "")), 400
|
|
|
|
|
|
|
|
if len(url) > 2048:
|
|
|
|
|
|
|
|
if request.headers.get("Authorization"): return {"error":"2048 character limit for URLs."}, 400
|
|
|
|
else: return render_template("submit.html", v=v, error="2048 character limit for URLs.", title=title, url=url,body=request.values.get("body", "")), 400
|
|
|
|
|
|
|
|
for i in re.finditer('^(https:\/\/.*\.(png|jpg|jpeg|gif|webp|PNG|JPG|JPEG|GIF|WEBP|9999))', body, re.MULTILINE):
|
|
|
|
if "wikipedia" not in i.group(1): body = body.replace(i.group(1), f'![]({i.group(1)})')
|
|
|
|
|
|
|
|
options = []
|
|
|
|
for i in re.finditer('\s*\$\$([^\$\n]+)\$\$\s*', body):
|
|
|
|
options.append(i.group(1))
|
|
|
|
body = body.replace(i.group(0), "")
|
|
|
|
|
2021-11-25 22:22:15 +00:00
|
|
|
if v.agendaposter and not v.marseyawarded:
|
2021-11-24 17:49:17 +00:00
|
|
|
for k, l in AJ_REPLACEMENTS.items(): body = body.replace(k, l)
|
2021-11-24 20:51:07 +00:00
|
|
|
body = body.replace('I ', f'@{v.username} ')
|
|
|
|
body = censor_slurs2(body).upper().replace(' ME ', f' @{v.username} ')
|
2021-11-24 17:33:44 +00:00
|
|
|
|
2021-11-30 18:25:41 +00:00
|
|
|
if request.files.get("file2") and request.headers.get("cf-ipcountry") != "T1":
|
|
|
|
file=request.files["file2"]
|
|
|
|
if not file.content_type.startswith('image/'): return {"error": "That wasn't an image!"}, 400
|
|
|
|
|
|
|
|
name = f'/images/{int(time.time())}{secrets.token_urlsafe(2)}.webp'
|
|
|
|
file.save(name)
|
|
|
|
url = request.host_url[:-1] + process_image(name)
|
|
|
|
|
|
|
|
body += f"\n\n![]({url})"
|
|
|
|
|
2021-11-24 17:33:44 +00:00
|
|
|
body_html = sanitize(CustomRenderer().render(mistletoe.Document(body)))
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-12 14:06:22 +00:00
|
|
|
if v.marseyawarded and len(list(re.finditer('>[^<\s+]|[^>\s+]<', body_html))) > 0: return {"error":"You can only type marseys!"}, 400
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-23 22:36:38 +00:00
|
|
|
if v.longpost:
|
|
|
|
if len(body) < 280 or ' [](' in body or body.startswith('[]('): return {"error":"You have to type more than 280 characters!"}, 403
|
|
|
|
elif v.bird:
|
|
|
|
if len(body) > 140 : return {"error":"You have to type less than 140 characters!"}, 403
|
2021-11-18 20:50:03 +00:00
|
|
|
|
2021-11-12 14:06:22 +00:00
|
|
|
if len(body_html) > 20000: return {"error":"Submission body too long!"}, 400
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
bans = filter_comment_html(body_html)
|
|
|
|
if bans:
|
|
|
|
ban = bans[0]
|
|
|
|
reason = f"Remove the {ban.domain} link from your post and try again."
|
|
|
|
if ban.reason: reason += f" {ban.reason}"
|
|
|
|
if request.headers.get("Authorization"): return {"error": reason}, 403
|
|
|
|
else: return render_template("submit.html", v=v, error=reason, title=title, url=url, body=request.values.get("body", "")), 403
|
|
|
|
|
|
|
|
if v.paid_dues: club = bool(request.values.get("club",""))
|
|
|
|
else: club = False
|
|
|
|
|
2021-11-27 18:23:27 +00:00
|
|
|
if embed and len(embed) > 1500: embed = None
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
new_post = Submission(
|
|
|
|
private=bool(request.values.get("private","")),
|
|
|
|
club=club,
|
|
|
|
author_id=v.id,
|
2021-11-16 03:19:06 +00:00
|
|
|
over_18=request.host == 'pcmemes.net' and v.id == 1578 or bool(request.values.get("over_18","")),
|
2021-10-15 14:08:27 +00:00
|
|
|
app_id=v.client.application.id if v.client else None,
|
2021-10-26 21:10:31 +00:00
|
|
|
is_bot = request.headers.get("Authorization"),
|
2021-10-15 14:08:27 +00:00
|
|
|
url=url,
|
2021-11-01 18:25:10 +00:00
|
|
|
body=body[:10000],
|
2021-10-15 14:08:27 +00:00
|
|
|
body_html=body_html,
|
|
|
|
embed_url=embed,
|
2021-12-01 17:44:24 +00:00
|
|
|
title=title[:500],
|
2021-10-27 20:12:16 +00:00
|
|
|
title_html=title_html
|
2021-10-15 14:08:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
g.db.add(new_post)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
for option in options:
|
2021-11-18 14:21:19 +00:00
|
|
|
c = Comment(author_id=AUTOPOLLER_ID,
|
2021-10-15 14:08:27 +00:00
|
|
|
parent_submission=new_post.id,
|
|
|
|
level=1,
|
|
|
|
body_html=filter_title(option),
|
2021-10-29 16:22:51 +00:00
|
|
|
upvotes=0
|
2021-10-15 14:08:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
g.db.add(c)
|
|
|
|
|
|
|
|
vote = Vote(user_id=v.id,
|
|
|
|
vote_type=1,
|
|
|
|
submission_id=new_post.id
|
|
|
|
)
|
|
|
|
g.db.add(vote)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
if request.files.get('file') and request.headers.get("cf-ipcountry") != "T1":
|
|
|
|
|
|
|
|
file = request.files['file']
|
|
|
|
|
|
|
|
if not file.content_type.startswith(('image/', 'video/')):
|
|
|
|
if request.headers.get("Authorization"): return {"error": f"File type not allowed"}, 400
|
|
|
|
else: return render_template("submit.html", v=v, error=f"File type not allowed.", title=title, body=request.values.get("body", "")), 400
|
|
|
|
|
2021-11-06 15:21:05 +00:00
|
|
|
if file.content_type.startswith('video/') and v.truecoins < app.config["VIDEO_COIN_REQUIREMENT"] and v.admin_level < 1:
|
2021-10-15 14:08:27 +00:00
|
|
|
if request.headers.get("Authorization"):
|
|
|
|
return {
|
|
|
|
"error": f"You need at least {app.config['VIDEO_COIN_REQUIREMENT']} coins to upload videos"
|
|
|
|
}, 403
|
|
|
|
else:
|
|
|
|
return render_template(
|
|
|
|
"submit.html",
|
|
|
|
v=v,
|
|
|
|
error=f"You need at least {app.config['VIDEO_COIN_REQUIREMENT']} coins to upload videos.",
|
|
|
|
title=title,
|
|
|
|
body=request.values.get("body", "")
|
|
|
|
), 403
|
|
|
|
|
|
|
|
if file.content_type.startswith('image/'):
|
2021-11-11 18:58:09 +00:00
|
|
|
name = f'/images/{int(time.time())}{secrets.token_urlsafe(2)}.webp'
|
2021-10-15 14:08:27 +00:00
|
|
|
file.save(name)
|
|
|
|
new_post.url = request.host_url[:-1] + process_image(name)
|
|
|
|
|
|
|
|
elif file.content_type.startswith('video/'):
|
|
|
|
file.save("video.mp4")
|
|
|
|
with open("video.mp4", 'rb') as f:
|
2021-11-14 01:19:32 +00:00
|
|
|
new_post.url = requests.post('https://catbox.moe/user/api.php', timeout=5, data={'userhash':CATBOX_KEY, 'reqtype':'fileupload'}, files={'fileToUpload':f}).text
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
g.db.add(new_post)
|
|
|
|
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-11 20:12:27 +00:00
|
|
|
if (new_post.url or request.files.get('file')) and request.headers.get('cf-ipcountry')!="T1":
|
2021-10-15 14:08:27 +00:00
|
|
|
gevent.spawn( thumbnail_thread, new_post.id)
|
|
|
|
|
|
|
|
if not new_post.private:
|
2021-10-25 13:55:56 +00:00
|
|
|
|
2021-12-02 20:48:13 +00:00
|
|
|
notify_users = NOTIFY_USERS(f'{body_html}{title}', v.id)
|
2021-10-25 13:55:56 +00:00
|
|
|
soup = BeautifulSoup(body_html, features="html.parser")
|
|
|
|
for mention in soup.find_all("a", href=re.compile("^/@(\w+)")):
|
|
|
|
username = mention["href"].split("@")[1]
|
2021-11-06 15:52:48 +00:00
|
|
|
user = g.db.query(User).filter_by(username=username).first()
|
2021-10-28 13:36:56 +00:00
|
|
|
if user and not v.any_block_exists(user) and user.id != v.id: notify_users.add(user.id)
|
2021-11-25 22:38:37 +00:00
|
|
|
|
2021-10-28 13:36:56 +00:00
|
|
|
for x in notify_users: send_notification(x, f"@{v.username} has mentioned you: http://{site}{new_post.permalink}")
|
2021-10-25 13:55:56 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
for follow in v.followers:
|
|
|
|
user = get_account(follow.user_id)
|
2021-11-03 14:06:20 +00:00
|
|
|
if new_post.club and not user.club_allowed: continue
|
2021-10-23 19:40:49 +00:00
|
|
|
send_notification(user.id, f"@{v.username} has made a new post: [{title}](http://{site}{new_post.permalink})", True)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
g.db.add(new_post)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
|
|
|
|
if "rama" in request.host and "ivermectin" in new_post.body_html.lower():
|
|
|
|
|
|
|
|
new_post.is_banned = True
|
2021-11-03 16:15:06 +00:00
|
|
|
new_post.ban_reason = "AutoJanny"
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
g.db.add(new_post)
|
|
|
|
|
|
|
|
|
|
|
|
body = VAXX_MSG.format(username=v.username)
|
|
|
|
|
|
|
|
body_md = CustomRenderer().render(mistletoe.Document(body))
|
|
|
|
|
|
|
|
body_jannied_html = sanitize(body_md)
|
|
|
|
|
|
|
|
|
2021-11-18 14:21:19 +00:00
|
|
|
c_jannied = Comment(author_id=AUTOJANNY_ID,
|
2021-10-15 14:08:27 +00:00
|
|
|
parent_submission=new_post.id,
|
|
|
|
level=1,
|
|
|
|
over_18=False,
|
|
|
|
is_bot=True,
|
|
|
|
app_id=None,
|
|
|
|
is_pinned=True,
|
|
|
|
distinguish_level=6,
|
|
|
|
body_html=body_jannied_html,
|
|
|
|
)
|
|
|
|
|
|
|
|
g.db.add(c_jannied)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
|
|
|
|
n = Notification(comment_id=c_jannied.id, user_id=v.id)
|
|
|
|
g.db.add(n)
|
|
|
|
|
|
|
|
|
2021-10-29 16:11:45 +00:00
|
|
|
if v.agendaposter and not v.marseyawarded and "trans lives matter" not in new_post.body_html.lower():
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
new_post.is_banned = True
|
2021-11-03 16:15:06 +00:00
|
|
|
new_post.ban_reason = "AutoJanny"
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
g.db.add(new_post)
|
|
|
|
|
|
|
|
body = AGENDAPOSTER_MSG.format(username=v.username)
|
|
|
|
|
|
|
|
body_md = CustomRenderer().render(mistletoe.Document(body))
|
|
|
|
|
|
|
|
body_jannied_html = sanitize(body_md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-18 14:21:19 +00:00
|
|
|
c_jannied = Comment(author_id=AUTOJANNY_ID,
|
2021-10-15 14:08:27 +00:00
|
|
|
parent_submission=new_post.id,
|
|
|
|
level=1,
|
|
|
|
over_18=False,
|
|
|
|
is_bot=True,
|
|
|
|
app_id=None,
|
|
|
|
is_pinned=True,
|
|
|
|
distinguish_level=6,
|
|
|
|
body_html=body_jannied_html,
|
|
|
|
)
|
|
|
|
|
|
|
|
g.db.add(c_jannied)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
n = Notification(comment_id=c_jannied.id, user_id=v.id)
|
|
|
|
g.db.add(n)
|
|
|
|
|
2021-11-29 23:35:43 +00:00
|
|
|
if "rama" in request.host or "pcm" in request.host or new_post.url:
|
2021-10-15 14:08:27 +00:00
|
|
|
new_post.comment_count = 1
|
|
|
|
g.db.add(new_post)
|
|
|
|
|
2021-11-29 23:35:43 +00:00
|
|
|
if "rama" in request.host or "pcm" in request.host:
|
2021-10-23 19:40:49 +00:00
|
|
|
if v.id == CARP_ID:
|
2021-10-15 14:08:27 +00:00
|
|
|
if random.random() < 0.02: body = "i love you carp"
|
2021-11-08 12:48:47 +00:00
|
|
|
else: body = "![](/assets/images/emojis/fuckoffcarp.webp)"
|
2021-10-23 19:40:49 +00:00
|
|
|
elif v.id == LAWLZ_ID:
|
2021-10-15 14:08:27 +00:00
|
|
|
if random.random() < 0.5: body = "wow, this lawlzpost sucks!"
|
|
|
|
else: body = "wow, a good lawlzpost for once!"
|
|
|
|
else: body = random.choice(snappyquotes)
|
2021-11-04 19:00:32 +00:00
|
|
|
body += "\n\n"
|
2021-10-15 14:08:27 +00:00
|
|
|
else: body = ""
|
2021-10-27 20:12:16 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if new_post.url:
|
2021-11-07 13:15:28 +00:00
|
|
|
if new_post.url.startswith('https://old.reddit.com/r/'):
|
|
|
|
rev = new_post.url.replace('https://old.reddit.com/', '')
|
2021-11-30 15:43:35 +00:00
|
|
|
rev = f"* [unddit.com](https://unddit.com/{rev})\n"
|
2021-11-08 12:44:08 +00:00
|
|
|
else: rev = ''
|
|
|
|
body += f"Snapshots:\n\n{rev}* [archive.org](https://web.archive.org/{new_post.url})\n* [archive.ph](https://archive.ph/?url={quote(new_post.url)}&run=1) (click to archive)\n\n"
|
2021-10-15 14:08:27 +00:00
|
|
|
gevent.spawn(archiveorg, new_post.url)
|
2021-10-27 08:42:52 +00:00
|
|
|
|
2021-10-27 20:12:16 +00:00
|
|
|
url_regex = '<a (target=\"_blank\" )?(rel=\"nofollow noopener noreferrer\" )?href=\"(https?://[a-z]{1,20}\.[^\"]+)\"( rel=\"nofollow noopener noreferrer\" target=\"_blank\")?>([^\"]+)</a>'
|
|
|
|
for url_match in re.finditer(url_regex, new_post.body_html, flags=re.M|re.I):
|
|
|
|
href = url_match.group(3)
|
|
|
|
if not href: continue
|
|
|
|
|
|
|
|
title = url_match.group(5)
|
|
|
|
if "Snapshots:\n\n" not in body: body += "Snapshots:\n\n"
|
|
|
|
|
|
|
|
body += f'**[{title}]({href})**:\n\n'
|
2021-11-21 13:11:40 +00:00
|
|
|
if href.startswith('https://old.reddit.com'):
|
2021-11-30 15:43:35 +00:00
|
|
|
body += f'* [unddit.com](https://unddit.com/{href.replace("https://old.reddit.com/", "")})\n'
|
2021-10-27 20:12:16 +00:00
|
|
|
body += f'* [archive.org](https://web.archive.org/{href})\n'
|
|
|
|
body += f'* [archive.ph](https://archive.ph/?url={quote(href)}&run=1) (click to archive)\n\n'
|
|
|
|
gevent.spawn(archiveorg, href)
|
2021-10-27 08:42:52 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
body_md = CustomRenderer().render(mistletoe.Document(body))
|
|
|
|
body_html = sanitize(body_md)
|
|
|
|
|
2021-11-13 22:41:30 +00:00
|
|
|
if len(body_html) < 20000:
|
2021-11-18 14:21:19 +00:00
|
|
|
c = Comment(author_id=SNAPPY_ID,
|
2021-11-13 22:40:38 +00:00
|
|
|
distinguish_level=6,
|
|
|
|
parent_submission=new_post.id,
|
|
|
|
level=1,
|
|
|
|
over_18=False,
|
2021-11-22 21:46:31 +00:00
|
|
|
is_bot=True,
|
2021-11-13 22:40:38 +00:00
|
|
|
app_id=None,
|
|
|
|
body_html=body_html,
|
|
|
|
)
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-13 22:40:38 +00:00
|
|
|
g.db.add(c)
|
2021-10-27 20:38:10 +00:00
|
|
|
|
2021-11-18 14:21:19 +00:00
|
|
|
snappy = g.db.query(User).filter_by(id = SNAPPY_ID).first()
|
2021-11-13 22:40:38 +00:00
|
|
|
snappy.comment_count += 1
|
|
|
|
snappy.coins += 1
|
|
|
|
g.db.add(snappy)
|
2021-10-27 20:38:10 +00:00
|
|
|
|
2021-11-13 22:40:38 +00:00
|
|
|
g.db.flush()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-29 23:07:57 +00:00
|
|
|
if not v.is_blocking(snappy):
|
|
|
|
n = Notification(comment_id=c.id, user_id=v.id)
|
|
|
|
g.db.add(n)
|
|
|
|
g.db.flush()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
v.post_count = g.db.query(Submission.id).filter_by(author_id=v.id, is_banned=False, deleted_utc=0).count()
|
2021-10-15 14:08:27 +00:00
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
cache.delete_memoized(frontlist)
|
|
|
|
cache.delete_memoized(User.userpagelisting)
|
2021-11-15 22:13:29 +00:00
|
|
|
if v.admin_level > 1 and ("[changelog]" in new_post.title or "(changelog)" in new_post.title):
|
2021-10-19 23:43:11 +00:00
|
|
|
send_message(f"http://{site}{new_post.permalink}")
|
2021-10-15 14:08:27 +00:00
|
|
|
cache.delete_memoized(changeloglist)
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
2021-11-24 17:33:44 +00:00
|
|
|
if v.agendaposter and random.randint(1, 10) < 4:
|
2021-11-23 19:54:40 +00:00
|
|
|
if request.host == 'rdrama.net':
|
|
|
|
return redirect(random.choice(['https://secure.actblue.com/donate/ms_blm_homepage_2019','https://rdrama.net/post/19711/a-short-guide-on-how-to','https://secure.transequality.org/site/Donation2?df_id=1480']))
|
|
|
|
return redirect('https://secure.actblue.com/donate/ms_blm_homepage_2019')
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
if request.headers.get("Authorization"): return new_post.json
|
|
|
|
else: return redirect(new_post.permalink)
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/delete_post/<pid>")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def delete_post_pid(pid, v):
|
|
|
|
|
|
|
|
post = get_post(pid)
|
|
|
|
if not post.author_id == v.id:
|
|
|
|
abort(403)
|
|
|
|
|
|
|
|
post.deleted_utc = int(time.time())
|
|
|
|
post.is_pinned = False
|
|
|
|
post.stickied = None
|
|
|
|
|
|
|
|
g.db.add(post)
|
|
|
|
|
|
|
|
cache.delete_memoized(frontlist)
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
return {"message": "Post deleted!"}
|
|
|
|
|
|
|
|
@app.post("/undelete_post/<pid>")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def undelete_post_pid(pid, v):
|
|
|
|
post = get_post(pid)
|
|
|
|
if not post.author_id == v.id: abort(403)
|
|
|
|
post.deleted_utc =0
|
|
|
|
g.db.add(post)
|
|
|
|
|
|
|
|
cache.delete_memoized(frontlist)
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
return {"message": "Post undeleted!"}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/toggle_comment_nsfw/<cid>")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def toggle_comment_nsfw(cid, v):
|
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
comment = g.db.query(Comment).filter_by(id=cid).first()
|
2021-11-15 22:19:59 +00:00
|
|
|
if not comment.author_id == v.id and not v.admin_level > 1: abort(403)
|
2021-10-15 14:08:27 +00:00
|
|
|
comment.over_18 = not comment.over_18
|
|
|
|
g.db.add(comment)
|
|
|
|
g.db.flush()
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
if comment.over_18: return {"message": "Comment has been marked as +18!"}
|
|
|
|
else: return {"message": "Comment has been unmarked as +18!"}
|
|
|
|
|
|
|
|
@app.post("/toggle_post_nsfw/<pid>")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def toggle_post_nsfw(pid, v):
|
|
|
|
|
|
|
|
post = get_post(pid)
|
|
|
|
|
2021-11-15 22:19:59 +00:00
|
|
|
if not post.author_id == v.id and not v.admin_level > 1:
|
2021-10-15 14:08:27 +00:00
|
|
|
abort(403)
|
|
|
|
|
|
|
|
post.over_18 = not post.over_18
|
|
|
|
g.db.add(post)
|
|
|
|
|
|
|
|
if post.author_id!=v.id:
|
|
|
|
ma=ModAction(
|
|
|
|
kind="set_nsfw" if post.over_18 else "unset_nsfw",
|
|
|
|
user_id=v.id,
|
|
|
|
target_submission_id=post.id,
|
|
|
|
)
|
|
|
|
g.db.add(ma)
|
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
if post.over_18: return {"message": "Post has been marked as +18!"}
|
|
|
|
else: return {"message": "Post has been unmarked as +18!"}
|
|
|
|
|
|
|
|
@app.post("/save_post/<pid>")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def save_post(pid, v):
|
|
|
|
|
|
|
|
post=get_post(pid)
|
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
save = g.db.query(SaveRelationship).filter_by(user_id=v.id, submission_id=post.id, type=1).first()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
if not save:
|
|
|
|
new_save=SaveRelationship(user_id=v.id, submission_id=post.id, type=1)
|
|
|
|
g.db.add(new_save)
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
return {"message": "Post saved!"}
|
|
|
|
|
|
|
|
@app.post("/unsave_post/<pid>")
|
|
|
|
@limiter.limit("1/second")
|
|
|
|
@auth_required
|
|
|
|
@validate_formkey
|
|
|
|
def unsave_post(pid, v):
|
|
|
|
|
|
|
|
post=get_post(pid)
|
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
save = g.db.query(SaveRelationship).filter_by(user_id=v.id, submission_id=post.id, type=1).first()
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
if save:
|
|
|
|
g.db.delete(save)
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
return {"message": "Post unsaved!"}
|
2021-10-21 14:47:27 +00:00
|
|
|
|
|
|
|
@app.post("/pin/<post_id>")
|
|
|
|
@auth_required
|
|
|
|
def api_pin_post(post_id, v):
|
|
|
|
|
2021-11-06 15:52:48 +00:00
|
|
|
post = g.db.query(Submission).filter_by(id=post_id).first()
|
2021-10-21 14:47:27 +00:00
|
|
|
if post:
|
|
|
|
post.is_pinned = not post.is_pinned
|
|
|
|
g.db.add(post)
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
if post.is_pinned: return {"message": "Post pinned!"}
|
|
|
|
else: return {"message": "Post unpinned!"}
|