2020-07-12 17:34:25 +02:00
|
|
|
# ContentDB
|
2018-05-25 18:28:32 +02:00
|
|
|
# Copyright (C) 2018 rubenwardy
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
from flask import *
|
|
|
|
from flask_user import *
|
2018-12-23 00:03:38 +01:00
|
|
|
import flask_menu as menu
|
2018-05-25 18:28:32 +02:00
|
|
|
from app.models import *
|
2019-03-29 20:45:29 +01:00
|
|
|
from app.querybuilder import QueryBuilder
|
2019-11-17 22:40:32 +01:00
|
|
|
from app.utils import get_int_or_abort
|
2018-05-25 18:28:32 +02:00
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
bp = Blueprint("todo", __name__)
|
|
|
|
|
|
|
|
@bp.route("/todo/", methods=["GET", "POST"])
|
2018-05-25 18:28:32 +02:00
|
|
|
@login_required
|
2019-11-16 00:51:42 +01:00
|
|
|
def view():
|
2018-05-25 18:28:32 +02:00
|
|
|
canApproveNew = Permission.APPROVE_NEW.check(current_user)
|
|
|
|
canApproveRel = Permission.APPROVE_RELEASE.check(current_user)
|
2018-05-25 20:06:05 +02:00
|
|
|
canApproveScn = Permission.APPROVE_SCREENSHOT.check(current_user)
|
2018-05-25 18:28:32 +02:00
|
|
|
|
|
|
|
packages = None
|
2020-09-16 18:51:03 +02:00
|
|
|
wip_packages = None
|
2018-05-25 18:28:32 +02:00
|
|
|
if canApproveNew:
|
2020-09-16 18:51:03 +02:00
|
|
|
packages = Package.query.filter_by(state=PackageState.READY_FOR_REVIEW) \
|
|
|
|
.order_by(db.desc(Package.created_at)).all()
|
|
|
|
wip_packages = Package.query.filter(Package.state<PackageState.READY_FOR_REVIEW) \
|
|
|
|
.order_by(db.desc(Package.created_at)).all()
|
2018-05-25 18:28:32 +02:00
|
|
|
|
|
|
|
releases = None
|
|
|
|
if canApproveRel:
|
|
|
|
releases = PackageRelease.query.filter_by(approved=False).all()
|
|
|
|
|
2018-05-25 20:06:05 +02:00
|
|
|
screenshots = None
|
|
|
|
if canApproveScn:
|
|
|
|
screenshots = PackageScreenshot.query.filter_by(approved=False).all()
|
|
|
|
|
2019-03-29 21:32:13 +01:00
|
|
|
if not canApproveNew and not canApproveRel and not canApproveScn:
|
|
|
|
abort(403)
|
2018-06-02 19:22:57 +02:00
|
|
|
|
2019-03-29 21:32:13 +01:00
|
|
|
if request.method == "POST":
|
|
|
|
if request.form["action"] == "screenshots_approve_all":
|
|
|
|
if not canApproveScn:
|
|
|
|
abort(403)
|
|
|
|
|
|
|
|
PackageScreenshot.query.update({ "approved": True })
|
|
|
|
db.session.commit()
|
2019-11-16 00:51:42 +01:00
|
|
|
return redirect(url_for("todo.view"))
|
2019-03-29 21:32:13 +01:00
|
|
|
else:
|
|
|
|
abort(400)
|
|
|
|
|
|
|
|
topic_query = ForumTopic.query \
|
|
|
|
.filter_by(discarded=False)
|
|
|
|
|
|
|
|
total_topics = topic_query.count()
|
|
|
|
topics_to_add = topic_query \
|
2018-07-04 01:14:37 +02:00
|
|
|
.filter(~ db.exists().where(Package.forums==ForumTopic.topic_id)) \
|
2018-06-02 19:22:57 +02:00
|
|
|
.count()
|
|
|
|
|
2020-09-16 18:51:03 +02:00
|
|
|
total_packages = Package.query.filter_by(state=PackageState.APPROVED).count()
|
|
|
|
total_to_tag = Package.query.filter_by(state=PackageState.APPROVED, tags=None).count()
|
2020-07-15 01:21:20 +02:00
|
|
|
|
2020-08-18 18:28:42 +02:00
|
|
|
unfulfilled_meta_packages = MetaPackage.query \
|
2020-09-16 18:51:03 +02:00
|
|
|
.filter(~ MetaPackage.packages.any(state=PackageState.APPROVED)) \
|
2020-08-18 18:28:42 +02:00
|
|
|
.filter(MetaPackage.dependencies.any(optional=False)) \
|
|
|
|
.order_by(db.asc(MetaPackage.name)).count()
|
|
|
|
|
2018-06-02 19:22:57 +02:00
|
|
|
return render_template("todo/list.html", title="Reports and Work Queue",
|
2020-09-16 18:51:03 +02:00
|
|
|
packages=packages, wip_packages=wip_packages, releases=releases, screenshots=screenshots,
|
2018-06-02 19:22:57 +02:00
|
|
|
canApproveNew=canApproveNew, canApproveRel=canApproveRel, canApproveScn=canApproveScn,
|
2020-07-15 01:21:20 +02:00
|
|
|
topics_to_add=topics_to_add, total_topics=total_topics, \
|
2020-08-18 18:28:42 +02:00
|
|
|
total_packages=total_packages, total_to_tag=total_to_tag, \
|
|
|
|
unfulfilled_meta_packages=unfulfilled_meta_packages)
|
2018-06-02 19:22:57 +02:00
|
|
|
|
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
@bp.route("/todo/topics/")
|
2018-06-02 19:22:57 +02:00
|
|
|
@login_required
|
2019-11-16 00:51:42 +01:00
|
|
|
def topics():
|
2019-03-29 20:45:29 +01:00
|
|
|
qb = QueryBuilder(request.args)
|
|
|
|
qb.setSortIfNone("date")
|
|
|
|
query = qb.buildTopicQuery()
|
2018-06-02 19:22:57 +02:00
|
|
|
|
2019-03-29 21:02:08 +01:00
|
|
|
tmp_q = ForumTopic.query
|
|
|
|
if not qb.show_discarded:
|
2019-03-29 21:32:13 +01:00
|
|
|
tmp_q = tmp_q.filter_by(discarded=False)
|
2019-03-29 21:02:08 +01:00
|
|
|
total = tmp_q.count()
|
2018-12-23 19:03:23 +01:00
|
|
|
topic_count = query.count()
|
|
|
|
|
2019-11-17 22:40:32 +01:00
|
|
|
page = get_int_or_abort(request.args.get("page"), 1)
|
|
|
|
num = get_int_or_abort(request.args.get("n"), 100)
|
2018-12-25 16:20:58 +01:00
|
|
|
if num > 100 and not current_user.rank.atLeast(UserRank.EDITOR):
|
|
|
|
num = 100
|
|
|
|
|
2018-12-23 19:03:23 +01:00
|
|
|
query = query.paginate(page, num, True)
|
2019-11-16 00:51:42 +01:00
|
|
|
next_url = url_for("todo.topics", page=query.next_num, query=qb.search, \
|
2019-03-29 20:45:29 +01:00
|
|
|
show_discarded=qb.show_discarded, n=num, sort=qb.order_by) \
|
2018-12-23 19:03:23 +01:00
|
|
|
if query.has_next else None
|
2019-11-16 00:51:42 +01:00
|
|
|
prev_url = url_for("todo.topics", page=query.prev_num, query=qb.search, \
|
2019-03-29 20:45:29 +01:00
|
|
|
show_discarded=qb.show_discarded, n=num, sort=qb.order_by) \
|
2018-12-23 19:03:23 +01:00
|
|
|
if query.has_prev else None
|
|
|
|
|
|
|
|
return render_template("todo/topics.html", topics=query.items, total=total, \
|
2019-03-29 20:45:29 +01:00
|
|
|
topic_count=topic_count, query=qb.search, show_discarded=qb.show_discarded, \
|
2018-12-25 16:20:58 +01:00
|
|
|
next_url=next_url, prev_url=prev_url, page=page, page_max=query.pages, \
|
2019-03-29 20:45:29 +01:00
|
|
|
n=num, sort_by=qb.order_by)
|
2020-07-14 04:49:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route("/todo/tags/")
|
|
|
|
@login_required
|
|
|
|
def tags():
|
2020-07-15 01:21:20 +02:00
|
|
|
qb = QueryBuilder(request.args)
|
|
|
|
qb.setSortIfNone("score", "desc")
|
|
|
|
query = qb.buildPackageQuery()
|
|
|
|
|
2020-07-14 04:49:30 +02:00
|
|
|
tags = Tag.query.order_by(db.asc(Tag.title)).all()
|
|
|
|
|
2020-07-15 01:21:20 +02:00
|
|
|
return render_template("todo/tags.html", packages=query.all(), tags=tags)
|
2020-08-18 18:28:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route("/todo/metapackages/")
|
2020-08-18 18:39:20 +02:00
|
|
|
@login_required
|
2020-08-18 18:28:42 +02:00
|
|
|
def metapackages():
|
|
|
|
mpackages = MetaPackage.query \
|
2020-09-16 18:51:03 +02:00
|
|
|
.filter(~ MetaPackage.packages.any(state=PackageState.APPROVED)) \
|
2020-08-18 18:28:42 +02:00
|
|
|
.filter(MetaPackage.dependencies.any(optional=False)) \
|
|
|
|
.order_by(db.asc(MetaPackage.name)).all()
|
|
|
|
|
|
|
|
return render_template("todo/metapackages.html", mpackages=mpackages)
|