59 lines
1.5 KiB
Rust
59 lines
1.5 KiB
Rust
use std::sync::Arc;
|
|
|
|
use axum::{
|
|
http::StatusCode,
|
|
response::{IntoResponse, Response},
|
|
};
|
|
|
|
use saleor_app_sdk::{config::Config, manifest::AppManifest, SaleorApp};
|
|
use tracing::level_filters::LevelFilter;
|
|
use tracing_subscriber::EnvFilter;
|
|
// Make our own error that wraps `anyhow::Error`.
|
|
pub struct AppError(anyhow::Error);
|
|
|
|
// Tell axum how to convert `AppError` into a response.
|
|
impl IntoResponse for AppError {
|
|
fn into_response(self) -> Response {
|
|
(
|
|
StatusCode::INTERNAL_SERVER_ERROR,
|
|
format!("Something went wrong: {}", self.0),
|
|
)
|
|
.into_response()
|
|
}
|
|
}
|
|
|
|
// This enables using `?` on functions that return `Result<_, anyhow::Error>` to turn them into
|
|
// `Result<_, AppError>`. That way you don't need to do that manually.
|
|
impl<E> From<E> for AppError
|
|
where
|
|
E: Into<anyhow::Error>,
|
|
{
|
|
fn from(err: E) -> Self {
|
|
Self(err.into())
|
|
}
|
|
}
|
|
|
|
pub fn trace_to_std(config: &Config) {
|
|
let filter = EnvFilter::builder()
|
|
.with_default_directive(LevelFilter::DEBUG.into())
|
|
.from_env()
|
|
.unwrap()
|
|
.add_directive(
|
|
format!("{}={}", env!("CARGO_PKG_NAME"), config.log_level)
|
|
.parse()
|
|
.unwrap(),
|
|
);
|
|
tracing_subscriber::fmt()
|
|
.with_max_level(config.log_level)
|
|
.with_env_filter(filter)
|
|
.with_target(true)
|
|
.compact()
|
|
.init();
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct AppState {
|
|
pub saleor_app: Arc<tokio::sync::Mutex<SaleorApp>>,
|
|
pub config: Config,
|
|
pub manifest: AppManifest,
|
|
}
|