summaryrefslogtreecommitdiffstats
path: root/src/whoami.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/whoami.rs')
-rw-r--r--src/whoami.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/whoami.rs b/src/whoami.rs
new file mode 100644
index 0000000..3d412d4
--- /dev/null
+++ b/src/whoami.rs
@@ -0,0 +1,29 @@
+use clap::{self, Args};
+use eyre::{Context, OptionExt};
+
+use crate::{repo::RepoInfo, KeyInfo};
+
+#[derive(Args, Clone, Debug)]
+pub struct WhoAmICommand {
+ #[clap(long, short)]
+ remote: Option<String>,
+}
+
+impl WhoAmICommand {
+ pub async fn run(self, keys: &mut KeyInfo, host_name: Option<&str>) -> eyre::Result<()> {
+ let url = RepoInfo::get_current(host_name, None, self.remote.as_deref(), &keys)
+ .wrap_err("could not find host, try specifying with --host")?
+ .host_url()
+ .clone();
+ let name = keys.get_login(&url).ok_or_eyre("not logged in")?.username();
+ let host = url
+ .host_str()
+ .ok_or_eyre("instance url does not have host")?;
+ if url.path() == "/" || url.path().is_empty() {
+ println!("currently signed in to {name}@{host}");
+ } else {
+ println!("currently signed in to {name}@{host}{}", url.path());
+ };
+ Ok(())
+ }
+}