2022-02-25 17:46:13 +00:00
|
|
|
from flask import render_template, Blueprint, redirect, url_for, request, flash, current_app
|
2022-01-16 18:22:00 +00:00
|
|
|
from flask_user import login_required
|
2022-02-12 05:40:15 +00:00
|
|
|
from app.models import PetNames, db, CharacterXML, CharacterInfo
|
2022-01-16 18:22:00 +00:00
|
|
|
from datatables import ColumnDT, DataTables
|
2022-02-13 14:14:13 +00:00
|
|
|
from app import gm_level, log_audit, scheduler
|
2022-01-16 18:22:00 +00:00
|
|
|
|
|
|
|
moderation_blueprint = Blueprint('moderation', __name__)
|
|
|
|
|
|
|
|
|
|
|
|
@moderation_blueprint.route('/<status>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def index(status):
|
|
|
|
return render_template('moderation/index.html.j2', status=status)
|
|
|
|
|
|
|
|
|
|
|
|
@moderation_blueprint.route('/approve_pet/<id>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def approve_pet(id):
|
|
|
|
|
2022-03-13 02:09:35 +00:00
|
|
|
pet_data = PetNames.query.filter(PetNames.id == id).first()
|
2022-01-16 18:22:00 +00:00
|
|
|
|
|
|
|
pet_data.approved = 2
|
2022-02-13 03:37:11 +00:00
|
|
|
log_audit(f"Approved pet name {pet_data.pet_name} from {pet_data.owner_id}")
|
|
|
|
flash(f"Approved pet name {pet_data.pet_name} from {pet_data.owner_id}", "success")
|
2022-01-16 18:22:00 +00:00
|
|
|
pet_data.save()
|
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
|
|
|
|
|
|
|
|
|
|
|
@moderation_blueprint.route('/reject_pet/<id>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def reject_pet(id):
|
|
|
|
|
2022-03-13 02:09:35 +00:00
|
|
|
pet_data = PetNames.query.filter(PetNames.id == id).first()
|
2022-01-16 18:22:00 +00:00
|
|
|
|
|
|
|
pet_data.approved = 0
|
2022-02-13 03:37:11 +00:00
|
|
|
log_audit(f"Rejected pet name {pet_data.pet_name} from {pet_data.owner_id}")
|
|
|
|
flash(f"Rejected pet name {pet_data.pet_name} from {pet_data.owner_id}", "danger")
|
2022-01-16 18:22:00 +00:00
|
|
|
pet_data.save()
|
|
|
|
return redirect(request.referrer if request.referrer else url_for("main.index"))
|
|
|
|
|
|
|
|
|
|
|
|
@moderation_blueprint.route('/get_pets/<status>', methods=['GET'])
|
|
|
|
@login_required
|
|
|
|
@gm_level(3)
|
|
|
|
def get_pets(status="all"):
|
|
|
|
columns = [
|
|
|
|
ColumnDT(PetNames.id),
|
|
|
|
ColumnDT(PetNames.pet_name),
|
|
|
|
ColumnDT(PetNames.approved),
|
2022-02-12 05:40:15 +00:00
|
|
|
ColumnDT(PetNames.owner_id),
|
2022-01-16 18:22:00 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
query = None
|
2022-04-03 17:00:14 +00:00
|
|
|
if status == "approved":
|
2022-03-13 02:09:35 +00:00
|
|
|
query = db.session.query().select_from(PetNames).filter(PetNames.approved == 2)
|
|
|
|
elif status == "unapproved":
|
|
|
|
query = db.session.query().select_from(PetNames).filter(PetNames.approved == 1)
|
2022-01-16 18:22:00 +00:00
|
|
|
else:
|
2022-04-03 17:00:14 +00:00
|
|
|
query = db.session.query().select_from(PetNames)
|
2022-01-16 18:22:00 +00:00
|
|
|
|
|
|
|
params = request.args.to_dict()
|
|
|
|
|
|
|
|
rowTable = DataTables(params, query, columns)
|
|
|
|
|
|
|
|
data = rowTable.output_result()
|
|
|
|
for pet_data in data["data"]:
|
|
|
|
id = pet_data["0"]
|
|
|
|
status = pet_data["2"]
|
|
|
|
if status == 1:
|
|
|
|
pet_data["0"] = f"""
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<a role="button" class="btn btn-success btn btn-block"
|
|
|
|
href='{url_for('moderation.approve_pet', id=id)}'>
|
|
|
|
Approve
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<a role="button" class="btn btn-danger btn btn-block"
|
|
|
|
href='{url_for('moderation.reject_pet', id=id)}'>
|
|
|
|
Reject
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
pet_data["2"] = "Awaiting Moderation"
|
|
|
|
elif status == 2:
|
|
|
|
pet_data["0"] = f"""
|
|
|
|
<a role="button" class="btn btn-danger btn btn-block"
|
|
|
|
href='{url_for('moderation.reject_pet', id=id)}'>
|
|
|
|
Reject
|
|
|
|
</a>
|
|
|
|
"""
|
|
|
|
pet_data["2"] = "<span class='text-success'>Approved</span>"
|
|
|
|
elif status == 0:
|
|
|
|
pet_data["0"] = f"""
|
|
|
|
<a role="button" class="btn btn-success btn btn-block"
|
|
|
|
href='{url_for('moderation.approve_pet', id=id)}'>
|
|
|
|
Approve
|
|
|
|
</a>
|
|
|
|
"""
|
|
|
|
pet_data["2"] = "<span class='text-danger'>Rejected</span>"
|
|
|
|
|
2022-02-13 03:37:11 +00:00
|
|
|
if pet_data["3"]:
|
|
|
|
try:
|
|
|
|
pet_data["3"] = f"""
|
|
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
|
|
href='{url_for('characters.view', id=pet_data["3"])}'>
|
|
|
|
{CharacterInfo.query.filter(CharacterInfo.id==pet_data['3']).first().name}
|
|
|
|
</a>
|
|
|
|
"""
|
2022-03-13 02:09:35 +00:00
|
|
|
except Exception:
|
|
|
|
PetNames.query.filter(PetNames.id == id).first().delete()
|
2022-02-13 03:37:11 +00:00
|
|
|
pet_data["0"] = "<span class='text-danger'>Deleted Refresh to make go away</span>"
|
|
|
|
pet_data["3"] = "<span class='text-danger'>Character Deleted</span>"
|
|
|
|
else:
|
|
|
|
pet_data["3"] = "Pending Character Association"
|
2022-02-12 05:40:15 +00:00
|
|
|
|
2022-01-16 18:22:00 +00:00
|
|
|
return data
|
2022-02-12 05:40:15 +00:00
|
|
|
|
|
|
|
|
2022-02-25 17:46:13 +00:00
|
|
|
@scheduler.task("cron", id="pet_name_maintenance", hour="*", timezone="UTC")
|
2022-02-13 03:37:11 +00:00
|
|
|
def pet_name_maintenance():
|
2022-02-14 19:58:14 +00:00
|
|
|
with scheduler.app.app_context():
|
|
|
|
# associate pet names to characters
|
2022-03-13 12:25:34 +00:00
|
|
|
# current_app.logger.info("Started Pet Name Maintenance")
|
2022-04-04 22:51:25 +00:00
|
|
|
unassociated_pets = PetNames.query.filter(PetNames.owner_id == None).all()
|
2022-02-14 19:58:14 +00:00
|
|
|
if unassociated_pets:
|
2022-02-23 21:14:39 +00:00
|
|
|
current_app.logger.info("Found un-associated pets")
|
2022-02-14 19:58:14 +00:00
|
|
|
for pet in unassociated_pets:
|
|
|
|
owner = CharacterXML.query.filter(CharacterXML.xml_data.like(f"%<p id=\"{pet.id}\" l=\"%")).first()
|
|
|
|
if owner:
|
|
|
|
pet.owner_id = owner.id
|
|
|
|
pet.save()
|
|
|
|
else:
|
|
|
|
pet.delete()
|
|
|
|
|
|
|
|
# auto-moderate based on already moderated names
|
2022-03-13 02:09:35 +00:00
|
|
|
unmoderated_pets = PetNames.query.filter(PetNames.approved == 1).all()
|
2022-02-14 19:58:14 +00:00
|
|
|
if unmoderated_pets:
|
2022-02-23 21:14:39 +00:00
|
|
|
current_app.logger.info("Found un-moderated Pets")
|
2022-02-14 19:58:14 +00:00
|
|
|
for pet in unmoderated_pets:
|
2022-03-13 02:09:35 +00:00
|
|
|
existing_pet = PetNames.query.filter(PetNames.approved.in_([0, 2])).filter(PetNames.pet_name == pet.pet_name).first()
|
2022-02-14 19:58:14 +00:00
|
|
|
if existing_pet:
|
|
|
|
pet.approved = existing_pet.approved
|
|
|
|
pet.save()
|
2022-03-13 12:25:34 +00:00
|
|
|
# current_app.logger.info("Finished Pet Name Maintenance")
|