Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clive
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
clive
Commits
072edd09
Commit
072edd09
authored
1 month ago
by
Marcin Sobczyk
Browse files
Options
Downloads
Patches
Plain Diff
Use world load_profile helper on unlock in tui
parent
7ca8b1d1
No related branches found
Branches containing commit
No related tags found
2 merge requests
!600
v1.27.5.21 Release
,
!587
msobczyk/follow up encryption
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
clive/__private/core/world.py
+7
-2
7 additions, 2 deletions
clive/__private/core/world.py
clive/__private/ui/screens/unlock/unlock.py
+9
-4
9 additions, 4 deletions
clive/__private/ui/screens/unlock/unlock.py
with
16 additions
and
6 deletions
clive/__private/core/world.py
+
7
−
2
View file @
072edd09
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
clive/__private/ui/screens/unlock/unlock.py
+
9
−
4
View file @
072edd09
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment