mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-11 10:03:52 +01:00
83 lines
2.2 KiB
Python
83 lines
2.2 KiB
Python
# ContentDB
|
|
# Copyright (C) 2018-21 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/>.
|
|
|
|
from flask import Blueprint
|
|
from flask_babel import gettext
|
|
|
|
from app.models import User, Package, Permission, PackageType
|
|
|
|
bp = Blueprint("packages", __name__)
|
|
|
|
|
|
def get_package_tabs(user: User, package: Package):
|
|
if package is None or not package.check_perm(user, Permission.EDIT_PACKAGE):
|
|
return []
|
|
|
|
retval = [
|
|
{
|
|
"id": "edit",
|
|
"title": gettext("Edit Details"),
|
|
"url": package.get_url("packages.create_edit")
|
|
},
|
|
{
|
|
"id": "releases",
|
|
"title": gettext("Releases"),
|
|
"url": package.get_url("packages.list_releases")
|
|
},
|
|
{
|
|
"id": "screenshots",
|
|
"title": gettext("Screenshots"),
|
|
"url": package.get_url("packages.screenshots")
|
|
},
|
|
{
|
|
"id": "maintainers",
|
|
"title": gettext("Maintainers"),
|
|
"url": package.get_url("packages.edit_maintainers")
|
|
},
|
|
{
|
|
"id": "audit",
|
|
"title": gettext("Audit Log"),
|
|
"url": package.get_url("packages.audit")
|
|
},
|
|
{
|
|
"id": "stats",
|
|
"title": gettext("Statistics"),
|
|
"url": package.get_url("packages.statistics")
|
|
},
|
|
{
|
|
"id": "share",
|
|
"title": gettext("Share and Badges"),
|
|
"url": package.get_url("packages.share")
|
|
},
|
|
{
|
|
"id": "remove",
|
|
"title": gettext("Remove"),
|
|
"url": package.get_url("packages.remove")
|
|
}
|
|
]
|
|
|
|
if package.type == PackageType.MOD or package.type == PackageType.TXP:
|
|
retval.insert(1, {
|
|
"id": "game_support",
|
|
"title": gettext("Supported Games"),
|
|
"url": package.get_url("packages.game_support")
|
|
})
|
|
|
|
return retval
|
|
|
|
|
|
from . import packages, screenshots, releases, reviews, game_hub
|