contentdb/app/blueprints/users/profile.py

78 lines
2.5 KiB
Python
Raw Normal View History

2020-07-12 17:34:25 +02:00
# ContentDB
2021-01-30 17:59:42 +01:00
# Copyright (C) 2018-21 rubenwardy
2018-05-17 16:18:20 +02:00
#
# This program is free software: you can redistribute it and/or modify
2021-01-30 17:59:42 +01:00
# it under the terms of the GNU Affero General Public License as published by
2018-05-17 16:18:20 +02:00
# 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
2021-01-30 17:59:42 +01:00
# GNU Affero General Public License for more details.
2018-05-17 16:18:20 +02:00
#
2021-01-30 17:59:42 +01:00
# You should have received a copy of the GNU Affero General Public License
2018-05-17 16:18:20 +02:00
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-03-18 19:05:53 +01:00
from flask import *
from flask_login import current_user, login_required
2020-12-04 03:23:04 +01:00
from sqlalchemy import func
from app.models import *
from app.tasks.forumtasks import checkForumAccount
from . import bp
2018-03-24 20:37:33 +01:00
@bp.route("/users/", methods=["GET"])
def list_all():
2020-07-12 21:59:06 +02:00
users = db.session.query(User, func.count(Package.id)) \
.select_from(User).outerjoin(Package) \
.order_by(db.desc(User.rank), db.asc(User.display_name)) \
.group_by(User.id).all()
2018-03-24 20:24:34 +01:00
return render_template("users/list.html", users=users)
2018-03-20 20:07:20 +01:00
2018-03-24 20:24:34 +01:00
2020-12-07 21:11:40 +01:00
@bp.route("/user/forum/<username>/")
def by_forums_username(username):
user = User.query.filter_by(forums_username=username).first()
if user:
return redirect(url_for("users.profile", username=user.username))
return render_template("users/forums_no_such_user.html", username=username)
2020-12-05 02:20:00 +01:00
@bp.route("/users/<username>/")
def profile(username):
2018-03-20 20:07:20 +01:00
user = User.query.filter_by(username=username).first()
if not user:
abort(404)
2018-03-18 19:05:53 +01:00
2020-12-05 02:20:00 +01:00
packages = user.packages.filter(Package.state != PackageState.DELETED)
if not current_user.is_authenticated or (user != current_user and not current_user.canAccessTodoList()):
packages = packages.filter_by(state=PackageState.APPROVED)
packages = packages.order_by(db.asc(Package.title))
2018-03-18 19:05:53 +01:00
# Process GET or invalid POST
2021-01-29 20:38:14 +01:00
return render_template("users/profile.html", user=user, packages=packages)
2020-12-05 02:20:00 +01:00
@bp.route("/users/<username>/check/", methods=["POST"])
@login_required
def user_check(username):
user = User.query.filter_by(username=username).first()
if user is None:
abort(404)
if current_user != user and not current_user.rank.atLeast(UserRank.MODERATOR):
abort(403)
if user.forums_username is None:
abort(404)
task = checkForumAccount.delay(user.forums_username)
next_url = url_for("users.profile", username=username)
return redirect(url_for("tasks.check", id=task.id, r=next_url))