Confirm dangerous downloads
This commit is contained in:
@@ -0,0 +1,216 @@
|
||||
use ely_domain::DownloadId;
|
||||
use gpui::Context;
|
||||
|
||||
use crate::services::{
|
||||
download_checksums::DownloadChecksumCalculator, download_files::DownloadFileAction,
|
||||
};
|
||||
|
||||
use super::{ElyShell, ShellState};
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub(super) struct PendingDownloadFileAction {
|
||||
download_id: DownloadId,
|
||||
file_name: String,
|
||||
action: DownloadFileAction,
|
||||
}
|
||||
|
||||
impl PendingDownloadFileAction {
|
||||
fn new(download_id: DownloadId, file_name: String, action: DownloadFileAction) -> Self {
|
||||
Self { download_id, file_name, action }
|
||||
}
|
||||
|
||||
pub(super) fn file_name(&self) -> &str {
|
||||
&self.file_name
|
||||
}
|
||||
|
||||
pub(super) fn action_label(&self) -> &'static str {
|
||||
self.action.label()
|
||||
}
|
||||
}
|
||||
|
||||
impl ElyShell {
|
||||
pub(super) fn pause_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.pause_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) fn resume_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.resume_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) fn cancel_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.cancel_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) fn retry_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.retry_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) fn request_clear_active_profile_downloads(&mut self, cx: &mut Context<Self>) {
|
||||
self.download_clear_confirmation = true;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
pub(super) fn cancel_clear_active_profile_downloads(&mut self, cx: &mut Context<Self>) {
|
||||
self.download_clear_confirmation = false;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
pub(super) fn clear_active_profile_downloads(&mut self, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state {
|
||||
core.clear_downloads_for_active_profile();
|
||||
}
|
||||
self.download_clear_confirmation = false;
|
||||
self.download_action_error = None;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
pub(super) fn calculate_download_checksum(
|
||||
&mut self,
|
||||
download_id: &DownloadId,
|
||||
cx: &mut Context<Self>,
|
||||
) {
|
||||
let result = match &mut self.state {
|
||||
ShellState::Ready(core) => core
|
||||
.download_target_file_path(download_id)
|
||||
.map_err(|error| error.to_string())
|
||||
.and_then(|path| {
|
||||
DownloadChecksumCalculator::sha256(&path).map_err(|error| error.to_string())
|
||||
})
|
||||
.and_then(|checksum| {
|
||||
core.record_download_checksum(download_id, checksum)
|
||||
.map_err(|error| error.to_string())
|
||||
}),
|
||||
ShellState::StartupError(message) => Err(message.clone()),
|
||||
};
|
||||
|
||||
self.download_action_error = result.err();
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
pub(super) fn open_download_file(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
self.run_download_file_action(download_id, DownloadFileAction::Open, cx);
|
||||
}
|
||||
|
||||
pub(super) fn reveal_download_file(
|
||||
&mut self,
|
||||
download_id: &DownloadId,
|
||||
cx: &mut Context<Self>,
|
||||
) {
|
||||
self.run_download_file_action(download_id, DownloadFileAction::Reveal, cx);
|
||||
}
|
||||
|
||||
pub(super) fn confirm_download_security_prompt(&mut self, cx: &mut Context<Self>) {
|
||||
let Some(pending_action) = self.download_security_confirmation.take() else {
|
||||
cx.notify();
|
||||
return;
|
||||
};
|
||||
|
||||
let result = match &mut self.state {
|
||||
ShellState::Ready(core) => core
|
||||
.confirm_download_security_prompt(&pending_action.download_id)
|
||||
.map_err(|error| error.to_string()),
|
||||
ShellState::StartupError(message) => Err(message.clone()),
|
||||
};
|
||||
|
||||
if let Err(message) = result {
|
||||
self.download_action_error = Some(message);
|
||||
cx.notify();
|
||||
return;
|
||||
}
|
||||
|
||||
self.execute_download_file_action(&pending_action.download_id, pending_action.action, cx);
|
||||
}
|
||||
|
||||
pub(super) fn cancel_download_security_prompt(&mut self, cx: &mut Context<Self>) {
|
||||
self.download_security_confirmation = None;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
fn run_download_file_action(
|
||||
&mut self,
|
||||
download_id: &DownloadId,
|
||||
action: DownloadFileAction,
|
||||
cx: &mut Context<Self>,
|
||||
) {
|
||||
match self.queue_security_confirmation(download_id, action) {
|
||||
Ok(true) => {
|
||||
self.download_action_error = None;
|
||||
cx.notify();
|
||||
return;
|
||||
}
|
||||
Ok(false) => {}
|
||||
Err(message) => {
|
||||
self.download_action_error = Some(message);
|
||||
cx.notify();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
self.execute_download_file_action(download_id, action, cx);
|
||||
}
|
||||
|
||||
fn queue_security_confirmation(
|
||||
&mut self,
|
||||
download_id: &DownloadId,
|
||||
action: DownloadFileAction,
|
||||
) -> Result<bool, String> {
|
||||
let core = match &self.state {
|
||||
ShellState::Ready(core) => core,
|
||||
ShellState::StartupError(message) => return Err(message.clone()),
|
||||
};
|
||||
|
||||
if !core
|
||||
.download_requires_security_confirmation(download_id)
|
||||
.map_err(|error| error.to_string())?
|
||||
{
|
||||
return Ok(false);
|
||||
}
|
||||
|
||||
let file_name = core
|
||||
.snapshot()
|
||||
.map_err(|error| error.to_string())?
|
||||
.download_entries
|
||||
.into_iter()
|
||||
.find(|entry| entry.id() == download_id)
|
||||
.map(|entry| entry.file_name().to_string())
|
||||
.ok_or_else(|| format!("download not found: {download_id}"))?;
|
||||
|
||||
self.download_security_confirmation =
|
||||
Some(PendingDownloadFileAction::new(download_id.clone(), file_name, action));
|
||||
Ok(true)
|
||||
}
|
||||
|
||||
fn execute_download_file_action(
|
||||
&mut self,
|
||||
download_id: &DownloadId,
|
||||
action: DownloadFileAction,
|
||||
cx: &mut Context<Self>,
|
||||
) {
|
||||
let result = match &self.state {
|
||||
ShellState::Ready(core) => core
|
||||
.download_target_file_path(download_id)
|
||||
.map_err(|error| error.to_string())
|
||||
.and_then(|path| action.run(&path).map_err(|error| error.to_string())),
|
||||
ShellState::StartupError(message) => Err(message.clone()),
|
||||
};
|
||||
|
||||
self.download_action_error = result.err();
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,4 @@
|
||||
use ely_domain::{
|
||||
DownloadDestination, DownloadEntry, DownloadPolicy, DownloadSecurity, DownloadState,
|
||||
};
|
||||
use ely_domain::{DownloadDestination, DownloadEntry, DownloadPolicy, DownloadState};
|
||||
|
||||
pub(crate) fn download_state_label(state: &DownloadState) -> &'static str {
|
||||
match state {
|
||||
@@ -32,11 +30,11 @@ pub(crate) fn download_entry_location_label(entry: &DownloadEntry) -> String {
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn download_security_label(security: &DownloadSecurity) -> &'static str {
|
||||
match security {
|
||||
DownloadSecurity::Standard => "Standard",
|
||||
DownloadSecurity::DangerousExtension => "Extension prompt required",
|
||||
pub(crate) fn download_security_label(entry: &DownloadEntry) -> &'static str {
|
||||
if entry.requires_security_confirmation() {
|
||||
return "Confirm before opening";
|
||||
}
|
||||
"Extension confirmed"
|
||||
}
|
||||
|
||||
fn download_destination_label(destination: &DownloadDestination) -> String {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use ely_browser_core::BrowserSnapshot;
|
||||
use ely_design_system::colors;
|
||||
use ely_domain::{DownloadChecksum, DownloadEntry, DownloadSecurity};
|
||||
use ely_domain::{DownloadChecksum, DownloadEntry};
|
||||
use gpui::prelude::FluentBuilder;
|
||||
use gpui::{
|
||||
AnyElement, Context, InteractiveElement, IntoElement, ParentElement, SharedString, Styled, div,
|
||||
@@ -12,6 +12,7 @@ use gpui_component::{
|
||||
scroll::ScrollableElement,
|
||||
};
|
||||
|
||||
use super::super::PendingDownloadFileAction;
|
||||
use super::{
|
||||
ElyShell,
|
||||
download_labels::{
|
||||
@@ -113,6 +114,9 @@ impl ElyShell {
|
||||
self.download_clear_confirmation && !snapshot.download_entries.is_empty(),
|
||||
|this| this.child(self.render_download_clear_confirmation(snapshot, cx)),
|
||||
)
|
||||
.when_some(self.download_security_confirmation.clone(), |this, pending_action| {
|
||||
this.child(self.render_download_security_confirmation(&pending_action, cx))
|
||||
})
|
||||
.child(self.render_downloads_list(snapshot, cx)),
|
||||
)
|
||||
}
|
||||
@@ -166,6 +170,63 @@ impl ElyShell {
|
||||
.into_any_element()
|
||||
}
|
||||
|
||||
fn render_download_security_confirmation(
|
||||
&mut self,
|
||||
pending_action: &PendingDownloadFileAction,
|
||||
cx: &mut Context<Self>,
|
||||
) -> AnyElement {
|
||||
div()
|
||||
.rounded_md()
|
||||
.border_1()
|
||||
.border_color(rgb(colors::ERROR))
|
||||
.px_3()
|
||||
.py_2()
|
||||
.flex()
|
||||
.items_center()
|
||||
.justify_between()
|
||||
.gap_3()
|
||||
.child(
|
||||
div()
|
||||
.min_w_0()
|
||||
.flex()
|
||||
.items_center()
|
||||
.gap_2()
|
||||
.text_xs()
|
||||
.text_color(rgb(colors::ERROR))
|
||||
.child(IconName::TriangleAlert)
|
||||
.child(div().truncate().child(format!(
|
||||
"Confirm {} for {}",
|
||||
pending_action.action_label(),
|
||||
pending_action.file_name()
|
||||
))),
|
||||
)
|
||||
.child(
|
||||
div()
|
||||
.flex()
|
||||
.items_center()
|
||||
.gap_2()
|
||||
.child(
|
||||
Button::new("cancel-security-download")
|
||||
.ghost()
|
||||
.xsmall()
|
||||
.label("Cancel")
|
||||
.on_click(cx.listener(|shell, _, _, cx| {
|
||||
shell.cancel_download_security_prompt(cx);
|
||||
})),
|
||||
)
|
||||
.child(
|
||||
Button::new("confirm-security-download")
|
||||
.danger()
|
||||
.xsmall()
|
||||
.label("Confirm")
|
||||
.on_click(cx.listener(|shell, _, _, cx| {
|
||||
shell.confirm_download_security_prompt(cx);
|
||||
})),
|
||||
),
|
||||
)
|
||||
.into_any_element()
|
||||
}
|
||||
|
||||
fn render_downloads_list(
|
||||
&mut self,
|
||||
snapshot: &BrowserSnapshot,
|
||||
@@ -258,7 +319,7 @@ impl ElyShell {
|
||||
.child(download_entry_location_label(entry)),
|
||||
)
|
||||
.when(entry.security().requires_prompt(), |this| {
|
||||
this.child(render_security_prompt(entry.security()))
|
||||
this.child(render_security_prompt(entry))
|
||||
})
|
||||
.when_some(entry.checksum(), |this, checksum| {
|
||||
this.child(render_checksum_label(checksum))
|
||||
@@ -316,14 +377,22 @@ fn render_download_action_error(message: String) -> AnyElement {
|
||||
.into_any_element()
|
||||
}
|
||||
|
||||
fn render_security_prompt(security: &DownloadSecurity) -> AnyElement {
|
||||
fn render_security_prompt(entry: &DownloadEntry) -> AnyElement {
|
||||
let prompt_color =
|
||||
if entry.requires_security_confirmation() { colors::ERROR } else { colors::SUCCESS };
|
||||
let prompt_icon = if entry.requires_security_confirmation() {
|
||||
IconName::TriangleAlert
|
||||
} else {
|
||||
IconName::CircleCheck
|
||||
};
|
||||
|
||||
div()
|
||||
.flex()
|
||||
.items_center()
|
||||
.gap_1()
|
||||
.text_color(rgb(colors::ERROR))
|
||||
.child(IconName::TriangleAlert)
|
||||
.child(download_security_label(security))
|
||||
.text_color(rgb(prompt_color))
|
||||
.child(prompt_icon)
|
||||
.child(download_security_label(entry))
|
||||
.into_any_element()
|
||||
}
|
||||
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
mod downloads;
|
||||
mod internal_pages;
|
||||
mod render;
|
||||
|
||||
use ely_browser_core::{BrowserCore, InitialBrowserConfig};
|
||||
use ely_domain::{CommandIntent, DownloadId, SpaceId, TabId, UrlText};
|
||||
use ely_domain::{CommandIntent, SpaceId, TabId, UrlText};
|
||||
use gpui::{App, AppContext, Context, Entity, FocusHandle, Focusable, Subscription, Window};
|
||||
use gpui_component::input::{InputEvent, InputState, SelectAll};
|
||||
|
||||
use downloads::PendingDownloadFileAction;
|
||||
|
||||
use crate::{
|
||||
CloseCurrentTab, FocusAddressBar, FocusCommandMode, OpenDownloads, OpenHistory, OpenNewTab,
|
||||
OpenSettings, RestoreClosedTab, SelectNextTab, SelectPreviousTab, ToggleFavoriteTab,
|
||||
TogglePinnedTab,
|
||||
services::{
|
||||
download_checksums::DownloadChecksumCalculator, download_files::DownloadFileAction,
|
||||
},
|
||||
};
|
||||
|
||||
enum ShellState {
|
||||
@@ -27,6 +27,7 @@ pub struct ElyShell {
|
||||
last_intent: Option<CommandIntent>,
|
||||
download_action_error: Option<String>,
|
||||
download_clear_confirmation: bool,
|
||||
download_security_confirmation: Option<PendingDownloadFileAction>,
|
||||
_command_subscription: Subscription,
|
||||
}
|
||||
|
||||
@@ -84,6 +85,7 @@ impl ElyShell {
|
||||
last_intent: None,
|
||||
download_action_error: None,
|
||||
download_clear_confirmation: false,
|
||||
download_security_confirmation: None,
|
||||
_command_subscription: command_subscription,
|
||||
}
|
||||
}
|
||||
@@ -222,102 +224,6 @@ impl ElyShell {
|
||||
}
|
||||
}
|
||||
|
||||
fn pause_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.pause_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
fn resume_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.resume_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
fn cancel_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.cancel_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
fn retry_download(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state
|
||||
&& core.retry_download(download_id).is_ok()
|
||||
{
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
fn request_clear_active_profile_downloads(&mut self, cx: &mut Context<Self>) {
|
||||
self.download_clear_confirmation = true;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
fn cancel_clear_active_profile_downloads(&mut self, cx: &mut Context<Self>) {
|
||||
self.download_clear_confirmation = false;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
fn clear_active_profile_downloads(&mut self, cx: &mut Context<Self>) {
|
||||
if let ShellState::Ready(core) = &mut self.state {
|
||||
core.clear_downloads_for_active_profile();
|
||||
}
|
||||
self.download_clear_confirmation = false;
|
||||
self.download_action_error = None;
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
fn calculate_download_checksum(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
let result = match &mut self.state {
|
||||
ShellState::Ready(core) => core
|
||||
.download_target_file_path(download_id)
|
||||
.map_err(|error| error.to_string())
|
||||
.and_then(|path| {
|
||||
DownloadChecksumCalculator::sha256(&path).map_err(|error| error.to_string())
|
||||
})
|
||||
.and_then(|checksum| {
|
||||
core.record_download_checksum(download_id, checksum)
|
||||
.map_err(|error| error.to_string())
|
||||
}),
|
||||
ShellState::StartupError(message) => Err(message.clone()),
|
||||
};
|
||||
|
||||
self.download_action_error = result.err();
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
fn open_download_file(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
self.run_download_file_action(download_id, DownloadFileAction::Open, cx);
|
||||
}
|
||||
|
||||
fn reveal_download_file(&mut self, download_id: &DownloadId, cx: &mut Context<Self>) {
|
||||
self.run_download_file_action(download_id, DownloadFileAction::Reveal, cx);
|
||||
}
|
||||
|
||||
fn run_download_file_action(
|
||||
&mut self,
|
||||
download_id: &DownloadId,
|
||||
action: DownloadFileAction,
|
||||
cx: &mut Context<Self>,
|
||||
) {
|
||||
let result = match &self.state {
|
||||
ShellState::Ready(core) => core
|
||||
.download_target_file_path(download_id)
|
||||
.map_err(|error| error.to_string())
|
||||
.and_then(|path| action.run(&path).map_err(|error| error.to_string())),
|
||||
ShellState::StartupError(message) => Err(message.clone()),
|
||||
};
|
||||
|
||||
self.download_action_error = result.err();
|
||||
cx.notify();
|
||||
}
|
||||
|
||||
fn on_close_current_tab(
|
||||
&mut self,
|
||||
_: &CloseCurrentTab,
|
||||
|
||||
Reference in New Issue
Block a user