aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader/rar_downloader.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 02:53:53 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 02:53:53 +0900
commita1c7e6908a26e10f6e1f23a51721664b5e2d838d (patch)
treec575c76f1b43359ed74913da4c6a2636643f1ba0 /crates/shirabe/src/downloader/rar_downloader.rs
parent7f606f36fef0c0467c3c0db3d0da33af486dae8a (diff)
downloadphp-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.gz
php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.zst
php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.zip
chore(style): cargo fmt
Diffstat (limited to 'crates/shirabe/src/downloader/rar_downloader.rs')
-rw-r--r--crates/shirabe/src/downloader/rar_downloader.rs35
1 files changed, 26 insertions, 9 deletions
diff --git a/crates/shirabe/src/downloader/rar_downloader.rs b/crates/shirabe/src/downloader/rar_downloader.rs
index 1aaa71c..1b4767f 100644
--- a/crates/shirabe/src/downloader/rar_downloader.rs
+++ b/crates/shirabe/src/downloader/rar_downloader.rs
@@ -1,19 +1,26 @@
//! ref: composer/src/Composer/Downloader/RarDownloader.php
-use anyhow::Result;
-use shirabe_external_packages::react::promise::promise_interface::PromiseInterface;
-use shirabe_php_shim::{class_exists, implode, RarArchive, RuntimeException, UnexpectedValueException};
use crate::downloader::archive_downloader::ArchiveDownloader;
use crate::package::package_interface::PackageInterface;
use crate::util::ini_helper::IniHelper;
use crate::util::platform::Platform;
+use anyhow::Result;
+use shirabe_external_packages::react::promise::promise_interface::PromiseInterface;
+use shirabe_php_shim::{
+ RarArchive, RuntimeException, UnexpectedValueException, class_exists, implode,
+};
pub struct RarDownloader {
inner: ArchiveDownloader,
}
impl RarDownloader {
- pub(crate) fn extract(&self, _package: &dyn PackageInterface, file: &str, path: &str) -> Result<Box<dyn PromiseInterface>> {
+ pub(crate) fn extract(
+ &self,
+ _package: &dyn PackageInterface,
+ file: &str,
+ path: &str,
+ ) -> Result<Box<dyn PromiseInterface>> {
let mut process_error: Option<String> = None;
if !Platform::is_windows() {
@@ -39,7 +46,10 @@ impl RarDownloader {
if !class_exists("RarArchive") {
let ini_message = IniHelper::get_message();
let error = if !Platform::is_windows() {
- format!("Could not decompress the archive, enable the PHP rar extension.\n{}", ini_message)
+ format!(
+ "Could not decompress the archive, enable the PHP rar extension.\n{}",
+ ini_message
+ )
} else {
format!(
"Could not decompress the archive, enable the PHP rar extension or install unrar.\n{}\n{}",
@@ -47,7 +57,11 @@ impl RarDownloader {
process_error.as_deref().unwrap_or(""),
)
};
- return Err(RuntimeException { message: error, code: 0 }.into());
+ return Err(RuntimeException {
+ message: error,
+ code: 0,
+ }
+ .into());
}
let rar_archive = RarArchive::open(file);
@@ -55,7 +69,8 @@ impl RarDownloader {
return Err(UnexpectedValueException {
message: format!("Could not open RAR archive: {}", file),
code: 0,
- }.into());
+ }
+ .into());
}
let rar_archive = rar_archive.unwrap();
@@ -64,7 +79,8 @@ impl RarDownloader {
return Err(RuntimeException {
message: "Could not retrieve RAR archive entries".to_string(),
code: 0,
- }.into());
+ }
+ .into());
}
for entry in entries.unwrap() {
@@ -72,7 +88,8 @@ impl RarDownloader {
return Err(RuntimeException {
message: "Could not extract entry".to_string(),
code: 0,
- }.into());
+ }
+ .into());
}
}