]>
Commit | Line | Data |
---|---|---|
44e7b4de | 1 | mod configuration; |
738ec06d RBR |
2 | mod lyrics_engine; |
3 | mod sources; | |
4 | ||
5 | use std::io::{Result, Error, ErrorKind::Other}; | |
44e7b4de | 6 | use clap::Parser; |
738ec06d | 7 | |
44e7b4de | 8 | use configuration::Configuration; |
738ec06d RBR |
9 | use sources::{enable, disable, get_track, reset, list}; |
10 | use lyrics_engine::print_lyrics; | |
11 | ||
12 | #[derive(Parser, Debug)] | |
13 | #[command(version, about, long_about = None)] | |
14 | struct Arguments { | |
15 | ||
16 | // Positional Arguments | |
17 | /// Specify the artist. | |
18 | artist: Option<String>, | |
19 | ||
20 | /// Specify the artist. | |
21 | track_name: Option<String>, | |
22 | ||
23 | /// Show title of track if present | |
24 | #[arg(short = 't', long)] | |
25 | show_title: bool, | |
26 | ||
27 | /// Lists all sources | |
28 | #[arg(short, long)] | |
29 | list_sources: bool, | |
30 | ||
31 | /// Enables a source | |
32 | #[arg(short, long, value_name = "SOURCE")] | |
33 | enable_source: Option<String>, | |
34 | ||
35 | #[arg(short, long, value_name = "SOURCE")] | |
36 | disable_source: Option<String>, | |
37 | ||
38 | #[arg(short, long, value_name = "SOURCE")] | |
39 | reset_source: Option<String>, | |
40 | } | |
41 | ||
42 | pub struct Track { | |
43 | pub name: String, | |
44 | pub artist: String | |
45 | } | |
46 | ||
47 | #[tokio::main] | |
48 | async fn main() -> Result<()> { | |
44e7b4de | 49 | let mut configuration = Configuration::new(); |
738ec06d RBR |
50 | let arguments = Arguments::parse(); |
51 | ||
52 | if arguments.list_sources { | |
44e7b4de RBR |
53 | let sources = list(); |
54 | for source in sources { | |
55 | print!("{}", source); | |
56 | if configuration.is_enabled(&source) { | |
57 | print!(" (enabled)"); | |
58 | } | |
59 | println!(""); | |
60 | } | |
61 | return Ok(()); | |
738ec06d RBR |
62 | } |
63 | ||
64 | if let Some(source_name) = arguments.enable_source { | |
44e7b4de RBR |
65 | if !configuration.is_enabled(&source_name) { |
66 | enable(&source_name)?; | |
67 | } | |
68 | return configuration.enable_source(&source_name); | |
738ec06d RBR |
69 | } |
70 | ||
71 | if let Some(source_name) = arguments.disable_source { | |
44e7b4de RBR |
72 | if configuration.is_enabled(&source_name) { |
73 | disable(&source_name)?; | |
74 | } | |
75 | return configuration.disable_source(&source_name); | |
738ec06d RBR |
76 | } |
77 | ||
78 | if let Some(source_name) = arguments.reset_source { | |
44e7b4de | 79 | return reset(&source_name); |
738ec06d RBR |
80 | } |
81 | ||
82 | let current_track: Track; | |
83 | if let Some(artist) = arguments.artist { | |
84 | current_track = Track { | |
85 | name: arguments.track_name.unwrap_or("".to_string()), | |
86 | artist: artist | |
87 | }; | |
88 | } else { | |
89 | current_track = get_track() | |
90 | .ok_or_else(|| Error::new(Other, "No Artist/Song could be found :("))? | |
91 | } | |
92 | ||
93 | print_lyrics(current_track, arguments.show_title).await | |
94 | } |