feat: serve favicon in root

This commit is contained in:
2023-11-06 14:53:55 +02:00
parent eacb6ec729
commit deab8ddae6
6 changed files with 85 additions and 8 deletions

View File

@ -0,0 +1,44 @@
#
# 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/>.
#
from aiohttp.web import HTTPFound
from ahriman.models.user_access import UserAccess
from ahriman.web.views.base import BaseView
class StaticView(BaseView):
"""
special workaround for static files redirection (e.g. favicon)
Attributes:
GET_PERMISSION(UserAccess): (class attribute) get permissions of self
"""
GET_PERMISSION = UserAccess.Unauthorized
ROUTES = ["/favicon.ico"]
async def get(self) -> None:
"""
process get request. No parameters supported here
Raises:
HTTPFound: on success response
"""
raise HTTPFound(f"/static{self.request.path}")