contentdb/app/blueprints/homepage/__init__.py

87 lines
3.7 KiB
Python
Raw Normal View History

2023-06-19 20:32:36 +02:00
# ContentDB
# Copyright (C) 2018-23 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/>.
2021-11-23 02:05:43 +01:00
from flask import Blueprint, render_template, redirect
from sqlalchemy import and_
from app.models import Package, PackageReview, Thread, User, PackageState, db, PackageType, PackageRelease, Tags, Tag, \
Collection
2023-06-19 20:32:36 +02:00
bp = Blueprint("homepage", __name__)
2022-12-04 16:02:49 +01:00
from sqlalchemy.orm import joinedload, subqueryload
from sqlalchemy.sql.expression import func
2021-11-23 01:58:53 +01:00
2023-08-25 22:31:19 +02:00
PKGS_PER_ROW = 4
2023-08-22 20:58:43 +02:00
2022-10-25 18:24:43 +02:00
@bp.route("/gamejam/")
def gamejam():
return redirect("https://forum.minetest.net/viewtopic.php?t=28802")
@bp.route("/")
2019-11-21 20:38:26 +01:00
def home():
def package_load(query):
2020-12-04 03:23:04 +01:00
return query.options(
joinedload(Package.author),
subqueryload(Package.main_screenshot),
subqueryload(Package.cover_image),
2020-12-04 03:23:04 +01:00
joinedload(Package.license),
joinedload(Package.media_license))
2020-04-21 21:35:05 +02:00
def review_load(query):
return query.options(
joinedload(PackageReview.author),
joinedload(PackageReview.thread).subqueryload(Thread.first_reply),
joinedload(PackageReview.package).joinedload(Package.author).load_only(User.username, User.display_name),
joinedload(PackageReview.package).load_only(Package.title, Package.name).subqueryload(Package.main_screenshot))
2023-06-19 20:32:36 +02:00
query = Package.query.filter_by(state=PackageState.APPROVED)
count = query.count()
2020-07-18 02:22:52 +02:00
spotlight_pkgs = query.filter(
Package.collections.any(and_(Collection.name == "spotlight", Collection.author.has(username="ContentDB")))) \
.order_by(func.random()).limit(6).all()
2023-08-22 20:58:43 +02:00
new = package_load(query.order_by(db.desc(Package.approved_at))).limit(PKGS_PER_ROW).all()
pop_mod = package_load(query.filter_by(type=PackageType.MOD).order_by(db.desc(Package.score))).limit(2*PKGS_PER_ROW).all()
pop_gam = package_load(query.filter_by(type=PackageType.GAME).order_by(db.desc(Package.score))).limit(2*PKGS_PER_ROW).all()
pop_txp = package_load(query.filter_by(type=PackageType.TXP).order_by(db.desc(Package.score))).limit(2*PKGS_PER_ROW).all()
high_reviewed = package_load(query.order_by(db.desc(Package.score - Package.score_downloads))) \
2023-08-22 20:58:43 +02:00
.filter(Package.reviews.any()).limit(PKGS_PER_ROW).all()
2020-07-18 02:22:52 +02:00
updated = package_load(db.session.query(Package).select_from(PackageRelease).join(Package)
.filter_by(state=PackageState.APPROVED)
.order_by(db.desc(PackageRelease.releaseDate))
.limit(20)).all()
2023-08-22 20:58:43 +02:00
updated = updated[:PKGS_PER_ROW]
2020-07-18 02:22:52 +02:00
reviews = review_load(PackageReview.query.filter(PackageReview.rating > 3)
2023-04-15 03:37:58 +02:00
.order_by(db.desc(PackageReview.created_at))).limit(5).all()
2020-07-18 02:22:52 +02:00
downloads_result = db.session.query(func.sum(Package.downloads)).one_or_none()
2020-01-19 16:03:38 +01:00
downloads = 0 if not downloads_result or not downloads_result[0] else downloads_result[0]
2020-07-18 02:22:52 +02:00
2020-07-18 03:48:22 +02:00
tags = db.session.query(func.count(Tags.c.tag_id), Tag) \
.select_from(Tag).outerjoin(Tags).join(Package).filter(Package.state == PackageState.APPROVED)\
.group_by(Tag.id).order_by(db.asc(Tag.title)).all()
2020-07-18 03:48:22 +02:00
return render_template("index.html", count=count, downloads=downloads, tags=tags, spotlight_pkgs=spotlight_pkgs,
2023-06-19 20:32:36 +02:00
new=new, updated=updated, pop_mod=pop_mod, pop_txp=pop_txp, pop_gam=pop_gam, high_reviewed=high_reviewed,
reviews=reviews)