miasma 0.2.1

Trap malicious AI web scrapers in an endless pit of poisoned training data.
Documentation
use crate::config::{LinkPrefix, MiasmaConfig};

/// Controls link generation for a given response.
#[cfg_attr(test, derive(Debug, PartialEq))]
pub enum LinkSettings<'a> {
    NoLinks,
    Links(LinkSettingsInner<'a>),
}

#[cfg_attr(test, derive(Debug, PartialEq))]
pub struct LinkSettingsInner<'a> {
    pub count: u8,
    pub prefix: &'a LinkPrefix,
    pub next_depth: Option<u32>,
}

impl<'a> LinkSettings<'a> {
    /// Determine link generation settings based on config and current depth.
    pub fn next(config: &'a MiasmaConfig, current_depth: u32) -> Self {
        let at_max_depth = config.max_depth.0.is_some_and(|max| current_depth >= max);
        if at_max_depth {
            return Self::NoLinks;
        }

        let next_depth = if config.max_depth.0.is_some() {
            Some(current_depth + 1)
        } else {
            None
        };

        Self::Links(LinkSettingsInner {
            count: config.link_count,
            prefix: &config.link_prefix,
            next_depth,
        })
    }
}

#[cfg(test)]
mod test {
    use super::*;
    use crate::config::MaxDepth;

    #[test]
    fn links_if_no_max_depth() {
        let config = MiasmaConfig {
            max_depth: MaxDepth(None),
            ..MiasmaConfig::default()
        };

        let link_settings = LinkSettings::next(&config, 0);
        let expected = LinkSettings::Links(LinkSettingsInner {
            count: config.link_count,
            prefix: &config.link_prefix,
            next_depth: None,
        });
        assert_eq!(link_settings, expected);
    }

    #[test]
    fn links_if_not_at_max_depth() {
        let config = MiasmaConfig {
            max_depth: MaxDepth(Some(5)),
            ..MiasmaConfig::default()
        };
        for current_depth in [0, 1, 2, 3, 4] {
            let link_settings = LinkSettings::next(&config, current_depth);
            let expected = LinkSettings::Links(LinkSettingsInner {
                count: config.link_count,
                prefix: &config.link_prefix,
                next_depth: Some(current_depth + 1),
            });
            assert_eq!(link_settings, expected);
        }
    }

    #[test]
    fn no_links_if_at_max_depth() {
        let config = MiasmaConfig {
            max_depth: MaxDepth(Some(5)),
            ..MiasmaConfig::default()
        };
        for current_depth in [5, 6, 10] {
            let link_settings = LinkSettings::next(&config, current_depth);
            assert!(matches!(link_settings, LinkSettings::NoLinks))
        }
    }
}