All checks were successful
Rust Build / Check (pull_request) Successful in 28s
Rust Build / Test Suite (pull_request) Successful in 27s
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Clippy (pull_request) Successful in 31s
Rust Build / build (pull_request) Successful in 30s
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
use std::io::Read;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
pub struct CoverArt {
|
|
pub id: uuid::Uuid,
|
|
pub title: String,
|
|
pub path: String,
|
|
pub data: Vec<u8>,
|
|
}
|
|
|
|
pub mod init {
|
|
use crate::coverart::CoverArt;
|
|
|
|
pub fn init_coverart_only_path(path: String) -> CoverArt {
|
|
CoverArt {
|
|
id: uuid::Uuid::nil(),
|
|
title: String::new(),
|
|
path: path.clone(),
|
|
data: Vec::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl CoverArt {
|
|
pub fn to_data(&self) -> Result<Vec<u8>, std::io::Error> {
|
|
let path: &String = &self.path;
|
|
let mut file = std::fs::File::open(path)?;
|
|
let mut buffer = Vec::new();
|
|
match file.read_to_end(&mut buffer) {
|
|
Ok(_) => Ok(buffer),
|
|
Err(err) => Err(err),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use crate::coverart;
|
|
|
|
#[test]
|
|
fn test_cover_art_image() {
|
|
let path: String = String::from("somepath");
|
|
let coverart = coverart::init::init_coverart_only_path(path.clone());
|
|
|
|
assert_eq!(path, coverart.path);
|
|
}
|
|
}
|