2022-03-13 02:09:35 +00:00
|
|
|
from flask import render_template, Blueprint, redirect, url_for, request, current_app, flash
|
2022-01-16 18:22:00 +00:00
|
|
|
from flask_user import login_required, current_user
|
|
|
|
from datatables import ColumnDT, DataTables
|
|
|
|
import datetime
|
2022-05-11 17:49:42 +00:00
|
|
|
from app.models import (
|
|
|
|
Account,
|
|
|
|
CharacterInfo,
|
|
|
|
ActivityLog,
|
|
|
|
Leaderboard,
|
|
|
|
Mail,
|
|
|
|
Property,
|
|
|
|
PropertyContent,
|
|
|
|
UGC,
|
|
|
|
AuditLog,
|
|
|
|
BugReport,
|
|
|
|
AccountInvitation,
|
|
|
|
db
|
|
|
|
)
|
2022-01-16 18:22:00 +00:00
|
|
|
from app.schemas import AccountSchema
|
2022-02-12 05:05:00 +00:00
|
|
|
from app import gm_level, log_audit
|
2022-01-16 18:22:00 +00:00
|
|
|
from app.forms import EditGMLevelForm
|
|
|
|
|
|
|
|
accounts_blueprint = Blueprint('accounts', __name__)
|
|
|
|
|
|
|
|
account_schema = AccountSchema()
|
|
|
|
|
2022-03-13 02:09:35 +00:00
|
|
|
|
2022-01-16 18:22:00 +00:00
|
|
|
@accounts_blueprint.route('/', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def index():
|
|
|
|
return render_template('accounts/index.html.j2')
|
|
|
|
|
|
|
|
|
|
|
|
@accounts_blueprint.route('/view/<id>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def view(id):
|
|
|
|
account_data = Account.query.filter(Account.id == id).first()
|
|
|
|
if account_data:
|
|
|
|
return render_template('accounts/view.html.j2', account_data=account_data)
|
|
|
|
else:
|
|
|
|
return redirect(url_for('main.index'))
|
|
|
|
|
|
|
|
|
|
|
|
@accounts_blueprint.route('/edit_gm_level/<id>', methods=('GET', 'POST'))
|
|
|
|
@login_required
|
|
|
|
@gm_level(8)
|
|
|
|
def edit_gm_level(id):
|
|
|
|
if current_user.id == int(id):
|
|
|
|
flash("You cannot your own GM Level", "danger")
|
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
2022-03-13 02:09:35 +00:00
|
|
|
account_data = Account.query.filter(Account.id == id).first()
|
2022-01-16 18:22:00 +00:00
|
|
|
if account_data.gm_level >= 8 and current_user.gm_level == 8:
|
|
|
|
flash("You cannot edit this user's GM Level", "warning")
|
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
|
|
|
|
|
|
|
form = EditGMLevelForm()
|
|
|
|
|
|
|
|
if form.validate_on_submit():
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Changed ({account_data.id}){account_data.username}'s GM Level from {account_data.gm_level} to {form.gm_level.data}")
|
2022-01-16 18:22:00 +00:00
|
|
|
account_data.gm_level = form.gm_level.data
|
|
|
|
account_data.save()
|
2022-02-12 05:05:00 +00:00
|
|
|
|
2022-01-16 18:22:00 +00:00
|
|
|
return redirect(url_for('accounts.view', id=account_data.id))
|
|
|
|
|
|
|
|
form.gm_level.data = account_data.gm_level
|
|
|
|
|
|
|
|
return render_template('accounts/edit_gm_level.html.j2', form=form, username=account_data.username)
|
|
|
|
|
|
|
|
|
|
|
|
@accounts_blueprint.route('/lock/<id>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def lock(id):
|
|
|
|
account = Account.query.filter(Account.id == id).first()
|
2022-04-03 20:54:23 +00:00
|
|
|
if not account.locked:
|
|
|
|
account.locked = True
|
|
|
|
account.active = False
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Locked ({account.id}){account.username}")
|
2022-01-16 18:22:00 +00:00
|
|
|
flash("Locked Account", "danger")
|
|
|
|
else:
|
2022-04-03 20:54:23 +00:00
|
|
|
account.locked = False
|
|
|
|
account.active = True
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Unlocked ({account.id}){account.username}")
|
2022-01-16 18:22:00 +00:00
|
|
|
flash("Unlocked account", "success")
|
2022-04-03 20:54:23 +00:00
|
|
|
account.save()
|
2022-01-16 18:22:00 +00:00
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
|
|
|
|
|
|
|
|
|
|
|
@accounts_blueprint.route('/ban/<id>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def ban(id):
|
|
|
|
account = Account.query.filter(Account.id == id).first()
|
2022-04-03 20:54:23 +00:00
|
|
|
if not account.banned:
|
|
|
|
account.banned = True
|
|
|
|
account.active = False
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Banned ({account.id}){account.username}")
|
2022-01-16 18:22:00 +00:00
|
|
|
flash("Banned Account", "danger")
|
|
|
|
else:
|
2022-04-03 20:54:23 +00:00
|
|
|
account.banned = False
|
|
|
|
account.active = True
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Unbanned ({account.id}){account.username}")
|
2022-01-16 18:22:00 +00:00
|
|
|
flash("Unbanned account", "success")
|
2022-04-03 20:54:23 +00:00
|
|
|
account.save()
|
2022-01-16 18:22:00 +00:00
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
|
|
|
|
|
|
|
|
|
|
|
@accounts_blueprint.route('/muted/<id>/<days>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def mute(id, days=0):
|
|
|
|
account = Account.query.filter(Account.id == id).first()
|
|
|
|
if days == "0":
|
|
|
|
account.mute_expire = 0
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Unmuted ({account.id}){account.username}")
|
2022-01-16 18:22:00 +00:00
|
|
|
flash("Unmuted Account", "success")
|
|
|
|
else:
|
|
|
|
muted_intil = datetime.datetime.now() + datetime.timedelta(days=int(days))
|
|
|
|
account.mute_expire = muted_intil.timestamp()
|
2022-02-12 05:05:00 +00:00
|
|
|
log_audit(f"Muted ({account.id}){account.username} for {days} days")
|
2022-01-16 18:22:00 +00:00
|
|
|
flash(f"Muted account for {days} days", "danger")
|
|
|
|
account.save()
|
|
|
|
|
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
|
|
|
|
|
|
|
|
2022-05-11 17:49:42 +00:00
|
|
|
@accounts_blueprint.route('/delete/<id>/', methods=['GET', 'POST'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(9)
|
|
|
|
def delete(id):
|
|
|
|
account = Account.query.filter(Account.id == id).first()
|
|
|
|
message = f"Deleted Account ({account.id}){account.username}"
|
|
|
|
chars = CharacterInfo.query.filter(CharacterInfo.account_id == id).all()
|
|
|
|
for char in chars:
|
|
|
|
activities = ActivityLog.query.filter(ActivityLog.character_id == char.id).all()
|
|
|
|
for activity in activities:
|
|
|
|
activity.delete()
|
|
|
|
lb_entries = Leaderboard.query.filter(Leaderboard.character_id == char.id).all()
|
|
|
|
for lb_entry in lb_entries:
|
|
|
|
lb_entry.delete()
|
|
|
|
mails = Mail.query.filter(Mail.receiver_id == char.id).all()
|
|
|
|
for mail in mails:
|
|
|
|
mail.delete()
|
|
|
|
props = Property.query.filter(Property.owner_id == char.id).all()
|
|
|
|
for prop in props:
|
|
|
|
prop_contents = PropertyContent.query.filter(PropertyContent.property_id == prop.id).all()
|
|
|
|
for prop_content in prop_contents:
|
|
|
|
if prop_content.lot == "14":
|
|
|
|
UGC.query.filter(UGC.id == prop.ugc_id).first().delete()
|
|
|
|
prop_content.delete()
|
|
|
|
prop.delete()
|
|
|
|
char.delete()
|
|
|
|
# This is for GM stuff, it will be permnently delete logs
|
|
|
|
bugs = BugReport.query.filter(BugReport.resolve_by_id == id).all()
|
|
|
|
for bug in bugs:
|
|
|
|
bug.delete()
|
|
|
|
audits = AuditLog.query.filter(AuditLog.account_id == id).all()
|
|
|
|
for audit in audits:
|
|
|
|
audit.delete()
|
|
|
|
invites = AccountInvitation.query.filter(AccountInvitation.invited_by_user_id == id).all()
|
|
|
|
for invite in invites:
|
|
|
|
invite.delete()
|
|
|
|
account.delete()
|
|
|
|
flash(message, "danger")
|
|
|
|
log_audit(message)
|
|
|
|
return redirect(url_for("main.index"))
|
|
|
|
|
|
|
|
|
2022-01-16 18:22:00 +00:00
|
|
|
@accounts_blueprint.route('/get', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def get():
|
|
|
|
columns = [
|
|
|
|
ColumnDT(Account.id), # 0
|
|
|
|
ColumnDT(Account.username), # 1
|
|
|
|
ColumnDT(Account.email), # 2
|
|
|
|
ColumnDT(Account.gm_level), # 3
|
|
|
|
ColumnDT(Account.locked), # 4
|
|
|
|
ColumnDT(Account.banned), # 5
|
|
|
|
ColumnDT(Account.mute_expire), # 6
|
|
|
|
ColumnDT(Account.created_at), # 7
|
|
|
|
ColumnDT(Account.email_confirmed_at) # 8
|
|
|
|
]
|
|
|
|
|
|
|
|
query = db.session.query().select_from(Account)
|
|
|
|
|
|
|
|
params = request.args.to_dict()
|
|
|
|
|
|
|
|
rowTable = DataTables(params, query, columns)
|
|
|
|
|
|
|
|
data = rowTable.output_result()
|
|
|
|
for account in data["data"]:
|
|
|
|
account["0"] = f"""
|
|
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
|
|
href='{url_for('accounts.view', id=account["0"])}'>
|
|
|
|
View
|
|
|
|
</a>
|
|
|
|
"""
|
2022-03-13 02:09:35 +00:00
|
|
|
# <a role="button" class="btn btn-danger btn btn-block"
|
|
|
|
# href='{url_for('acounts.delete', id=account["0"])}'>
|
|
|
|
# Delete
|
|
|
|
# </a>
|
2022-01-16 18:22:00 +00:00
|
|
|
|
|
|
|
if account["4"]:
|
|
|
|
account["4"] = '''<h2 class="far fa-times-circle text-danger"></h2>'''
|
|
|
|
else:
|
|
|
|
account["4"] = '''<h2 class="far fa-check-square text-success"></h2>'''
|
|
|
|
|
|
|
|
if account["5"]:
|
|
|
|
account["5"] = '''<h2 class="far fa-times-circle text-danger"></h2>'''
|
|
|
|
else:
|
|
|
|
account["5"] = '''<h2 class="far fa-check-square text-success"></h2>'''
|
|
|
|
|
|
|
|
if account["6"]:
|
2022-03-13 02:09:35 +00:00
|
|
|
account["6"] = '''<h2 class="far fa-times-circle text-danger"></h2>'''
|
2022-01-16 18:22:00 +00:00
|
|
|
else:
|
|
|
|
account["6"] = '''<h2 class="far fa-check-square text-success"></h2>'''
|
|
|
|
|
|
|
|
if current_app.config["USER_ENABLE_EMAIL"]:
|
|
|
|
if account["8"]:
|
2022-03-13 02:09:35 +00:00
|
|
|
account["8"] = '''<h2 class="far fa-check-square text-success"></h2>'''
|
2022-01-16 18:22:00 +00:00
|
|
|
else:
|
|
|
|
account["8"] = '''<h2 class="far fa-times-circle text-danger"></h2>'''
|
|
|
|
else:
|
|
|
|
# shift columns to fill in gap of 2
|
|
|
|
account["2"] = account["3"]
|
|
|
|
account["3"] = account["4"]
|
|
|
|
account["4"] = account["5"]
|
|
|
|
account["5"] = account["6"]
|
|
|
|
account["6"] = account["7"]
|
|
|
|
# remove last two columns
|
|
|
|
del account["7"]
|
|
|
|
del account["8"]
|
|
|
|
|
|
|
|
return data
|