mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-30 10:17:18 +00:00
71 lines
2.5 KiB
Python
71 lines
2.5 KiB
Python
#
|
|
# Copyright (c) 2021-2023 ahriman team.
|
|
#
|
|
# This file is part of ahriman
|
|
# (see https://github.com/arcan1s/ahriman).
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
import aiohttp_apispec # type: ignore[import]
|
|
|
|
from aiohttp.web import HTTPBadRequest, HTTPNoContent
|
|
|
|
from ahriman.models.user_access import UserAccess
|
|
from ahriman.web.schemas import AuthSchema, ErrorSchema, PackageNamesSchema
|
|
from ahriman.web.views.base import BaseView
|
|
|
|
|
|
class RemoveView(BaseView):
|
|
"""
|
|
remove package web view
|
|
|
|
Attributes:
|
|
POST_PERMISSION(UserAccess): (class attribute) post permissions of self
|
|
"""
|
|
|
|
POST_PERMISSION = UserAccess.Full
|
|
|
|
@aiohttp_apispec.docs(
|
|
tags=["Actions"],
|
|
summary="Remove packages",
|
|
description="Remove specified packages from the repository",
|
|
responses={
|
|
204: {"description": "Success response"},
|
|
400: {"description": "Bad data is supplied", "schema": ErrorSchema},
|
|
401: {"description": "Authorization required", "schema": ErrorSchema},
|
|
403: {"description": "Access is forbidden", "schema": ErrorSchema},
|
|
500: {"description": "Internal server error", "schema": ErrorSchema},
|
|
},
|
|
security=[{"token": [POST_PERMISSION]}],
|
|
)
|
|
@aiohttp_apispec.cookies_schema(AuthSchema)
|
|
@aiohttp_apispec.json_schema(PackageNamesSchema)
|
|
async def post(self) -> None:
|
|
"""
|
|
remove existing packages
|
|
|
|
Raises:
|
|
HTTPBadRequest: if bad data is supplied
|
|
HTTPNoContent: in case of success response
|
|
"""
|
|
try:
|
|
data = await self.extract_data(["packages"])
|
|
packages = self.get_non_empty(lambda key: [package for package in data[key] if package], "packages")
|
|
except Exception as e:
|
|
raise HTTPBadRequest(reason=str(e))
|
|
|
|
self.spawner.packages_remove(packages)
|
|
|
|
raise HTTPNoContent()
|