Quellcode durchsuchen

load the github token from ~/.gitconfig

Niko Matsakis vor 4 Jahren
Ursprung
Commit
ced6fae783
2 geänderte Dateien mit 27 neuen und 1 gelöschten Zeilen
  1. 3 0
      README.md
  2. 24 1
      src/github.rs

+ 3 - 0
README.md

@@ -11,6 +11,9 @@ if you find something helpful!
 
 The `GITHUB_WEBHOOK_SECRET` and `GITHUB_API_TOKEN` environment variables need to be set.
 
+If `GITHUB_API_TOKEN` is not set, the token can also be stored in `~/.gitconfig` in the
+`github.oauth-token` setting.
+
 ## License
 
 Triagebot is distributed under the terms of both the MIT license and the

+ 24 - 1
src/github.rs

@@ -866,7 +866,30 @@ impl RequestSend for RequestBuilder {
 /// Finds the token in the user's environment, panicking if no suitable token
 /// can be found.
 pub fn default_token_from_env() -> String {
-    std::env::var("GITHUB_API_TOKEN").expect("Missing GITHUB_API_TOKEN")
+    match std::env::var("GITHUB_API_TOKEN") {
+        Ok(v) => return v,
+        Err(_) => (),
+    }
+
+    match get_token_from_git_config() {
+        Ok(v) => return v,
+        Err(_) => (),
+    }
+
+    panic!("could not find token in GITHUB_API_TOKEN or .gitconfig/github.oath-token")
+}
+
+fn get_token_from_git_config() -> anyhow::Result<String> {
+    let output = std::process::Command::new("git")
+        .arg("config")
+        .arg("--get")
+        .arg("github.oauth-token")
+        .output()?;
+    if !output.status.success() {
+        anyhow::bail!("error received executing `git`: {:?}", output.status);
+    }
+    let git_token = String::from_utf8(output.stdout)?.trim().to_string();
+    Ok(git_token)
 }
 
 #[derive(Clone)]