Compare commits

..

5 Commits

Author SHA1 Message Date
02631fc14c tsk-45: Code formatting
All checks were successful
Rust Build / Rustfmt (pull_request) Successful in 42s
Rust Build / build (pull_request) Successful in 1m8s
Rust Build / Clippy (pull_request) Successful in 1m17s
Rust Build / Test Suite (pull_request) Successful in 59s
Rust Build / Check (pull_request) Successful in 45s
2025-10-21 20:29:13 -04:00
25c85212ca tsk-45: Changed types of functions 2025-10-21 20:28:50 -04:00
250a009fad tsk-45: More changes 2025-10-21 20:21:07 -04:00
fef43b9799 tsk-45: Some changes 2025-10-21 20:08:41 -04:00
fa5203013c tsk-45: Adding functionality for itdentifying Song 2025-10-21 20:02:19 -04:00
3 changed files with 59 additions and 8 deletions

View File

@@ -1,8 +1,16 @@
/// Gets the file type of a CoverArt given it's path
pub fn file_type_from_filepath(filepath: &str) -> Result<String, std::io::Error> {
pub fn file_type_from_filepath(
filepath: &str,
) -> Result<crate::detection::FileType, std::io::Error> {
match imghdr::from_file(filepath) {
Ok(Some(imghdr::Type::Jpeg)) => Ok(String::from("jpeg")),
Ok(Some(imghdr::Type::Png)) => Ok(String::from("png")),
Ok(Some(imghdr::Type::Jpeg)) => Ok(crate::detection::FileType {
mime: String::from("image/jpeg"),
file_type: String::from(constants::JPEG_TYPE),
}),
Ok(Some(imghdr::Type::Png)) => Ok(crate::detection::FileType {
mime: String::from("image/png"),
file_type: String::from(constants::PNG_TYPE),
}),
Ok(None) => Err(std::io::Error::other("Image file not supported")),
Err(err) => Err(err),
_ => Err(std::io::Error::other("Image file not supported")),
@@ -10,15 +18,27 @@ pub fn file_type_from_filepath(filepath: &str) -> Result<String, std::io::Error>
}
/// Gets the file type of a CoverArt given it's data
pub fn file_type_from_data(data: &Vec<u8>) -> Result<String, std::io::Error> {
pub fn file_type_from_data(data: &Vec<u8>) -> Result<crate::detection::FileType, std::io::Error> {
match imghdr::from_bytes(data) {
Some(imghdr::Type::Jpeg) => Ok(String::from("jpeg")),
Some(imghdr::Type::Png) => Ok(String::from("png")),
Some(imghdr::Type::Jpeg) => Ok(crate::detection::FileType {
mime: String::from("image/jpeg"),
file_type: String::from(constants::JPEG_TYPE),
}),
Some(imghdr::Type::Png) => Ok(crate::detection::FileType {
mime: String::from("image/png"),
file_type: String::from(constants::PNG_TYPE),
}),
None => Err(std::io::Error::other("Image file not supported")),
_ => Err(std::io::Error::other("Image file not supported")),
}
}
pub mod constants {
pub const PNG_TYPE: &str = "png";
pub const JPEG_TYPE: &str = "jpeg";
pub const JPG_TYPE: &str = "jpg";
}
#[cfg(test)]
mod tests {
#[test]
@@ -30,7 +50,8 @@ mod tests {
match super::file_type_from_filepath(&filepath) {
Ok(filetype) => {
assert_eq!(
filetype, "png",
filetype.file_type,
super::constants::PNG_TYPE,
"The file type of the CoverArt should have been png"
);
}
@@ -50,7 +71,8 @@ mod tests {
match super::file_type_from_data(&data) {
Ok(filetype) => {
assert_eq!(
filetype, "png",
filetype.file_type,
super::constants::PNG_TYPE,
"The file type of the CoverArt should have been png"
);
}

View File

@@ -1 +1,7 @@
pub mod coverart;
pub mod song;
pub struct FileType {
pub mime: String,
pub file_type: String,
}

23
src/detection/song.rs Normal file
View File

@@ -0,0 +1,23 @@
pub fn file_type_from_filepath(
filepath: &str,
) -> Result<crate::detection::FileType, std::io::Error> {
match infer::get_from_path(filepath) {
Ok(Some(kind)) => {
let mime = kind.mime_type();
if mime == "audio/x-flac" {
Ok(crate::detection::FileType {
mime: String::from(mime),
file_type: String::from(constants::FLAC_TYPE),
})
} else {
Err(std::io::Error::other("Unsupported file type"))
}
}
Ok(None) => Err(std::io::Error::other("File type not determined")),
Err(err) => Err(err),
}
}
pub mod constants {
pub const FLAC_TYPE: &str = "flac";
}