mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
151 lines
5.6 KiB
Python
151 lines
5.6 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-untyped]
|
|
|
|
from aiohttp.web import HTTPBadRequest, HTTPNoContent, HTTPNotFound, Response, json_response
|
|
|
|
from ahriman.core.exceptions import UnknownPackageError
|
|
from ahriman.models.build_status import BuildStatusEnum
|
|
from ahriman.models.package import Package
|
|
from ahriman.models.user_access import UserAccess
|
|
from ahriman.web.schemas import AuthSchema, ErrorSchema, PackageNameSchema, PackageStatusSchema, PackageStatusSimplifiedSchema
|
|
from ahriman.web.views.base import BaseView
|
|
|
|
|
|
class PackageView(BaseView):
|
|
"""
|
|
package base specific web view
|
|
|
|
Attributes:
|
|
DELETE_PERMISSION(UserAccess): (class attribute) delete permissions of self
|
|
GET_PERMISSION(UserAccess): (class attribute) get permissions of self
|
|
POST_PERMISSION(UserAccess): (class attribute) post permissions of self
|
|
"""
|
|
|
|
DELETE_PERMISSION = POST_PERMISSION = UserAccess.Full
|
|
GET_PERMISSION = UserAccess.Read
|
|
ROUTES = ["/api/v1/packages/{package}"]
|
|
|
|
@aiohttp_apispec.docs(
|
|
tags=["Packages"],
|
|
summary="Delete package",
|
|
description="Delete package and its status from service",
|
|
responses={
|
|
204: {"description": "Success response"},
|
|
401: {"description": "Authorization required", "schema": ErrorSchema},
|
|
403: {"description": "Access is forbidden", "schema": ErrorSchema},
|
|
500: {"description": "Internal server error", "schema": ErrorSchema},
|
|
},
|
|
security=[{"token": [DELETE_PERMISSION]}],
|
|
)
|
|
@aiohttp_apispec.cookies_schema(AuthSchema)
|
|
@aiohttp_apispec.match_info_schema(PackageNameSchema)
|
|
async def delete(self) -> None:
|
|
"""
|
|
delete package base from status page
|
|
|
|
Raises:
|
|
HTTPNoContent: on success response
|
|
"""
|
|
package_base = self.request.match_info["package"]
|
|
self.service.package_remove(package_base)
|
|
|
|
raise HTTPNoContent
|
|
|
|
@aiohttp_apispec.docs(
|
|
tags=["Packages"],
|
|
summary="Get package",
|
|
description="Retrieve packages and its descriptor",
|
|
responses={
|
|
200: {"description": "Success response", "schema": PackageStatusSchema(many=True)},
|
|
401: {"description": "Authorization required", "schema": ErrorSchema},
|
|
403: {"description": "Access is forbidden", "schema": ErrorSchema},
|
|
404: {"description": "Package base is unknown", "schema": ErrorSchema},
|
|
500: {"description": "Internal server error", "schema": ErrorSchema},
|
|
},
|
|
security=[{"token": [GET_PERMISSION]}],
|
|
)
|
|
@aiohttp_apispec.cookies_schema(AuthSchema)
|
|
@aiohttp_apispec.match_info_schema(PackageNameSchema)
|
|
async def get(self) -> Response:
|
|
"""
|
|
get current package base status
|
|
|
|
Returns:
|
|
Response: 200 with package description on success
|
|
|
|
Raises:
|
|
HTTPNotFound: if no package was found
|
|
"""
|
|
package_base = self.request.match_info["package"]
|
|
|
|
try:
|
|
package, status = self.service.package_get(package_base)
|
|
except UnknownPackageError:
|
|
raise HTTPNotFound
|
|
|
|
response = [
|
|
{
|
|
"package": package.view(),
|
|
"status": status.view()
|
|
}
|
|
]
|
|
return json_response(response)
|
|
|
|
@aiohttp_apispec.docs(
|
|
tags=["Packages"],
|
|
summary="Update package",
|
|
description="Update package status and set its descriptior optionally",
|
|
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.match_info_schema(PackageNameSchema)
|
|
@aiohttp_apispec.json_schema(PackageStatusSimplifiedSchema)
|
|
async def post(self) -> None:
|
|
"""
|
|
update package build status
|
|
|
|
Raises:
|
|
HTTPBadRequest: if bad data is supplied
|
|
HTTPNoContent: in case of success response
|
|
"""
|
|
package_base = self.request.match_info["package"]
|
|
data = await self.extract_data()
|
|
|
|
try:
|
|
package = Package.from_json(data["package"]) if "package" in data else None
|
|
status = BuildStatusEnum(data["status"])
|
|
except Exception as ex:
|
|
raise HTTPBadRequest(reason=str(ex))
|
|
|
|
try:
|
|
self.service.package_update(package_base, status, package)
|
|
except UnknownPackageError:
|
|
raise HTTPBadRequest(reason=f"Package {package_base} is unknown, but no package body set")
|
|
|
|
raise HTTPNoContent
|