Skip to content
Snippets Groups Projects
Commit 072edd09 authored by Marcin Sobczyk's avatar Marcin Sobczyk
Browse files

Use world load_profile helper on unlock in tui

parent 7ca8b1d1
No related branches found
No related tags found
2 merge requests!600v1.27.5.21 Release,!587msobczyk/follow up encryption
......@@ -26,6 +26,7 @@ from clive.exceptions import ProfileNotLoadedError
if TYPE_CHECKING:
from collections.abc import Iterable
from datetime import timedelta
from types import TracebackType
from typing_extensions import Self
......@@ -203,9 +204,13 @@ class World:
await self.switch_profile(profile)
await self.commands.sync_state_with_beekeeper()
async def load_profile(self, profile_name: str, password: str) -> None:
async def load_profile(
self, profile_name: str, password: str, *, time: timedelta | None = None, permanent: bool = True
) -> None:
assert not self.app_state.is_unlocked, "Application is already unlocked"
await self.commands.unlock(profile_name=profile_name, password=password, permanent=True)
(
await self.commands.unlock(profile_name=profile_name, password=password, time=time, permanent=permanent)
).raise_if_error_occurred()
await self.load_profile_based_on_beekepeer()
async def switch_profile(self, new_profile: Profile | None) -> None:
......
......@@ -4,6 +4,7 @@ import contextlib
from datetime import timedelta
from typing import TYPE_CHECKING
from beekeepy.exceptions import InvalidPasswordError
from textual import on
from textual.app import InvalidModeError
from textual.containers import Horizontal
......@@ -12,6 +13,7 @@ from textual.widgets import Button, Checkbox, Static
from clive.__private.core.constants.tui.messages import PRESS_HELP_MESSAGE
from clive.__private.core.profile import Profile
from clive.__private.logger import logger
from clive.__private.ui.clive_widget import CliveWidget
from clive.__private.ui.forms.create_profile.create_profile_form import CreateProfileForm
from clive.__private.ui.get_css import get_relative_css_path
......@@ -113,17 +115,20 @@ class Unlock(BaseScreen):
if not password_input.validate_passed() or not lock_after_time.is_valid:
return
if not (
await self.commands.unlock(
try:
await self.world.load_profile(
profile_name=select_profile.value_ensure,
password=password_input.value_or_error,
permanent=lock_after_time.should_stay_unlocked,
time=lock_after_time.lock_duration,
)
).success:
except InvalidPasswordError:
logger.error(
f"Profile `{select_profile.value_ensure}` was not unlocked "
"because entered password is invalid, skipping switching modes"
)
return
await self.world.load_profile_based_on_beekepeer()
await self.app.switch_mode("dashboard")
self._remove_welcome_modes()
self.app.update_alarms_data_on_newest_node_data(suppress_cancelled_error=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment