binstalk-registry 0.12.2

The binstall toolkit for fetching package from arbitrary registry
use std::{fmt, sync::Arc};

use binstalk_types::SecretString;
use compact_str::CompactString;

use crate::Registry;

#[derive(Clone, Debug)]
pub struct RegistryAuth {
    registry_name: Option<CompactString>,
    token: Arc<SecretString>,
}

impl RegistryAuth {
    pub fn new(registry_name: Option<CompactString>, token: SecretString) -> Option<Self> {
        if token.is_empty() {
            None
        } else {
            Some(Self {
                registry_name,
                token: Arc::new(token),
            })
        }
    }

    pub fn token(&self) -> &str {
        &self.token[..]
    }

    pub fn registry_name(&self) -> Option<&str> {
        self.registry_name.as_deref()
    }
}

#[derive(Clone)]
pub struct ResolvedRegistry {
    registry: Registry,
    auth: Option<RegistryAuth>,
}

impl ResolvedRegistry {
    pub fn new(registry: Registry, auth: Option<RegistryAuth>) -> Self {
        Self { registry, auth }
    }

    pub async fn fetch_crate_matched(
        &self,
        client: binstalk_downloader::remote::Client,
        crate_name: &str,
        version_req: &semver::VersionReq,
    ) -> Result<
        cargo_toml_workspace::cargo_toml::Manifest<binstalk_types::cargo_toml_binstall::Meta>,
        crate::RegistryError,
    > {
        self.registry
            .fetch_crate_matched_with_auth(client, self.auth.as_ref(), crate_name, version_req)
            .await
    }

    pub fn crate_source(&self) -> Result<binstalk_types::crate_info::CrateSource, url::ParseError> {
        self.registry.crate_source()
    }

    pub fn cargo_install_index_arg(&self) -> String {
        self.registry.cargo_install_index_arg()
    }
}

impl fmt::Debug for ResolvedRegistry {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ResolvedRegistry")
            .field("registry", &self.registry)
            .field("auth", &self.auth)
            .finish()
    }
}

impl Default for ResolvedRegistry {
    fn default() -> Self {
        Self::new(Registry::default(), None)
    }
}

impl fmt::Display for ResolvedRegistry {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Display::fmt(&self.registry, f)
    }
}