lychee-lib 0.24.1

A fast, async link checker
Documentation
use std::{fmt::Display, time::Duration};

use http::StatusCode;
use serde::Serialize;

use crate::{InputSource, Status, Uri, types::uri::raw::RawUriSpan};

use super::redirect_history::Redirects;
use crate::remap::Remap;

/// Response type returned by lychee after checking a URI
//
// Body is public to allow inserting into stats maps (error_map, success_map,
// etc.) without `Clone`, because the inner `ErrorKind` in `response.status` is
// not `Clone`. Use `body()` to access the body in the rest of the code.
//
// `pub(crate)` is insufficient, because the `stats` module is in the `bin`
// crate crate.
#[derive(Debug)]
pub struct Response {
    input_source: InputSource,
    response_body: ResponseBody,
}

impl Response {
    #[inline]
    #[must_use]
    /// Create new response
    pub const fn new(
        uri: Uri,
        status: Status,
        redirects: Option<Redirects>,
        remap: Option<Remap>,
        input_source: InputSource,
        span: Option<RawUriSpan>,
        duration: Option<Duration>,
    ) -> Self {
        Response {
            input_source,
            response_body: ResponseBody {
                uri,
                status,
                redirects,
                remap,
                span,
                duration,
            },
        }
    }

    #[inline]
    #[must_use]
    /// Retrieve the underlying status of the response
    pub const fn status(&self) -> &Status {
        &self.response_body.status
    }

    #[inline]
    #[must_use]
    /// Retrieve the redirect chain (if any)
    pub const fn redirects(&self) -> Option<&Redirects> {
        self.response_body.redirects.as_ref()
    }

    #[inline]
    #[must_use]
    /// Retrieve the remap applied before checking (if any)
    pub const fn remap(&self) -> Option<&Remap> {
        self.response_body.remap.as_ref()
    }

    #[inline]
    #[must_use]
    /// Retrieve the underlying source of the response
    /// (e.g. the input file or the URL)
    pub const fn source(&self) -> &InputSource {
        &self.input_source
    }

    #[inline]
    #[must_use]
    /// Retrieve the body of the response
    pub const fn body(&self) -> &ResponseBody {
        &self.response_body
    }

    #[inline]
    #[must_use]
    /// Retrieve the body of the response by consuming `self`
    pub fn into_body(self) -> ResponseBody {
        self.response_body
    }
}

impl Display for Response {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        <ResponseBody as Display>::fmt(&self.response_body, f)
    }
}

impl Serialize for Response {
    fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        <ResponseBody as Serialize>::serialize(&self.response_body, s)
    }
}

/// Encapsulates the state of a [`Uri`] check result
#[allow(clippy::module_name_repetitions)]
#[derive(Debug, Serialize, Hash, PartialEq, Eq)]
pub struct ResponseBody {
    #[serde(flatten)]
    /// The URI which was checked
    pub uri: Uri,
    /// The status of the check
    pub status: Status,
    /// Redirect chain followed during the check (if any)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub redirects: Option<Redirects>,
    /// Remap applied before checking (if any)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub remap: Option<Remap>,
    /// The location of the URI
    #[serde(skip_serializing_if = "Option::is_none")]
    pub span: Option<RawUriSpan>,
    /// The time it took to perform the request and produce this [`ResponseBody`]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub duration: Option<Duration>,
}

// Extract as much information from the underlying error conditions as possible
// without being too verbose. Some dependencies (rightfully) don't expose all
// error fields to downstream crates, which is why we have to defer to pattern
// matching in these cases.
impl Display for ResponseBody {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        // Always write the URI
        write!(f, "{}", self.uri)?;

        if let Some(span) = self.span {
            write!(f, " (at {span})")?;
        }

        // Early return for OK status without redirects/remaps to avoid verbose output
        if matches!(self.status, Status::Ok(StatusCode::OK))
            && self.redirects.is_none()
            && self.remap.is_none()
        {
            return Ok(());
        }

        let details = self.status.details();
        write!(f, " | {details}")?;

        if let Some(remap) = &self.remap {
            write!(f, " | Remaps: {remap}")?;
        }

        if let Some(redirects) = &self.redirects {
            let count = redirects.count();
            let noun = if count == 1 { "redirect" } else { "redirects" };
            write!(f, " | Followed {count} {noun}. Redirects: {redirects}")?;
        }

        Ok(())
    }
}