mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-09-14 12:49:56 +00:00
59 lines
1.8 KiB
Python
59 lines
1.8 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 Response, json_response
|
|
|
|
from ahriman.models.user_access import UserAccess
|
|
from ahriman.web.apispec.decorators import apidocs
|
|
from ahriman.web.schemas import RepositoryIdSchema
|
|
from ahriman.web.views.base import BaseView
|
|
|
|
|
|
class RepositoriesView(BaseView):
|
|
"""
|
|
repositories view
|
|
|
|
Attributes:
|
|
GET_PERMISSION(UserAccess): (class attribute) get permissions of self
|
|
"""
|
|
|
|
GET_PERMISSION = UserAccess.Read
|
|
ROUTES = ["/api/v1/repositories"]
|
|
|
|
@apidocs(
|
|
tags=["Status"],
|
|
summary="Available repositories",
|
|
description="List available repositories",
|
|
permission=GET_PERMISSION,
|
|
schema=RepositoryIdSchema(many=True),
|
|
)
|
|
async def get(self) -> Response:
|
|
"""
|
|
get list of available repositories
|
|
|
|
Returns:
|
|
Response: 200 with service status object
|
|
"""
|
|
repositories = [
|
|
repository_id.view()
|
|
for repository_id in sorted(self.services)
|
|
]
|
|
|
|
return json_response(repositories)
|