2024-07-22 15:41:45 +01:00
|
|
|
use crate::AuthConfig;
|
2024-07-22 21:00:09 +01:00
|
|
|
use gix::bstr::BStr;
|
|
|
|
use serde::{Deserialize, Deserializer, Serializer};
|
2024-07-22 15:41:45 +01:00
|
|
|
|
|
|
|
pub fn authenticate_conn(
|
|
|
|
conn: &mut gix::remote::Connection<
|
|
|
|
'_,
|
|
|
|
'_,
|
|
|
|
Box<dyn gix::protocol::transport::client::Transport + Send>,
|
|
|
|
>,
|
|
|
|
auth_config: &AuthConfig,
|
|
|
|
) {
|
|
|
|
if let Some(iden) = auth_config.git_credentials().cloned() {
|
|
|
|
conn.set_credentials(move |action| match action {
|
|
|
|
gix::credentials::helper::Action::Get(ctx) => {
|
|
|
|
Ok(Some(gix::credentials::protocol::Outcome {
|
|
|
|
identity: iden.clone(),
|
|
|
|
next: gix::credentials::helper::NextAction::from(ctx),
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
gix::credentials::helper::Action::Store(_) => Ok(None),
|
|
|
|
gix::credentials::helper::Action::Erase(_) => Ok(None),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2024-07-22 21:00:09 +01:00
|
|
|
|
|
|
|
pub fn serialize_gix_url<S: Serializer>(url: &gix::Url, serializer: S) -> Result<S::Ok, S::Error> {
|
|
|
|
serializer.serialize_str(&url.to_bstring().to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn deserialize_gix_url<'de, D: Deserializer<'de>>(
|
|
|
|
deserializer: D,
|
|
|
|
) -> Result<gix::Url, D::Error> {
|
|
|
|
let s = String::deserialize(deserializer)?;
|
|
|
|
gix::Url::from_bytes(BStr::new(&s)).map_err(serde::de::Error::custom)
|
|
|
|
}
|