use crate::{Remote, bstr::BStr, remote};
impl Remote<'_> {
pub fn with_url<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<gix_url::Url, Error = E>,
gix_url::parse::Error: From<E>,
{
self.url_inner(
url.try_into().map_err(|err| remote::init::Error::Url(err.into()))?,
true,
)
}
pub fn with_url_without_url_rewrite<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<gix_url::Url, Error = E>,
gix_url::parse::Error: From<E>,
{
self.url_inner(
url.try_into().map_err(|err| remote::init::Error::Url(err.into()))?,
false,
)
}
#[deprecated = "Use `with_push_url()` instead"]
pub fn push_url<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<gix_url::Url, Error = E>,
gix_url::parse::Error: From<E>,
{
self.with_push_url(url)
}
pub fn with_push_url<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<gix_url::Url, Error = E>,
gix_url::parse::Error: From<E>,
{
self.push_url_inner(
url.try_into().map_err(|err| remote::init::Error::Url(err.into()))?,
true,
)
}
#[deprecated = "Use `with_push_url_without_rewrite()` instead"]
pub fn push_url_without_url_rewrite<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<gix_url::Url, Error = E>,
gix_url::parse::Error: From<E>,
{
self.with_push_url_without_url_rewrite(url)
}
pub fn with_push_url_without_url_rewrite<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<gix_url::Url, Error = E>,
gix_url::parse::Error: From<E>,
{
self.push_url_inner(
url.try_into().map_err(|err| remote::init::Error::Url(err.into()))?,
false,
)
}
pub fn with_fetch_tags(mut self, tags: remote::fetch::Tags) -> Self {
self.fetch_tags = tags;
self
}
fn push_url_inner(
mut self,
push_url: gix_url::Url,
should_rewrite_urls: bool,
) -> Result<Self, remote::init::Error> {
self.push_urls = vec![push_url];
self.push_url_aliases = if should_rewrite_urls {
remote::init::rewrite_url_aliases_with_error_kind(
&self.repo.config,
&self.push_urls,
remote::Direction::Fetch,
remote::Direction::Push,
)
} else {
Ok(vec![None; self.push_urls.len()])
}?;
self.url_push_aliases = vec![None; self.urls.len()];
Ok(self)
}
fn url_inner(mut self, url: gix_url::Url, should_rewrite_urls: bool) -> Result<Self, remote::init::Error> {
self.urls = vec![url];
self.url_aliases = if should_rewrite_urls {
remote::init::rewrite_url_aliases(&self.repo.config, &self.urls, remote::Direction::Fetch)
} else {
Ok(vec![None; self.urls.len()])
}?;
self.url_push_aliases = if should_rewrite_urls && self.push_urls.is_empty() {
remote::init::rewrite_url_aliases_with_fallback_non_destructive(
&self.repo.config,
&self.urls,
remote::Direction::Push,
remote::Direction::Fetch,
)
.0
} else {
vec![None; self.urls.len()]
};
Ok(self)
}
pub fn with_refspecs<Spec>(
mut self,
specs: impl IntoIterator<Item = Spec>,
direction: remote::Direction,
) -> Result<Self, gix_refspec::parse::Error>
where
Spec: AsRef<BStr>,
{
use remote::Direction::*;
let new_specs = specs
.into_iter()
.map(|spec| {
gix_refspec::parse(
spec.as_ref(),
match direction {
Push => gix_refspec::parse::Operation::Push,
Fetch => gix_refspec::parse::Operation::Fetch,
},
)
.map(|s| s.to_owned())
})
.collect::<Result<Vec<_>, _>>()?;
let specs = match direction {
Push => &mut self.push_specs,
Fetch => &mut self.fetch_specs,
};
for spec in new_specs {
if !specs.contains(&spec) {
specs.push(spec);
}
}
Ok(self)
}
}