mirror of
https://github.com/SinTan1729/movie-rename.git
synced 2024-12-26 12:18:37 -06:00
Refactor movie processing
This commit is contained in:
parent
8e07db9156
commit
17754456ce
1 changed files with 42 additions and 37 deletions
83
src/main.rs
83
src/main.rs
|
@ -109,9 +109,51 @@ fn main() {
|
|||
continue;
|
||||
}
|
||||
|
||||
// Process the filename for movie entries
|
||||
let (mut extension, movie_list) = process_movie(&filename, &tmdb, pattern);
|
||||
|
||||
// Choose from the possible entries
|
||||
let mut menu = youchoose::Menu::new(movie_list.iter())
|
||||
.preview(display)
|
||||
.preview_label(filename.to_string());
|
||||
let choice = menu.show()[0];
|
||||
|
||||
// Handle the case for subtitle files
|
||||
if ["srt", "ssa"].contains(&extension.as_str()) {
|
||||
let languages = Vec::from(["en", "hi", "bn", "de", "fr", "sp", "ja", "n/a"]);
|
||||
let mut lang_menu = youchoose::Menu::new(languages.iter());
|
||||
let lang_choice = lang_menu.show()[0];
|
||||
if languages[lang_choice] != "none" {
|
||||
extension = format!("{}.{}", languages[lang_choice], extension);
|
||||
}
|
||||
}
|
||||
|
||||
// Create the new name
|
||||
let mut new_name_vec = vec![
|
||||
movie_list[choice].rename_format(pattern.to_string()),
|
||||
extension,
|
||||
];
|
||||
new_name_vec.retain(|x| !x.is_empty());
|
||||
let new_name = new_name_vec.join(".");
|
||||
|
||||
// Process the renaming
|
||||
if filename == new_name {
|
||||
println!("{} already has correct name.", filename);
|
||||
} else {
|
||||
println!("{} -> {}", filename, new_name);
|
||||
// Only do the rename of --dry-run isn't passed
|
||||
if dry_run == false {
|
||||
println!("Renaming...");
|
||||
fs::rename(filename, new_name).expect("Unable to rename file.");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Function to process movie entries
|
||||
fn process_movie(filename: &String, tmdb: &TMDb, pattern: &str) -> (String, Vec<MovieEntry>) {
|
||||
// Parse the filename for metadata
|
||||
let metadata = Metadata::from(filename.as_str()).expect("Could not parse filename");
|
||||
|
||||
// Search using the TMDb API
|
||||
let results = tmdb
|
||||
.search()
|
||||
|
@ -120,9 +162,7 @@ fn main() {
|
|||
.execute()
|
||||
.unwrap()
|
||||
.results;
|
||||
|
||||
let mut movie_list: Vec<MovieEntry> = Vec::new();
|
||||
|
||||
// Create movie entry from the result
|
||||
for result in results {
|
||||
let mut movie_details = MovieEntry::from(result);
|
||||
|
@ -145,42 +185,7 @@ fn main() {
|
|||
}
|
||||
movie_list.push(movie_details);
|
||||
}
|
||||
|
||||
// Choose from the possible entries
|
||||
let mut menu = youchoose::Menu::new(movie_list.iter())
|
||||
.preview(display)
|
||||
.preview_label(filename.to_string());
|
||||
let choice = menu.show()[0];
|
||||
|
||||
// Handle the case for subtitle files
|
||||
let mut extension = metadata.extension().unwrap_or("").to_string();
|
||||
if ["srt", "ssa"].contains(&extension.as_str()) {
|
||||
let languages = Vec::from(["en", "hi", "bn", "de", "fr", "sp", "ja", "n/a"]);
|
||||
let mut lang_menu = youchoose::Menu::new(languages.iter());
|
||||
let lang_choice = lang_menu.show()[0];
|
||||
if languages[lang_choice] != "none" {
|
||||
extension = format!("{}.{}", languages[lang_choice], extension);
|
||||
}
|
||||
}
|
||||
|
||||
// Create the new name
|
||||
let mut new_name_vec = vec![
|
||||
movie_list[choice].rename_format(pattern.to_string()),
|
||||
extension,
|
||||
];
|
||||
new_name_vec.retain(|x| !x.is_empty());
|
||||
let new_name = new_name_vec.join(".");
|
||||
if filename == new_name {
|
||||
println!("{} already has correct name.", filename);
|
||||
} else {
|
||||
println!("{} -> {}", filename, new_name);
|
||||
// Only do the rename of --dry-run isn't passed
|
||||
if dry_run == false {
|
||||
println!("Renaming...");
|
||||
fs::rename(filename, new_name).expect("Unable to rename file.");
|
||||
}
|
||||
}
|
||||
}
|
||||
(metadata.extension().unwrap_or("").to_string(), movie_list)
|
||||
}
|
||||
|
||||
// Display function for preview in menu
|
||||
|
|
Loading…
Reference in a new issue