Reuse File object in reading config from path
This commit is contained in:
parent
93d90ba90b
commit
87001a9850
1 changed files with 14 additions and 11 deletions
27
src/main.rs
27
src/main.rs
|
@ -3,7 +3,7 @@
|
|||
use std::collections::{BTreeMap, HashMap, HashSet};
|
||||
use std::fmt::{Debug, Display};
|
||||
use std::fs::File;
|
||||
use std::io::{self, IsTerminal};
|
||||
use std::io::{self, BufReader, IsTerminal};
|
||||
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
||||
use std::os::unix::fs::PermissionsExt;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
@ -514,7 +514,7 @@ fn load_config_from_path<P: AsRef<Path>>(path: P) -> Option<Config> {
|
|||
found = format!("{:o}", current_mode),
|
||||
expected = "600",
|
||||
"File permissions too broad! Your GLOBAL Cloudflare API key is accessible to all users on the system!"
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
Err(e) => {
|
||||
|
@ -522,16 +522,19 @@ fn load_config_from_path<P: AsRef<Path>>(path: P) -> Option<Config> {
|
|||
}
|
||||
}
|
||||
|
||||
match std::fs::read_to_string(&path) {
|
||||
Ok(data) => match toml::from_str(&data) {
|
||||
Ok(config) => return Some(config),
|
||||
let data = match std::io::read_to_string(BufReader::new(file)) {
|
||||
Ok(data) => data,
|
||||
Err(e) => {
|
||||
warn!("Failed to read config file: {e}");
|
||||
return None;
|
||||
}
|
||||
};
|
||||
|
||||
match toml::from_str(&data) {
|
||||
Ok(config) => Some(config),
|
||||
Err(err) => {
|
||||
debug!("Failed to parse config file: {err}");
|
||||
}
|
||||
},
|
||||
Err(err) => {
|
||||
debug!("Unable to read the config file: {err}",);
|
||||
}
|
||||
}
|
||||
warn!("Failed to parse config file: {err}");
|
||||
None
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue