aboutsummaryrefslogtreecommitdiff
path: root/tool/src/add.rs
blob: 04328b262db7a4e82ce9ed5781f9574991ad860c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2025 metamuffin <metamuffin.org>
*/
use crate::cli::Action;
use dialoguer::{theme::ColorfulTheme, Confirm, FuzzySelect, Input};
use jellycommon::TraktKind;
use jellyimport::get_trakt;
use log::warn;
use std::{
    fmt::Display,
    path::{Path, PathBuf},
};
use tokio::{
    fs::{rename, OpenOptions},
    io::AsyncWriteExt,
};

pub async fn add(action: Action) -> anyhow::Result<()> {
    match action {
        Action::Add { media } => {
            let theme = ColorfulTheme::default();

            let search_kinds = if media.is_dir() {
                &[TraktKind::Show, TraktKind::Season]
            } else {
                &[TraktKind::Movie, TraktKind::Episode]
            };

            let (trakt_object, trakt_kind) = loop {
                let name: String = Input::with_theme(&theme)
                    .with_prompt("Search by title")
                    .default(path_to_query(&media))
                    .interact_text()
                    .unwrap();

                let trakt = get_trakt()?;

                let results = trakt.search(search_kinds, &name).await?;

                if results.is_empty() {
                    warn!("no search results");
                    continue;
                }

                let correct = FuzzySelect::with_theme(&theme)
                    .items(&results)
                    .default(0)
                    .with_prompt("Metadata Source")
                    .interact_opt()
                    .unwrap();

                if let Some(o) = correct {
                    break (results[o].inner.inner().to_owned(), results[o].r#type);
                }
            };

            if media.is_dir() {
                let flagspath = media.join("flags");
                let flag = format!(
                    "trakt={}:{}\n",
                    match trakt_kind {
                        TraktKind::Movie => "movie",
                        TraktKind::Show => "show",
                        TraktKind::Season => "season",
                        TraktKind::Episode => "episode",
                        _ => unreachable!(),
                    },
                    trakt_object.ids.trakt.unwrap()
                );

                if Confirm::with_theme(&theme)
                    .with_prompt(format!("Append {flag:?} to {flagspath:?}?"))
                    .default(true)
                    .interact()
                    .unwrap()
                {
                    OpenOptions::new()
                        .append(true)
                        .write(true)
                        .create(true)
                        .open(flagspath)
                        .await?
                        .write_all(flag.as_bytes())
                        .await?;
                }
            } else {
                let ext = media
                    .extension()
                    .map(|e| format!(".{}", e.to_string_lossy()))
                    .unwrap_or("mkv".to_string());

                let stem = media.file_name().unwrap().to_string_lossy().to_string();
                let stem = stem.split_once(".").unwrap_or((stem.as_str(), "")).0;
                let mut newpath = media.parent().unwrap().join(format!(
                    "{stem}.trakt-{}{ext}",
                    trakt_object.ids.trakt.unwrap()
                ));
                let mut n = 1;
                while newpath.exists() {
                    newpath = media
                        .parent()
                        .unwrap()
                        .join(format!("{stem}.alt-{n}{ext}",));
                    n += 1;
                }

                if Confirm::with_theme(&theme)
                    .with_prompt(format!("Rename {media:?} -> {newpath:?}?"))
                    .default(true)
                    .interact()
                    .unwrap()
                {
                    rename(media, newpath).await?;
                }
            }

            Ok(())
        }
        _ => unreachable!(),
    }
}

// fn validate_id(s: &String) -> anyhow::Result<()> {
//     if &make_id(s) == s {
//         Ok(())
//     } else {
//         bail!("invalid id")
//     }
// }
// fn make_id(s: &str) -> String {
//     let mut out = String::new();
//     for s in s.chars() {
//         match s {
//             'a'..='z' | '0'..='9' => out.push(s),
//             'A'..='Z' => out.push(s.to_ascii_lowercase()),
//             '-' | ' ' | '_' | ':' => out.push('-'),
//             _ => (),
//         }
//     }
//     out
// }

fn path_to_query(path: &Path) -> String {
    let stem = path.file_name().unwrap().to_string_lossy().to_string();
    let stem = stem.split_once(".").unwrap_or((stem.as_str(), "")).0;
    stem.replace("-", " ")
}

pub struct PathDisplay(PathBuf);
impl Display for PathDisplay {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str("/")?;
        f.write_str(self.0.to_str().unwrap())
    }
}