Catcher

Se o código de status da Response for um erro e o Body da página estiver vazio, o salvo tentará usar o Catcher para capturar esse erro e exibir uma página de erro amigável.

Você pode usar Catcher::default() para retornar um Catcher padrão do sistema e adicioná-lo ao Service.

use salvo::catcher::Catcher;

Service::new(router).catcher(Catcher::default());

O Catcher padrão suporta o envio de páginas de erro nos formatos XML, JSON, HTML e Text.

Você pode adicionar um manipulador de erros personalizado ao Catcher usando o método hoop. Esse manipulador de erros ainda é um Handler.

É possível adicionar vários manipuladores de erros personalizados ao Catcher usando hoop. Um manipulador de erros personalizado pode chamar o método FlowCtrl::skip_next após processar o erro para pular os próximos manipuladores e retornar antecipadamente.

main.rs
Cargo.toml
custom-error-page/src/main.rs
use salvo::catcher::Catcher;
use salvo::prelude::*;

// Handler that returns a simple "Hello World" response
#[handler]
async fn hello() -> &'static str {
    "Hello World"
}

// Handler that deliberately returns a 500 Internal Server Error
#[handler]
async fn error500(res: &mut Response) {
    res.status_code(StatusCode::INTERNAL_SERVER_ERROR);
}

#[tokio::main]
async fn main() {
    // Initialize logging system
    tracing_subscriber::fmt().init();

    // Create and start server with custom error handling
    let acceptor = TcpListener::new("0.0.0.0:5800").bind().await;
    Server::new(acceptor).serve(create_service()).await;
}

// Create service with custom error handling
fn create_service() -> Service {
    // Set up router with two endpoints:
    // - / : Returns "Hello World"
    // - /500 : Triggers a 500 error
    let router = Router::new()
        .get(hello)
        .push(Router::with_path("500").get(error500));

    // Add custom error catcher for 404 Not Found errors
    Service::new(router).catcher(Catcher::default().hoop(handle404))
}

// Custom handler for 404 Not Found errors
#[handler]
async fn handle404(&self, _req: &Request, _depot: &Depot, res: &mut Response, ctrl: &mut FlowCtrl) {
    // Check if the error is a 404 Not Found
    if StatusCode::NOT_FOUND == res.status_code.unwrap_or(StatusCode::NOT_FOUND) {
        // Return custom error page
        res.render("Custom 404 Error Page");
        // Skip remaining error handlers
        ctrl.skip_rest();
    }
}