mirror of
https://github.com/veeso/termscp.git
synced 2026-09-17 09:35:57 -07:00
172 lines
5.3 KiB
Rust
172 lines
5.3 KiB
Rust
//! ## FileTransfer
|
|
//!
|
|
//! `filetransfer` is the module which provides the file transfer protocols and remotefs builders
|
|
|
|
mod host_bridge_builder;
|
|
pub mod params;
|
|
mod remotefs_builder;
|
|
|
|
// -- export types
|
|
pub use host_bridge_builder::HostBridgeBuilder;
|
|
pub use params::{FileTransferParams, HostBridgeParams, ProtocolParams};
|
|
pub use remotefs_builder::RemoteFsBuilder;
|
|
|
|
/// This enum defines the different transfer protocol available in termscp
|
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
|
|
pub enum FileTransferProtocol {
|
|
AwsS3,
|
|
Ftp(bool), // Bool is for secure (true => ftps)
|
|
Kube,
|
|
Scp,
|
|
Sftp,
|
|
Smb,
|
|
WebDAV,
|
|
}
|
|
|
|
// Traits
|
|
|
|
impl std::fmt::Display for FileTransferProtocol {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(
|
|
f,
|
|
"{}",
|
|
match self {
|
|
FileTransferProtocol::AwsS3 => "S3",
|
|
FileTransferProtocol::Ftp(secure) => match secure {
|
|
true => "FTPS",
|
|
false => "FTP",
|
|
},
|
|
FileTransferProtocol::Kube => "KUBE",
|
|
FileTransferProtocol::Scp => "SCP",
|
|
FileTransferProtocol::Sftp => "SFTP",
|
|
FileTransferProtocol::Smb => "SMB",
|
|
FileTransferProtocol::WebDAV => "WEBDAV",
|
|
}
|
|
)
|
|
}
|
|
}
|
|
|
|
impl std::str::FromStr for FileTransferProtocol {
|
|
type Err = String;
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
match s.to_ascii_uppercase().as_str() {
|
|
"FTP" => Ok(FileTransferProtocol::Ftp(false)),
|
|
"FTPS" => Ok(FileTransferProtocol::Ftp(true)),
|
|
"KUBE" => Ok(FileTransferProtocol::Kube),
|
|
"S3" => Ok(FileTransferProtocol::AwsS3),
|
|
"SCP" => Ok(FileTransferProtocol::Scp),
|
|
"SFTP" => Ok(FileTransferProtocol::Sftp),
|
|
"SMB" => Ok(FileTransferProtocol::Smb),
|
|
"WEBDAV" | "HTTP" | "HTTPS" => Ok(FileTransferProtocol::WebDAV),
|
|
_ => Err(s.to_string()),
|
|
}
|
|
}
|
|
}
|
|
|
|
// Tests
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
|
|
use std::str::FromStr;
|
|
use std::string::ToString;
|
|
|
|
use pretty_assertions::assert_eq;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_filetransfer_mod_protocol() {
|
|
assert_eq!(
|
|
FileTransferProtocol::Ftp(true),
|
|
FileTransferProtocol::Ftp(true)
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::Ftp(false),
|
|
FileTransferProtocol::Ftp(false)
|
|
);
|
|
// From str
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("FTPS").ok().unwrap(),
|
|
FileTransferProtocol::Ftp(true)
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("ftps").ok().unwrap(),
|
|
FileTransferProtocol::Ftp(true)
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("FTP").ok().unwrap(),
|
|
FileTransferProtocol::Ftp(false)
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("ftp").ok().unwrap(),
|
|
FileTransferProtocol::Ftp(false)
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("SFTP").ok().unwrap(),
|
|
FileTransferProtocol::Sftp
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("sftp").ok().unwrap(),
|
|
FileTransferProtocol::Sftp
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("SCP").ok().unwrap(),
|
|
FileTransferProtocol::Scp
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("scp").ok().unwrap(),
|
|
FileTransferProtocol::Scp
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("kube").ok().unwrap(),
|
|
FileTransferProtocol::Kube
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("KUBE").ok().unwrap(),
|
|
FileTransferProtocol::Kube
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("SMB").ok().unwrap(),
|
|
FileTransferProtocol::Smb
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("smb").ok().unwrap(),
|
|
FileTransferProtocol::Smb
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("S3").ok().unwrap(),
|
|
FileTransferProtocol::AwsS3
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::from_str("s3").ok().unwrap(),
|
|
FileTransferProtocol::AwsS3
|
|
);
|
|
// Error
|
|
assert!(FileTransferProtocol::from_str("dummy").is_err());
|
|
// To String
|
|
assert_eq!(
|
|
FileTransferProtocol::Ftp(true).to_string(),
|
|
String::from("FTPS")
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::Ftp(false).to_string(),
|
|
String::from("FTP")
|
|
);
|
|
assert_eq!(
|
|
FileTransferProtocol::WebDAV.to_string(),
|
|
String::from("WEBDAV")
|
|
);
|
|
assert_eq!(FileTransferProtocol::Scp.to_string(), String::from("SCP"));
|
|
assert_eq!(FileTransferProtocol::Sftp.to_string(), String::from("SFTP"));
|
|
assert_eq!(FileTransferProtocol::AwsS3.to_string(), String::from("S3"));
|
|
assert_eq!(FileTransferProtocol::Smb.to_string(), String::from("SMB"));
|
|
assert_eq!(
|
|
FileTransferProtocol::WebDAV.to_string(),
|
|
String::from("WEBDAV")
|
|
);
|
|
assert_eq!(FileTransferProtocol::Kube.to_string(), String::from("KUBE"));
|
|
}
|
|
}
|