mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
64 lines
2.3 KiB
Python
64 lines
2.3 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 redirect, render_template, abort, url_for, request, flash
|
|
from flask_wtf import FlaskForm
|
|
from wtforms import StringField, TextAreaField, SubmitField
|
|
from wtforms.validators import InputRequired, Length, Optional, Regexp
|
|
|
|
from app.utils import rank_required
|
|
from . import bp
|
|
from ...models import UserRank, ContentWarning, db
|
|
|
|
|
|
@bp.route("/admin/warnings/")
|
|
@rank_required(UserRank.ADMIN)
|
|
def warning_list():
|
|
return render_template("admin/warnings/list.html", warnings=ContentWarning.query.order_by(db.asc(ContentWarning.title)).all())
|
|
|
|
|
|
class WarningForm(FlaskForm):
|
|
title = StringField("Title", [InputRequired(), Length(3, 100)])
|
|
description = TextAreaField("Description", [Optional(), Length(0, 500)])
|
|
name = StringField("Name", [Optional(), Length(1, 20),
|
|
Regexp("^[a-z0-9_]", 0, "Lower case letters (a-z), digits (0-9), and underscores (_) only")])
|
|
submit = SubmitField("Save")
|
|
|
|
|
|
@bp.route("/admin/warnings/new/", methods=["GET", "POST"])
|
|
@bp.route("/admin/warnings/<name>/edit/", methods=["GET", "POST"])
|
|
@rank_required(UserRank.ADMIN)
|
|
def create_edit_warning(name=None):
|
|
warning = None
|
|
if name is not None:
|
|
warning = ContentWarning.query.filter_by(name=name).first()
|
|
if warning is None:
|
|
abort(404)
|
|
|
|
form = WarningForm(formdata=request.form, obj=warning)
|
|
if form.validate_on_submit():
|
|
if warning is None:
|
|
warning = ContentWarning(form.title.data, form.description.data)
|
|
db.session.add(warning)
|
|
else:
|
|
form.populate_obj(warning)
|
|
db.session.commit()
|
|
|
|
return redirect(url_for("admin.warning_list"))
|
|
|
|
return render_template("admin/warnings/edit.html", warning=warning, form=form)
|