Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for authorization header. #640

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ impl Network {
}
}
}

let client = client_builder
.build()
.expect("Couldn't construct HTTP Client?");
Expand Down Expand Up @@ -284,9 +285,15 @@ impl Network {
.await
.expect("Semaphore dropped?!");

let res = self
.client
.get(url.clone())
let mut request_builder = self.client.get(url.clone());

// Add a header from the environment, if present.
if let Ok(header) = std::env::var("CARGO_VET_AUTH_HEADER") {
let (name, value) = header.split_once(':').expect("Invalid header format");
request_builder = request_builder.header(name, value);
}

let res = request_builder
.send()
.await
.and_then(|res| res.error_for_status())
Expand Down