build.rs/src/cli.rs

42 lines
1.2 KiB
Rust
Raw Normal View History

use std::env;
2020-11-25 22:59:39 +00:00
use std::path::PathBuf;
use structopt::StructOpt;
2021-01-04 15:25:47 +00:00
// To get effective user id (EUID) so that setuid works
use users::{get_effective_uid,get_user_by_uid};
// For home directory
use users::os::unix::UserExt;
2020-05-01 10:48:22 +00:00
#[derive(Debug, StructOpt)]
2020-11-25 22:59:39 +00:00
#[structopt(
2020-12-01 17:19:12 +00:00
name = "forgebuild",
2020-11-25 22:59:39 +00:00
about = "Update your repositories and trigger tasks"
)]
2020-05-01 10:48:22 +00:00
pub struct Cli {
#[structopt(short = "f", long = "force")]
2020-05-01 11:19:33 +00:00
pub force: bool,
2020-05-01 10:48:22 +00:00
#[structopt(short = "b", long = "basedir")]
pub basedir: Option<String>,
2020-05-01 10:48:22 +00:00
//#[structopt(def)]
2020-05-01 11:19:33 +00:00
pub tasks: Vec<String>,
2020-05-01 10:48:22 +00:00
}
impl Cli {
2020-11-28 10:50:56 +00:00
/// Returns a PathBuf to the basedir. If it's a relative link,
/// it's not expanded here! Panics if no basedir is provided and $HOME isn't defined
pub fn basedir(&self) -> PathBuf {
if let Some(basedir) = &self.basedir {
// Returns an error when the path doesn't exist
2020-11-25 22:59:39 +00:00
PathBuf::from(basedir)
} else {
2021-01-04 15:25:47 +00:00
let owner = get_effective_uid();
let mut home_path = get_user_by_uid(owner).expect("Failed owner profile")
.home_dir().to_path_buf();
home_path.push(".forgebuild");
home_path
}
}
}