Add download file actions

This commit is contained in:
2026-05-07 21:56:09 -04:00
parent f3c9a933c9
commit 7370ae14b9
11 changed files with 248 additions and 4 deletions
+3
View File
@@ -18,6 +18,9 @@ pub enum CoreError {
#[error("download not found: {id}")]
DownloadNotFound { id: DownloadId },
#[error("download target path is unavailable: {id}")]
DownloadTargetPathUnavailable { id: DownloadId },
#[error("favorite limit reached: {limit}")]
FavoriteLimitReached { limit: usize },
+23 -1
View File
@@ -1,4 +1,4 @@
use std::time::SystemTime;
use std::{path::PathBuf, time::SystemTime};
use ely_domain::{DownloadEntry, DownloadId, UrlText};
@@ -70,6 +70,17 @@ impl BrowserCore {
Ok(())
}
pub fn download_target_file_path(
&self,
download_id: &DownloadId,
) -> Result<PathBuf, CoreError> {
let entry = self.visible_download_entry(download_id)?;
entry
.target_file_path()
.map(PathBuf::from)
.ok_or_else(|| CoreError::DownloadTargetPathUnavailable { id: download_id.clone() })
}
pub(super) fn visible_downloads(&self) -> Vec<DownloadEntry> {
self.download_entries
.iter()
@@ -78,6 +89,17 @@ impl BrowserCore {
.collect()
}
fn visible_download_entry(
&self,
download_id: &DownloadId,
) -> Result<&DownloadEntry, CoreError> {
self.download_entries
.iter()
.filter(|entry| entry.profile_id() == &self.active_profile_id)
.find(|entry| entry.id() == download_id)
.ok_or_else(|| CoreError::DownloadNotFound { id: download_id.clone() })
}
fn download_entry_mut(
&mut self,
download_id: &DownloadId,
+43 -1
View File
@@ -1,4 +1,4 @@
use std::error::Error;
use std::{error::Error, path::Path};
use ely_browser_core::{BrowserCore, CoreError, InitialBrowserConfig};
use ely_domain::{
@@ -21,6 +21,7 @@ fn download_entries_stay_with_active_profile() -> Result<(), Box<dyn Error>> {
assert_eq!(default_snapshot.download_entries.len(), 1);
assert_eq!(default_snapshot.download_entries[0].file_name(), "report.pdf");
assert_eq!(default_snapshot.download_entries[0].profile_id(), &default_profile_id);
assert_eq!(default_snapshot.download_entries[0].target_file_path(), None);
core.create_profile("Personal", 0xf54e00, ProfileKind::Standard)?;
let personal_snapshot = core.snapshot()?;
@@ -82,10 +83,51 @@ fn records_active_profile_download_policy_on_started_entry() -> Result<(), Box<d
let entry = active_download(&core)?;
assert_eq!(snapshot.active_download_policy, policy);
assert_eq!(entry.destination(), policy.destination());
assert_eq!(entry.target_file_path(), Some(Path::new("/tmp/ely-work-downloads/installer.dmg")));
assert_eq!(entry.security(), &DownloadSecurity::DangerousExtension);
Ok(())
}
#[test]
fn returns_visible_download_target_file_path() -> Result<(), Box<dyn Error>> {
let mut core = BrowserCore::new(InitialBrowserConfig::ely_defaults()?)?;
let profile_id = core.active_tab()?.profile_id().clone();
core.set_profile_download_policy(
&profile_id,
DownloadPolicy::fixed_directory("/tmp/ely-work-downloads")?,
)?;
let download_id = core.record_download_started(
UrlText::parse("https://example.com/report.pdf")?,
"report.pdf",
Some(2048),
)?;
assert_eq!(
core.download_target_file_path(&download_id)?,
Path::new("/tmp/ely-work-downloads/report.pdf")
);
Ok(())
}
#[test]
fn rejects_target_path_for_ask_every_time_download() -> Result<(), Box<dyn Error>> {
let mut core = BrowserCore::new(InitialBrowserConfig::ely_defaults()?)?;
let download_id = core.record_download_started(
UrlText::parse("https://example.com/report.pdf")?,
"report.pdf",
Some(2048),
)?;
let error = match core.download_target_file_path(&download_id) {
Ok(_) => return Err("download target path should require a fixed destination".into()),
Err(error) => error,
};
assert_eq!(error, CoreError::DownloadTargetPathUnavailable { id: download_id });
Ok(())
}
#[test]
fn download_policies_stay_with_profile() -> Result<(), Box<dyn Error>> {
let mut core = BrowserCore::new(InitialBrowserConfig::ely_defaults()?)?;