mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
# ContentDB
|
|
# Copyright (C) 2020 rubenwardy
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
from flask import render_template, request, abort
|
|
from app.models import db, AuditLogEntry, UserRank, User
|
|
from app.utils import rank_required, get_int_or_abort
|
|
|
|
from . import bp
|
|
|
|
|
|
@bp.route("/admin/audit/")
|
|
@rank_required(UserRank.MODERATOR)
|
|
def audit():
|
|
page = get_int_or_abort(request.args.get("page"), 1)
|
|
num = min(40, get_int_or_abort(request.args.get("n"), 100))
|
|
|
|
query = AuditLogEntry.query.order_by(db.desc(AuditLogEntry.created_at))
|
|
|
|
if "username" in request.args:
|
|
user = User.query.filter_by(username=request.args.get("username")).first()
|
|
if not user:
|
|
abort(404)
|
|
query = query.filter_by(causer=user)
|
|
|
|
pagination = query.paginate(page, num, True)
|
|
return render_template("admin/audit.html", log=pagination.items, pagination=pagination)
|
|
|
|
|
|
@bp.route("/admin/audit/<int:id>/")
|
|
@rank_required(UserRank.MODERATOR)
|
|
def audit_view(id):
|
|
entry = AuditLogEntry.query.get(id)
|
|
return render_template("admin/audit_view.html", entry=entry)
|