# 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 . from celery import uuid from flask import redirect, url_for, abort, render_template from flask_login import current_user, login_required from sqlalchemy import or_, and_ from app.models import User, Package, PackageState, PackageScreenshot, PackageUpdateConfig, ForumTopic, db, \ PackageRelease, Permission, NotificationType, AuditSeverity, UserRank from app.tasks.importtasks import makeVCSRelease from app.utils import addNotification, addAuditLog from . import bp @bp.route("/user/tags/") def tags_user(): return redirect(url_for('todo.tags', author=current_user.username)) @bp.route("/user/todo/") @bp.route("/users//todo/") @login_required def view_user(username=None): if username is None: return redirect(url_for("todo.view_user", username=current_user.username)) user: User = User.query.filter_by(username=username).first() if not user: abort(404) if current_user != user and not current_user.rank.atLeast(UserRank.APPROVER): abort(403) unapproved_packages = user.packages \ .filter(or_(Package.state == PackageState.WIP, Package.state == PackageState.CHANGES_NEEDED)) \ .order_by(db.asc(Package.created_at)).all() packages_with_no_screenshots = user.maintained_packages.filter( ~Package.screenshots.any(), Package.state == PackageState.APPROVED).all() packages_with_small_screenshots = user.maintained_packages \ .filter(Package.state != PackageState.DELETED, Package.screenshots.any(and_(PackageScreenshot.width < PackageScreenshot.SOFT_MIN_SIZE[0], PackageScreenshot.height < PackageScreenshot.SOFT_MIN_SIZE[1]))) \ .all() outdated_packages = user.maintained_packages \ .filter(Package.state != PackageState.DELETED, Package.update_config.has(PackageUpdateConfig.outdated_at.isnot(None))) \ .order_by(db.asc(Package.title)).all() topics_to_add = ForumTopic.query \ .filter_by(author_id=user.id) \ .filter(~ db.exists().where(Package.forums == ForumTopic.topic_id)) \ .order_by(db.asc(ForumTopic.name), db.asc(ForumTopic.title)) \ .all() needs_tags = user.maintained_packages \ .filter(Package.state != PackageState.DELETED, ~Package.tags.any()) \ .order_by(db.asc(Package.title)).all() return render_template("todo/user.html", current_tab="user", user=user, unapproved_packages=unapproved_packages, outdated_packages=outdated_packages, needs_tags=needs_tags, topics_to_add=topics_to_add, packages_with_no_screenshots=packages_with_no_screenshots, packages_with_small_screenshots=packages_with_small_screenshots, screenshot_min_size=PackageScreenshot.HARD_MIN_SIZE, screenshot_rec_size=PackageScreenshot.SOFT_MIN_SIZE) @bp.route("/users//update-configs/apply-all/", methods=["POST"]) @login_required def apply_all_updates(username): user: User = User.query.filter_by(username=username).first() if not user: abort(404) if current_user != user and not current_user.rank.atLeast(UserRank.EDITOR): abort(403) outdated_packages = user.maintained_packages \ .filter(Package.state != PackageState.DELETED, Package.update_config.has(PackageUpdateConfig.outdated_at.isnot(None))) \ .order_by(db.asc(Package.title)).all() for package in outdated_packages: if not package.checkPerm(current_user, Permission.MAKE_RELEASE): continue if package.releases.filter(or_(PackageRelease.task_id.isnot(None), PackageRelease.commit_hash == package.update_config.last_commit)).count() > 0: continue title = package.update_config.get_title() ref = package.update_config.get_ref() rel = PackageRelease() rel.package = package rel.title = title rel.url = "" rel.task_id = uuid() db.session.add(rel) db.session.commit() makeVCSRelease.apply_async((rel.id, ref), task_id=rel.task_id) msg = "Created release {} (Applied all Git Update Detection)".format(rel.title) addNotification(package.maintainers, current_user, NotificationType.PACKAGE_EDIT, msg, rel.getURL("packages.create_edit"), package) addAuditLog(AuditSeverity.NORMAL, current_user, msg, package.getURL("packages.view"), package) db.session.commit() return redirect(url_for("todo.view_user", username=username))