]> git.lizzy.rs Git - cheatdb.git/blob - app/blueprints/todo/__init__.py
d0903b913b7af167ca6d96d73d31428bc9e83fee
[cheatdb.git] / app / blueprints / todo / __init__.py
1 # ContentDB
2 # Copyright (C) 2018  rubenwardy
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
16
17 from flask import *
18 from flask_user import *
19 import flask_menu as menu
20 from app.models import *
21 from app.querybuilder import QueryBuilder
22 from app.utils import get_int_or_abort
23
24 bp = Blueprint("todo", __name__)
25
26 @bp.route("/todo/", methods=["GET", "POST"])
27 @login_required
28 def view():
29         canApproveNew = Permission.APPROVE_NEW.check(current_user)
30         canApproveRel = Permission.APPROVE_RELEASE.check(current_user)
31         canApproveScn = Permission.APPROVE_SCREENSHOT.check(current_user)
32
33         packages = None
34         wip_packages = None
35         if canApproveNew:
36                 packages = Package.query.filter_by(state=PackageState.READY_FOR_REVIEW) \
37                         .order_by(db.desc(Package.created_at)).all()
38                 wip_packages = Package.query.filter(Package.state<PackageState.READY_FOR_REVIEW) \
39                         .order_by(db.desc(Package.created_at)).all()
40
41         releases = None
42         if canApproveRel:
43                 releases = PackageRelease.query.filter_by(approved=False).all()
44
45         screenshots = None
46         if canApproveScn:
47                 screenshots = PackageScreenshot.query.filter_by(approved=False).all()
48
49         if not canApproveNew and not canApproveRel and not canApproveScn:
50                 abort(403)
51
52         if request.method == "POST":
53                 if request.form["action"] == "screenshots_approve_all":
54                         if not canApproveScn:
55                                 abort(403)
56
57                         PackageScreenshot.query.update({ "approved": True })
58                         db.session.commit()
59                         return redirect(url_for("todo.view"))
60                 else:
61                         abort(400)
62
63         topic_query = ForumTopic.query \
64                         .filter_by(discarded=False)
65
66         total_topics = topic_query.count()
67         topics_to_add = topic_query \
68                         .filter(~ db.exists().where(Package.forums==ForumTopic.topic_id)) \
69                         .count()
70
71         total_packages = Package.query.filter_by(state=PackageState.APPROVED).count()
72         total_to_tag = Package.query.filter_by(state=PackageState.APPROVED, tags=None).count()
73
74         unfulfilled_meta_packages = MetaPackage.query \
75                         .filter(~ MetaPackage.packages.any(state=PackageState.APPROVED)) \
76                         .filter(MetaPackage.dependencies.any(optional=False)) \
77                         .order_by(db.asc(MetaPackage.name)).count()
78
79         return render_template("todo/list.html", title="Reports and Work Queue",
80                 packages=packages, wip_packages=wip_packages, releases=releases, screenshots=screenshots,
81                 canApproveNew=canApproveNew, canApproveRel=canApproveRel, canApproveScn=canApproveScn,
82                 topics_to_add=topics_to_add, total_topics=total_topics, \
83                 total_packages=total_packages, total_to_tag=total_to_tag, \
84                 unfulfilled_meta_packages=unfulfilled_meta_packages)
85
86
87 @bp.route("/todo/topics/")
88 @login_required
89 def topics():
90         qb    = QueryBuilder(request.args)
91         qb.setSortIfNone("date")
92         query = qb.buildTopicQuery()
93
94         tmp_q = ForumTopic.query
95         if not qb.show_discarded:
96                 tmp_q = tmp_q.filter_by(discarded=False)
97         total = tmp_q.count()
98         topic_count = query.count()
99
100         page  = get_int_or_abort(request.args.get("page"), 1)
101         num   = get_int_or_abort(request.args.get("n"), 100)
102         if num > 100 and not current_user.rank.atLeast(UserRank.EDITOR):
103                 num = 100
104
105         query = query.paginate(page, num, True)
106         next_url = url_for("todo.topics", page=query.next_num, query=qb.search, \
107                 show_discarded=qb.show_discarded, n=num, sort=qb.order_by) \
108                         if query.has_next else None
109         prev_url = url_for("todo.topics", page=query.prev_num, query=qb.search, \
110                 show_discarded=qb.show_discarded, n=num, sort=qb.order_by) \
111                         if query.has_prev else None
112
113         return render_template("todo/topics.html", topics=query.items, total=total, \
114                         topic_count=topic_count, query=qb.search, show_discarded=qb.show_discarded, \
115                         next_url=next_url, prev_url=prev_url, page=page, page_max=query.pages, \
116                         n=num, sort_by=qb.order_by)
117
118
119 @bp.route("/todo/tags/")
120 @login_required
121 def tags():
122         qb    = QueryBuilder(request.args)
123         qb.setSortIfNone("score", "desc")
124         query = qb.buildPackageQuery()
125
126         tags = Tag.query.order_by(db.asc(Tag.title)).all()
127
128         return render_template("todo/tags.html", packages=query.all(), tags=tags)
129
130
131 @bp.route("/todo/metapackages/")
132 @login_required
133 def metapackages():
134         mpackages = MetaPackage.query \
135                         .filter(~ MetaPackage.packages.any(state=PackageState.APPROVED)) \
136                         .filter(MetaPackage.dependencies.any(optional=False)) \
137                         .order_by(db.asc(MetaPackage.name)).all()
138
139         return render_template("todo/metapackages.html", mpackages=mpackages)