2018-05-07 10:51:24 +00:00
|
|
|
from flask import Flask, render_template, request, abort, redirect, url_for
|
|
|
|
from flask import session as fl_session
|
|
|
|
import db
|
|
|
|
from sqlalchemy import func, alias
|
|
|
|
import bcrypt
|
|
|
|
import configparser
|
2017-10-25 09:09:06 +00:00
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
|
|
app.jinja_env.trim_blocks = True
|
|
|
|
app.jinja_env.lstrip_blocks = True
|
|
|
|
|
2018-05-07 10:51:24 +00:00
|
|
|
config = configparser.ConfigParser()
|
|
|
|
config.read("config.ini")
|
|
|
|
|
|
|
|
app.secret_key = config["Flask"]["secret_key"]
|
|
|
|
|
2018-03-12 12:29:12 +00:00
|
|
|
|
2018-01-25 14:24:17 +00:00
|
|
|
@app.route("/")
|
|
|
|
def page_index():
|
|
|
|
return render_template("index.html")
|
|
|
|
|
2018-03-12 12:29:12 +00:00
|
|
|
|
2018-01-25 14:24:17 +00:00
|
|
|
@app.route("/diario")
|
|
|
|
def page_diario():
|
2018-05-07 10:51:24 +00:00
|
|
|
db_session = db.Session()
|
|
|
|
diario_data = db_session.query(db.Diario).outerjoin((db.Telegram, db.Diario.author), aliased=True).outerjoin(db.Royal, aliased=True).outerjoin((db.Telegram, db.Diario.saver), aliased=True).outerjoin(db.Royal, aliased=True).all()
|
|
|
|
db_session.close()
|
2018-01-25 14:24:17 +00:00
|
|
|
return render_template("diario.html", diario_data=diario_data)
|
|
|
|
|
2018-03-12 12:29:12 +00:00
|
|
|
|
2017-10-25 09:09:06 +00:00
|
|
|
@app.route("/leaderboards")
|
|
|
|
def page_leaderboards():
|
2018-05-07 10:51:24 +00:00
|
|
|
db_session = db.Session()
|
|
|
|
dota_data = db_session.query(db.Dota).join(db.Steam).join(db.Royal).order_by(db.Dota.rank_tier).all()
|
|
|
|
rl_data = db_session.query(db.RocketLeague).join(db.Steam).join(db.Royal).order_by(db.RocketLeague.doubles_mmr).all()
|
|
|
|
ow_data = db_session.query(db.Overwatch).join(db.Royal).order_by(db.Overwatch.rank).all()
|
|
|
|
osu_data = db_session.query(db.Osu).join(db.Royal).order_by(db.Osu.std_pp).all()
|
|
|
|
lol_data = db_session.query(db.LeagueOfLegends).join(db.Royal).order_by(db.LeagueOfLegends.summoner_name).all()
|
|
|
|
db_session.close()
|
2017-10-25 09:09:06 +00:00
|
|
|
return render_template("leaderboards.html", dota_data=dota_data, rl_data=rl_data, ow_data=ow_data, osu_data=osu_data, lol_data=lol_data)
|
|
|
|
|
2018-03-12 12:29:12 +00:00
|
|
|
|
2018-03-11 19:03:21 +00:00
|
|
|
@app.route("/music")
|
|
|
|
def page_music():
|
2018-05-07 10:51:24 +00:00
|
|
|
db_session = db.Session()
|
|
|
|
music_counts = db_session.query(db.PlayedMusic.filename, alias(func.count(db.PlayedMusic.filename), "count")).order_by("count").group_by(db.PlayedMusic.filename).all()
|
|
|
|
music_last = db_session.query(db.PlayedMusic).join(db.Discord).join(db.Royal).order_by(db.PlayedMusic.id.desc()).limit(50).all()
|
|
|
|
db_session.close()
|
2018-03-12 12:29:12 +00:00
|
|
|
return render_template("music.html", music_counts=music_counts, music_last=music_last)
|
2018-02-02 10:46:27 +00:00
|
|
|
|
2017-11-07 17:44:00 +00:00
|
|
|
|
2018-05-07 10:51:24 +00:00
|
|
|
@app.route("/login")
|
|
|
|
def page_login():
|
|
|
|
return render_template("login.html")
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/loggedin", methods=["GET", "POST"])
|
|
|
|
def page_loggedin():
|
|
|
|
if request.method == "GET":
|
|
|
|
username = fl_session.get("username")
|
|
|
|
if username is None:
|
|
|
|
return "Not logged in"
|
|
|
|
else:
|
|
|
|
return username
|
|
|
|
elif request.method == "POST":
|
|
|
|
username = request.form["username"]
|
|
|
|
password = request.form["password"]
|
|
|
|
db_session = db.Session()
|
|
|
|
user = db_session.query(db.Royal).filter_by(username=username).one_or_none()
|
|
|
|
db_session.close()
|
2018-05-26 08:50:54 +00:00
|
|
|
if user is None:
|
|
|
|
abort(403)
|
|
|
|
return
|
|
|
|
if user.password is None:
|
|
|
|
fl_session["username"] = username
|
|
|
|
return redirect(url_for(page_password))
|
2018-05-07 10:51:24 +00:00
|
|
|
if bcrypt.checkpw(bytes(password, encoding="utf8"), user.password):
|
|
|
|
fl_session["username"] = username
|
|
|
|
return username
|
|
|
|
else:
|
|
|
|
abort(403)
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/password", methods=["GET", "POST"])
|
|
|
|
def page_password():
|
|
|
|
username = fl_session.get("username")
|
|
|
|
if request.method == "GET":
|
|
|
|
if username is None:
|
|
|
|
abort(403)
|
|
|
|
return
|
|
|
|
return render_template("password.html")
|
|
|
|
elif request.method == "POST":
|
2018-05-26 08:50:54 +00:00
|
|
|
old_password = request.form.get("old")
|
2018-05-07 10:51:24 +00:00
|
|
|
new_password = request.form["new"]
|
|
|
|
db_session = db.Session()
|
|
|
|
user = db_session.query(db.Royal).filter_by(username=username).one_or_none()
|
2018-05-26 08:50:54 +00:00
|
|
|
if user.password is None or bcrypt.checkpw(bytes(old_password, encoding="utf8"), user.password):
|
2018-05-07 10:51:24 +00:00
|
|
|
user.password = bcrypt.hashpw(bytes(new_password, encoding="utf8"), bcrypt.gensalt())
|
|
|
|
db_session.commit()
|
|
|
|
db_session.close()
|
|
|
|
return "Password changed"
|
|
|
|
else:
|
|
|
|
db_session.close()
|
|
|
|
abort(403)
|
|
|
|
|
2017-10-25 09:09:06 +00:00
|
|
|
if __name__ == "__main__":
|
2017-10-27 09:53:05 +00:00
|
|
|
try:
|
2018-05-26 08:50:54 +00:00
|
|
|
app.run(host="0.0.0.0", port=1234, debug=__debug__)
|
2017-10-27 09:53:05 +00:00
|
|
|
except KeyboardInterrupt:
|
2018-01-25 14:29:38 +00:00
|
|
|
pass
|