|
|
|
import pickle
|
|
|
|
from datetime import datetime
|
|
|
|
from os import path, remove
|
|
|
|
from io import BytesIO
|
|
|
|
from base64 import b64encode
|
|
|
|
from qrcode import make as qrcode_make
|
|
|
|
from flask import render_template, Blueprint, request, session, flash
|
|
|
|
from flask import send_from_directory, redirect, url_for, current_app
|
|
|
|
from werkzeug.utils import secure_filename
|
|
|
|
from secrets import token_urlsafe
|
|
|
|
from suchwow import wownero
|
|
|
|
from suchwow import config
|
|
|
|
from suchwow.models import Post, Comment
|
|
|
|
from suchwow.utils.decorators import login_required, profile_required, moderator_required
|
|
|
|
from suchwow.utils.helpers import allowed_file, is_moderator, get_session_user, post_webhook
|
|
|
|
from suchwow.reddit import make_post
|
|
|
|
from suchwow.discord import post_discord_webhook
|
|
|
|
|
|
|
|
|
|
|
|
bp = Blueprint("post", "post")
|
|
|
|
|
|
|
|
@bp.route("/posts/top")
|
|
|
|
def top():
|
|
|
|
top_posts = {}
|
|
|
|
pickle_file = path.join(config.DATA_FOLDER, 'top_posts.pkl')
|
|
|
|
|
|
|
|
try:
|
|
|
|
mtime_ts = path.getmtime(pickle_file)
|
|
|
|
mtime = datetime.fromtimestamp(mtime_ts)
|
|
|
|
now = datetime.now()
|
|
|
|
diff = now - mtime
|
|
|
|
|
|
|
|
# If pickled data file is less than an hour old, load it and render page
|
|
|
|
# Otherwise, determine balances, build json, store pickled data, and render page
|
|
|
|
if diff.seconds < 3600:
|
|
|
|
with open(pickle_file, 'rb') as f:
|
|
|
|
print('Loading pickled data for /posts/top')
|
|
|
|
pickled_data = pickle.load(f)
|
|
|
|
return render_template("post/top.html", posts=pickled_data)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
print('Generating and pickling new data for /posts/top')
|
|
|
|
posts = Post.select().where(Post.approved==True)
|
|
|
|
for post in posts:
|
|
|
|
transfers = []
|
|
|
|
incoming = wownero.Wallet().incoming_transfers(post.account_index)
|
|
|
|
if "transfers" in incoming:
|
|
|
|
for xfer in incoming["transfers"]:
|
|
|
|
transfers.append(xfer["amount"])
|
|
|
|
total = wownero.from_atomic(sum(transfers))
|
|
|
|
if total > 0:
|
|
|
|
top_posts[float(total)] = post
|
|
|
|
|
|
|
|
_t = sorted(top_posts.items(), reverse=True)[0:10]
|
|
|
|
|
|
|
|
with open(pickle_file, 'wb') as f:
|
|
|
|
f.write(pickle.dumps(_t))
|
|
|
|
|
|
|
|
return render_template("post/top.html", posts=_t)
|
|
|
|
|
|
|
|
@bp.route("/post/<id>")
|
|
|
|
def read(id):
|
|
|
|
_address_qr = BytesIO()
|
|
|
|
qr_code = None
|
|
|
|
if Post.filter(id=id):
|
|
|
|
wallet = wownero.Wallet()
|
|
|
|
post = Post.get(id=id)
|
|
|
|
if not post.approved:
|
|
|
|
if not is_moderator(get_session_user()):
|
|
|
|
flash("That post has not been approved.")
|
|
|
|
return redirect("/")
|
|
|
|
if wallet.connected:
|
|
|
|
address = wallet.get_address(account=post.account_index)
|
|
|
|
transfers = wallet.transfers(account=post.account_index)
|
|
|
|
qr_uri = f'wownero:{address}?tx_description=suchwow%20post%20{post.id}'
|
|
|
|
address_qr = qrcode_make(qr_uri).save(_address_qr)
|
|
|
|
qr_code = b64encode(_address_qr.getvalue()).decode()
|
|
|
|
else:
|
|
|
|
address = "?"
|
|
|
|
transfers = "?"
|
|
|
|
return render_template(
|
|
|
|
"post/read.html",
|
|
|
|
post=post,
|
|
|
|
address=address,
|
|
|
|
transfers=transfers,
|
|
|
|
qr_code=qr_code
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
flash("No meme there, brah")
|
|
|
|
return redirect(url_for("index"))
|
|
|
|
|
|
|
|
@bp.route("/post/create", methods=["GET", "POST"])
|
|
|
|
@login_required
|
|
|
|
@profile_required
|
|
|
|
def create():
|
|
|
|
if request.method == "POST":
|
|
|
|
submitter = get_session_user()
|
|
|
|
if submitter in config.BANNED_USERS:
|
|
|
|
reason = config.BANNED_USERS[submitter]
|
|
|
|
flash(f"You can't post for now: {reason}")
|
|
|
|
return redirect("/")
|
|
|
|
post_title = request.form.get("title")
|
|
|
|
# check if the post request has the file part
|
|
|
|
if "file" not in request.files:
|
|
|
|
flash("You didn't upload a caliente meme, bro! You're fuckin up!")
|
|
|
|
return redirect(request.url)
|
|
|
|
file = request.files["file"]
|
|
|
|
# if user does not select file, browser also
|
|
|
|
# submit an empty part without filename
|
|
|
|
if file.filename == "":
|
|
|
|
flash("You didn't upload a caliente meme, bro! You're fuckin up!")
|
|
|
|
return redirect(request.url)
|
|
|
|
if post_title == "":
|
|
|
|
flash("You didn't give your meme a spicy title, bro! You're fuckin up!")
|
|
|
|
return redirect(request.url)
|
|
|
|
if file and allowed_file(file.filename):
|
|
|
|
filename = "{}-{}".format(
|
|
|
|
token_urlsafe(12),
|
|
|
|
secure_filename(file.filename)
|
|
|
|
)
|
|
|
|
save_path_base = path.join(current_app.config["DATA_FOLDER"], "uploads")
|
|
|
|
save_path = path.join(save_path_base, filename)
|
|
|
|
file.save(save_path)
|
|
|
|
try:
|
|
|
|
wallet = wownero.Wallet()
|
|
|
|
account_index = wallet.new_account()
|
|
|
|
except:
|
|
|
|
flash("Suchwow wallet is fucked up! Try again later.")
|
|
|
|
return redirect(request.url)
|
|
|
|
post = Post(
|
|
|
|
title=post_title,
|
|
|
|
text=request.form.get("text", ""),
|
|
|
|
submitter=submitter,
|
|
|
|
image_name=filename,
|
|
|
|
account_index=account_index,
|
|
|
|
address_index=0
|
|
|
|
)
|
|
|
|
post.save()
|
|
|
|
post.save_thumbnail()
|
|
|
|
url = url_for('post.read', id=post.id, _external=True)
|
|
|
|
post_webhook(f"New post :doge2: [{post.id}]({url}) by `{submitter}` :neckbeard:")
|
|
|
|
flash("New post created and pending approval!")
|
|
|
|
return redirect(url_for("index"))
|
|
|
|
return render_template("post/create.html")
|
|
|
|
|
|
|
|
@bp.route("/post/<id>/approve")
|
|
|
|
@moderator_required
|
|
|
|
def approve(id):
|
|
|
|
post = Post.get(id=id)
|
|
|
|
url = url_for('post.read', id=post.id, _external=True)
|
|
|
|
if post:
|
|
|
|
if not post.approved:
|
|
|
|
post.approved = True
|
|
|
|
post.save()
|
|
|
|
post_webhook(f"Post [{post.id}]({url}) approved :white_check_mark: by `{get_session_user()}` :fieri_parrot:")
|
|
|
|
flash("Approved")
|
|
|
|
if current_app.config["DEBUG"] is False:
|
|
|
|
if not post.to_discord:
|
|
|
|
_d = post_discord_webhook(post)
|
|
|
|
post_webhook(f"Post [{post.id}]({url}) submitted :dab_parrot: to Discord.")
|
|
|
|
return redirect(url_for("mod_queue"))
|
|
|
|
else:
|
|
|
|
flash("You can't approve this")
|
|
|
|
return redirect(url_for("index"))
|
|
|
|
|
|
|
|
@bp.route("/post/<id>/delete")
|
|
|
|
@login_required
|
|
|
|
def delete(id):
|
|
|
|
filtered = Post.filter(id=id)
|
|
|
|
user = get_session_user()
|
|
|
|
is_mod = is_moderator(user)
|
|
|
|
if filtered:
|
|
|
|
post = filtered.first()
|
|
|
|
if user == post.submitter or is_mod:
|
|
|
|
save_path_base = path.join(current_app.config["DATA_FOLDER"], "uploads")
|
|
|
|
save_path = path.join(save_path_base, post.image_name)
|
|
|
|
remove(save_path)
|
|
|
|
post.delete_instance()
|
|
|
|
post_webhook(f"Post {post.id} deleted :dumpsterfire: by `{user}` :godmode:")
|
|
|
|
flash("Deleted that shit, brah!")
|
|
|
|
if is_mod:
|
|
|
|
return redirect(url_for("mod_queue"))
|
|
|
|
else:
|
|
|
|
return redirect(url_for("index"))
|
|
|
|
else:
|
|
|
|
flash("You can't delete a meme you don't own, brah")
|
|
|
|
return redirect(url_for("post.read", id=post.id))
|
|
|
|
else:
|
|
|
|
flash("No meme there, brah")
|
|
|
|
return redirect(url_for("index"))
|
|
|
|
|
|
|
|
@bp.route("/uploads/<path:filename>")
|
|
|
|
def uploaded_file(filename):
|
|
|
|
file_path = path.join(current_app.config["DATA_FOLDER"], "uploads")
|
|
|
|
return send_from_directory(file_path, filename)
|