mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Redirect 404 on non-existant page
This commit is contained in:
parent
ba8737f007
commit
02fbc5056d
@ -28,6 +28,7 @@ from app.classes.web.base_handler import BaseHandler
|
|||||||
from app.classes.web.webhooks.webhook_factory import WebhookFactory
|
from app.classes.web.webhooks.webhook_factory import WebhookFactory
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
# You must put any new subpages in here
|
||||||
SUBPAGE_PERMS = {
|
SUBPAGE_PERMS = {
|
||||||
"term": EnumPermissionsServer.TERMINAL,
|
"term": EnumPermissionsServer.TERMINAL,
|
||||||
"logs": EnumPermissionsServer.LOGS,
|
"logs": EnumPermissionsServer.LOGS,
|
||||||
@ -625,6 +626,14 @@ class PanelHandler(BaseHandler):
|
|||||||
# have no perms
|
# have no perms
|
||||||
if not subpage:
|
if not subpage:
|
||||||
self.redirect("/panel/error?error=Unauthorized access to Server")
|
self.redirect("/panel/error?error=Unauthorized access to Server")
|
||||||
|
if subpage not in SUBPAGE_PERMS.keys():
|
||||||
|
self.set_status(404)
|
||||||
|
page_data["background"] = self.controller.cached_login
|
||||||
|
return self.render(
|
||||||
|
"public/404.html",
|
||||||
|
data=page_data,
|
||||||
|
translate=self.translator.translate,
|
||||||
|
)
|
||||||
page_data["active_link"] = subpage
|
page_data["active_link"] = subpage
|
||||||
logger.debug(f'Subpage: "{subpage}"')
|
logger.debug(f'Subpage: "{subpage}"')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user