forked from Rigellute/spotify-tui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_config.rs
484 lines (441 loc) Β· 13.3 KB
/
user_config.rs
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
use crate::event::Key;
use anyhow::{anyhow, Result};
use dirs;
use serde::{Deserialize, Serialize};
use std::{
fs,
path::{Path, PathBuf},
};
use tui::style::Color;
const FILE_NAME: &str = "config.yml";
const CONFIG_DIR: &str = ".config";
const APP_CONFIG_DIR: &str = "spotify-tui";
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
pub struct UserTheme {
pub active: Option<String>,
pub banner: Option<String>,
pub error_border: Option<String>,
pub error_text: Option<String>,
pub hint: Option<String>,
pub hovered: Option<String>,
pub inactive: Option<String>,
pub playbar_background: Option<String>,
pub playbar_progress: Option<String>,
pub playbar_text: Option<String>,
pub selected: Option<String>,
pub text: Option<String>,
}
#[derive(Copy, Clone, Debug)]
pub struct Theme {
pub analysis_bar: Color,
pub analysis_bar_text: Color,
pub active: Color,
pub banner: Color,
pub error_border: Color,
pub error_text: Color,
pub hint: Color,
pub hovered: Color,
pub inactive: Color,
pub playbar_background: Color,
pub playbar_progress: Color,
pub playbar_text: Color,
pub selected: Color,
pub text: Color,
}
impl Default for Theme {
fn default() -> Self {
Theme {
analysis_bar: Color::LightCyan,
analysis_bar_text: Color::Black,
active: Color::Cyan,
banner: Color::LightCyan,
error_border: Color::Red,
error_text: Color::LightRed,
hint: Color::Yellow,
hovered: Color::Magenta,
inactive: Color::Gray,
playbar_background: Color::Black,
playbar_progress: Color::LightCyan,
playbar_text: Color::White,
selected: Color::LightCyan,
text: Color::White,
}
}
}
fn parse_key(key: String) -> Result<Key> {
fn get_single_char(string: &str) -> char {
match string.chars().next() {
Some(c) => c,
None => panic!(),
}
}
match key.len() {
1 => Ok(Key::Char(get_single_char(key.as_str()))),
_ => {
let sections: Vec<&str> = key.split('-').collect();
if sections.len() > 2 {
return Err(anyhow!(
"Shortcut can only have 2 keys, \"{}\" has {}",
key,
sections.len()
));
}
match sections[0].to_lowercase().as_str() {
"ctrl" => Ok(Key::Ctrl(get_single_char(sections[1]))),
"alt" => Ok(Key::Alt(get_single_char(sections[1]))),
"left" => Ok(Key::Left),
"right" => Ok(Key::Right),
"up" => Ok(Key::Up),
"down" => Ok(Key::Down),
"backspace" | "delete" => Ok(Key::Backspace),
"del" => Ok(Key::Delete),
"esc" | "escape" => Ok(Key::Esc),
"pageup" => Ok(Key::PageUp),
"pagedown" => Ok(Key::PageDown),
"space" => Ok(Key::Char(' ')),
_ => Err(anyhow!("The key \"{}\" is unknown.", sections[0])),
}
}
}
}
fn check_reserved_keys(key: Key) -> Result<()> {
let reserved = [
Key::Char('h'),
Key::Char('j'),
Key::Char('k'),
Key::Char('l'),
Key::Char('H'),
Key::Char('M'),
Key::Char('L'),
Key::Up,
Key::Down,
Key::Left,
Key::Right,
Key::Backspace,
Key::Enter,
];
for item in reserved.iter() {
if key == *item {
// TODO: Add pretty print for key
return Err(anyhow!(
"The key {:?} is reserved and cannot be remapped",
key
));
}
}
Ok(())
}
pub struct UserConfigPaths {
pub config_file_path: PathBuf,
}
#[derive(Default, Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct KeyBindingsString {
back: Option<String>,
jump_to_album: Option<String>,
jump_to_artist_album: Option<String>,
manage_devices: Option<String>,
decrease_volume: Option<String>,
increase_volume: Option<String>,
toggle_playback: Option<String>,
seek_backwards: Option<String>,
seek_forwards: Option<String>,
next_track: Option<String>,
previous_track: Option<String>,
help: Option<String>,
shuffle: Option<String>,
repeat: Option<String>,
search: Option<String>,
submit: Option<String>,
copy_song_url: Option<String>,
copy_album_url: Option<String>,
audio_analysis: Option<String>,
basic_view: Option<String>,
}
#[derive(Clone)]
pub struct KeyBindings {
pub back: Key,
pub jump_to_album: Key,
pub jump_to_artist_album: Key,
pub manage_devices: Key,
pub decrease_volume: Key,
pub increase_volume: Key,
pub toggle_playback: Key,
pub seek_backwards: Key,
pub seek_forwards: Key,
pub next_track: Key,
pub previous_track: Key,
pub help: Key,
pub shuffle: Key,
pub repeat: Key,
pub search: Key,
pub submit: Key,
pub copy_song_url: Key,
pub copy_album_url: Key,
pub audio_analysis: Key,
pub basic_view: Key,
}
#[derive(Default, Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct BehaviorConfigString {
pub seek_milliseconds: Option<u32>,
pub volume_increment: Option<u8>,
pub tick_rate_milliseconds: Option<u64>,
}
#[derive(Clone)]
pub struct BehaviorConfig {
pub seek_milliseconds: u32,
pub volume_increment: u8,
pub tick_rate_milliseconds: u64,
}
#[derive(Default, Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct UserConfigString {
keybindings: Option<KeyBindingsString>,
behavior: Option<BehaviorConfigString>,
theme: Option<UserTheme>,
}
#[derive(Clone)]
pub struct UserConfig {
pub keys: KeyBindings,
pub theme: Theme,
pub behavior: BehaviorConfig,
}
impl UserConfig {
pub fn new() -> UserConfig {
UserConfig {
theme: Default::default(),
keys: KeyBindings {
back: Key::Char('q'),
jump_to_album: Key::Char('a'),
jump_to_artist_album: Key::Char('A'),
manage_devices: Key::Char('d'),
decrease_volume: Key::Char('-'),
increase_volume: Key::Char('+'),
toggle_playback: Key::Char(' '),
seek_backwards: Key::Char('<'),
seek_forwards: Key::Char('>'),
next_track: Key::Char('n'),
previous_track: Key::Char('p'),
help: Key::Char('?'),
shuffle: Key::Ctrl('s'),
repeat: Key::Ctrl('r'),
search: Key::Char('/'),
submit: Key::Enter,
copy_song_url: Key::Char('c'),
copy_album_url: Key::Char('C'),
audio_analysis: Key::Char('v'),
basic_view: Key::Char('B'),
},
behavior: BehaviorConfig {
seek_milliseconds: 5 * 1000,
volume_increment: 10,
tick_rate_milliseconds: 250,
},
}
}
pub fn get_or_build_paths(&self) -> Result<UserConfigPaths> {
match dirs::home_dir() {
Some(home) => {
let path = Path::new(&home);
let home_config_dir = path.join(CONFIG_DIR);
let app_config_dir = home_config_dir.join(APP_CONFIG_DIR);
if !home_config_dir.exists() {
fs::create_dir(&home_config_dir)?;
}
if !app_config_dir.exists() {
fs::create_dir(&app_config_dir)?;
}
let config_file_path = &app_config_dir.join(FILE_NAME);
let paths = UserConfigPaths {
config_file_path: config_file_path.to_path_buf(),
};
Ok(paths)
}
None => Err(anyhow!("No $HOME directory found for client config")),
}
}
pub fn load_keybindings(&mut self, keybindings: KeyBindingsString) -> Result<()> {
macro_rules! to_keys {
($name: ident) => {
if let Some(key_string) = keybindings.$name {
self.keys.$name = parse_key(key_string)?;
check_reserved_keys(self.keys.$name)?;
}
};
};
to_keys!(back);
to_keys!(jump_to_album);
to_keys!(jump_to_artist_album);
to_keys!(manage_devices);
to_keys!(decrease_volume);
to_keys!(increase_volume);
to_keys!(toggle_playback);
to_keys!(seek_backwards);
to_keys!(seek_forwards);
to_keys!(next_track);
to_keys!(previous_track);
to_keys!(help);
to_keys!(shuffle);
to_keys!(repeat);
to_keys!(search);
to_keys!(submit);
to_keys!(copy_song_url);
to_keys!(copy_album_url);
to_keys!(audio_analysis);
to_keys!(basic_view);
Ok(())
}
pub fn load_theme(&mut self, theme: UserTheme) -> Result<()> {
macro_rules! to_theme_item {
($name: ident) => {
if let Some(theme_item) = theme.$name {
self.theme.$name = parse_theme_item(&theme_item)?;
}
};
};
to_theme_item!(active);
to_theme_item!(banner);
to_theme_item!(error_border);
to_theme_item!(error_text);
to_theme_item!(hint);
to_theme_item!(hovered);
to_theme_item!(inactive);
to_theme_item!(playbar_background);
to_theme_item!(playbar_progress);
to_theme_item!(playbar_text);
to_theme_item!(selected);
to_theme_item!(text);
Ok(())
}
pub fn load_behaviorconfig(&mut self, behavior_config: BehaviorConfigString) -> Result<()> {
if let Some(behavior_string) = behavior_config.seek_milliseconds {
self.behavior.seek_milliseconds = behavior_string;
}
if let Some(behavior_string) = behavior_config.volume_increment {
if behavior_string > 100 {
return Err(anyhow!(
"Volume increment must be between 0 and 100, is {}",
behavior_string,
));
}
self.behavior.volume_increment = behavior_string;
}
if let Some(tick_rate) = behavior_config.tick_rate_milliseconds {
if tick_rate >= 1000 {
return Err(anyhow!("Tick rate must be below 1000"));
} else {
self.behavior.tick_rate_milliseconds = tick_rate;
}
}
Ok(())
}
pub fn load_config(&mut self) -> Result<()> {
let paths = self.get_or_build_paths()?;
if paths.config_file_path.exists() {
let config_string = fs::read_to_string(&paths.config_file_path)?;
// serde fails if file is empty
if config_string.trim().is_empty() {
return Ok(());
}
let config_yml: UserConfigString = serde_yaml::from_str(&config_string)?;
if let Some(keybindings) = config_yml.keybindings.clone() {
self.load_keybindings(keybindings)?;
}
if let Some(behavior) = config_yml.behavior {
self.load_behaviorconfig(behavior)?;
}
if let Some(theme) = config_yml.theme {
self.load_theme(theme)?;
}
Ok(())
} else {
Ok(())
}
}
}
fn parse_theme_item(theme_item: &str) -> Result<Color> {
let color = match theme_item {
"Reset" => Color::Reset,
"Black" => Color::Black,
"Red" => Color::Red,
"Green" => Color::Green,
"Yellow" => Color::Yellow,
"Blue" => Color::Blue,
"Magenta" => Color::Magenta,
"Cyan" => Color::Cyan,
"Gray" => Color::Gray,
"DarkGray" => Color::DarkGray,
"LightRed" => Color::LightRed,
"LightGreen" => Color::LightGreen,
"LightYellow" => Color::LightYellow,
"LightBlue" => Color::LightBlue,
"LightMagenta" => Color::LightMagenta,
"LightCyan" => Color::LightCyan,
"White" => Color::White,
_ => {
let colors = theme_item.split(',').collect::<Vec<&str>>();
if let (Some(r), Some(g), Some(b)) = (colors.get(0), colors.get(1), colors.get(2)) {
Color::Rgb(
r.trim().parse::<u8>()?,
g.trim().parse::<u8>()?,
b.trim().parse::<u8>()?,
)
} else {
println!("Unexpected color {}", theme_item);
Color::Black
}
}
};
Ok(color)
}
#[cfg(test)]
mod tests {
#[test]
fn test_parse_key() {
use super::parse_key;
use crate::event::Key;
assert_eq!(parse_key(String::from("j")).unwrap(), Key::Char('j'));
assert_eq!(parse_key(String::from("J")).unwrap(), Key::Char('J'));
assert_eq!(parse_key(String::from("ctrl-j")).unwrap(), Key::Ctrl('j'));
assert_eq!(parse_key(String::from("ctrl-J")).unwrap(), Key::Ctrl('J'));
assert_eq!(parse_key(String::from("-")).unwrap(), Key::Char('-'));
assert_eq!(parse_key(String::from("esc")).unwrap(), Key::Esc);
assert_eq!(parse_key(String::from("del")).unwrap(), Key::Delete);
}
#[test]
fn parse_theme_item_test() {
use super::parse_theme_item;
use tui::style::Color;
assert_eq!(parse_theme_item("Reset").unwrap(), Color::Reset);
assert_eq!(parse_theme_item("Black").unwrap(), Color::Black);
assert_eq!(parse_theme_item("Red").unwrap(), Color::Red);
assert_eq!(parse_theme_item("Green").unwrap(), Color::Green);
assert_eq!(parse_theme_item("Yellow").unwrap(), Color::Yellow);
assert_eq!(parse_theme_item("Blue").unwrap(), Color::Blue);
assert_eq!(parse_theme_item("Magenta").unwrap(), Color::Magenta);
assert_eq!(parse_theme_item("Cyan").unwrap(), Color::Cyan);
assert_eq!(parse_theme_item("Gray").unwrap(), Color::Gray);
assert_eq!(parse_theme_item("DarkGray").unwrap(), Color::DarkGray);
assert_eq!(parse_theme_item("LightRed").unwrap(), Color::LightRed);
assert_eq!(parse_theme_item("LightGreen").unwrap(), Color::LightGreen);
assert_eq!(parse_theme_item("LightYellow").unwrap(), Color::LightYellow);
assert_eq!(parse_theme_item("LightBlue").unwrap(), Color::LightBlue);
assert_eq!(
parse_theme_item("LightMagenta").unwrap(),
Color::LightMagenta
);
assert_eq!(parse_theme_item("LightCyan").unwrap(), Color::LightCyan);
assert_eq!(parse_theme_item("White").unwrap(), Color::White);
assert_eq!(
parse_theme_item("23, 43, 45").unwrap(),
Color::Rgb(23, 43, 45)
);
}
#[test]
fn test_reserved_key() {
use super::check_reserved_keys;
use crate::event::Key;
assert!(
check_reserved_keys(Key::Enter).is_err(),
"Enter key should be reserved"
);
}
}