use anyhow::Result;
use crate::api;
use crate::cli;
use crate::config::Config;
impl cli::Auth {
pub fn run(self) -> Result<()> {
let mut config = Config::new(self.server_url.clone())?;
let server_url = config.get_server_url()?;
let server_hostname = server_url.host().unwrap();
let auth_url = api::get_auth_url(&mut config)?;
println!("Open the following URL in a web browser to authenticate this CLI with your {server_hostname} user account:\n");
println!("{auth_url}\n");
println!("This will associate all recordings uploaded from this machine with your account (including past uploads), and enable public live streaming via {server_hostname}.");
Ok(())
}
}