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
|
2023-08-20 23:25:18 +02:00
|
|
|
from sqlalchemy import and_
|
2019-11-16 00:51:42 +01:00
|
|
|
|
2023-08-20 23:25:18 +02:00
|
|
|
from app.models import Package, PackageReview, Thread, User, PackageState, db, PackageType, PackageRelease, Tags, Tag, \
|
|
|
|
Collection
|
2023-06-19 20:32:36 +02:00
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
bp = Blueprint("homepage", __name__)
|
|
|
|
|
2022-12-04 16:02:49 +01:00
|
|
|
from sqlalchemy.orm import joinedload, subqueryload
|
2019-11-16 00:51:42 +01:00
|
|
|
from sqlalchemy.sql.expression import func
|
2021-11-23 01:58:53 +01:00
|
|
|
|
|
|
|
|
2022-10-25 18:24:43 +02:00
|
|
|
@bp.route("/gamejam/")
|
|
|
|
def gamejam():
|
|
|
|
return redirect("https://forum.minetest.net/viewtopic.php?t=28802")
|
|
|
|
|
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
@bp.route("/")
|
2019-11-21 20:38:26 +01:00
|
|
|
def home():
|
2022-11-18 21:29:52 +01:00
|
|
|
def package_load(query):
|
2020-12-04 03:23:04 +01:00
|
|
|
return query.options(
|
2022-11-18 21:29:52 +01:00
|
|
|
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
|
|
|
|
2022-11-18 22:15:46 +01:00
|
|
|
def review_load(query):
|
|
|
|
return query.options(
|
|
|
|
joinedload(PackageReview.author),
|
2023-01-28 17:39:53 +01:00
|
|
|
joinedload(PackageReview.thread).subqueryload(Thread.first_reply),
|
2022-11-18 22:15:46 +01:00
|
|
|
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
|
|
|
|
2023-08-20 23:25:18 +02:00
|
|
|
spotlight_pkgs = query.filter(
|
|
|
|
Package.collections.any(and_(Collection.name == "featured", Collection.author.has(username="ContentDB")))) \
|
|
|
|
.order_by(func.random()).limit(6).all()
|
2021-07-22 13:13:16 +02:00
|
|
|
|
2023-06-19 20:32:36 +02:00
|
|
|
new = package_load(query.order_by(db.desc(Package.approved_at))).limit(4).all()
|
2022-11-18 21:29:52 +01:00
|
|
|
pop_mod = package_load(query.filter_by(type=PackageType.MOD).order_by(db.desc(Package.score))).limit(8).all()
|
|
|
|
pop_gam = package_load(query.filter_by(type=PackageType.GAME).order_by(db.desc(Package.score))).limit(8).all()
|
|
|
|
pop_txp = package_load(query.filter_by(type=PackageType.TXP).order_by(db.desc(Package.score))).limit(8).all()
|
|
|
|
high_reviewed = package_load(query.order_by(db.desc(Package.score - Package.score_downloads))) \
|
2020-12-14 12:48:07 +01:00
|
|
|
.filter(Package.reviews.any()).limit(4).all()
|
2020-07-18 02:22:52 +02:00
|
|
|
|
2022-11-18 21:29:52 +01: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()
|
2020-12-14 12:48:07 +01:00
|
|
|
updated = updated[:4]
|
2020-07-18 02:22:52 +02:00
|
|
|
|
2023-04-15 21:06:24 +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
|
|
|
|
2020-07-09 02:11:50 +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) \
|
2023-05-13 16:40:03 +02:00
|
|
|
.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
|
|
|
|
2023-06-01 18:55:00 +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)
|