Short-circuit authentication if no command was configured (#140).

This commit is contained in:
Antoine POPINEAU 2024-05-17 12:33:49 +02:00
parent 4ac12261cc
commit e203bee7ec
No known key found for this signature in database
GPG Key ID: E8379674E92D25D2
3 changed files with 34 additions and 18 deletions

View File

@ -21,6 +21,7 @@ new_command = New command:
shutdown = Shut down
reboot = Reboot
command_missing = No command configured
command_exited = Command exited with
command_failed = Command failed

View File

@ -21,6 +21,7 @@ command = Nouvelle commande :
shutdown = Éteindre
reboot = Redémarrer
command_missing = Aucune commande configurée
command_exited = La commande a retourné
command_failed = Échec de la commande

View File

@ -148,29 +148,43 @@ impl Ipc {
} else {
tracing::info!("authentication successful, starting session");
let command = greeter.session_source.command(greeter).map(str::to_string);
match greeter.session_source.command(greeter).map(str::to_string) {
None => {
Ipc::cancel(greeter).await;
if let Some(command) = command {
greeter.done = true;
greeter.mode = Mode::Processing;
greeter.message = Some(fl!("command_missing"));
greeter.reset(false).await;
}
let session = Session::get_selected(greeter);
let (command, env) = wrap_session_command(greeter, session, &command);
Some(command) if command.is_empty() => {
Ipc::cancel(greeter).await;
#[cfg(not(debug_assertions))]
self.send(Request::StartSession { cmd: vec![command.to_string()], env }).await;
greeter.message = Some(fl!("command_missing"));
greeter.reset(false).await;
}
#[cfg(debug_assertions)]
{
let _ = command;
let _ = env;
Some(command) => {
greeter.done = true;
greeter.mode = Mode::Processing;
self
.send(Request::StartSession {
cmd: vec!["true".to_string()],
env: vec![],
})
.await;
let session = Session::get_selected(greeter);
let (command, env) = wrap_session_command(greeter, session, &command);
#[cfg(not(debug_assertions))]
self.send(Request::StartSession { cmd: vec![command.to_string()], env }).await;
#[cfg(debug_assertions)]
{
let _ = command;
let _ = env;
self
.send(Request::StartSession {
cmd: vec!["true".to_string()],
env: vec![],
})
.await;
}
}
}
}