mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 07:17:17 +00:00
79 lines
2.5 KiB
Python
79 lines
2.5 KiB
Python
#
|
|
# Copyright (c) 2021-2025 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/>.
|
|
#
|
|
from aiohttp.web import HTTPBadRequest, Response, json_response
|
|
from typing import ClassVar
|
|
|
|
from ahriman.models.user_access import UserAccess
|
|
from ahriman.web.apispec.decorators import apidocs
|
|
from ahriman.web.schemas import ProcessIdSchema, RepositoryIdSchema, UpdateFlagsSchema
|
|
from ahriman.web.views.base import BaseView
|
|
|
|
|
|
class UpdateView(BaseView):
|
|
"""
|
|
update repository web view
|
|
|
|
Attributes:
|
|
POST_PERMISSION(UserAccess): (class attribute) post permissions of self
|
|
"""
|
|
|
|
POST_PERMISSION: ClassVar[UserAccess] = UserAccess.Full
|
|
ROUTES = ["/api/v1/service/update"]
|
|
|
|
@apidocs(
|
|
tags=["Actions"],
|
|
summary="Update packages",
|
|
description="Run repository update process",
|
|
permission=POST_PERMISSION,
|
|
error_400_enabled=True,
|
|
error_404_description="Repository is unknown",
|
|
schema=ProcessIdSchema,
|
|
query_schema=RepositoryIdSchema,
|
|
body_schema=UpdateFlagsSchema,
|
|
)
|
|
async def post(self) -> Response:
|
|
"""
|
|
run repository update. No parameters supported here
|
|
|
|
Returns:
|
|
Response: 200 with spawned process id
|
|
|
|
Raises:
|
|
HTTPBadRequest: if bad data is supplied
|
|
"""
|
|
try:
|
|
data = await self.request.json()
|
|
except Exception as ex:
|
|
raise HTTPBadRequest(reason=str(ex))
|
|
|
|
repository_id = self.repository_id()
|
|
username = await self.username()
|
|
process_id = self.spawner.packages_update(
|
|
repository_id,
|
|
username,
|
|
aur=data.get("aur", True),
|
|
local=data.get("local", True),
|
|
manual=data.get("manual", True),
|
|
increment=data.get("increment", True),
|
|
refresh=data.get("refresh", False),
|
|
)
|
|
|
|
return json_response({"process_id": process_id})
|