Removed Language and ErrorKind
This commit is contained in:
parent
a805eb4b73
commit
db4dc2db54
@ -1,34 +0,0 @@
|
|||||||
use axum::async_trait;
|
|
||||||
use axum::extract::FromRequestParts;
|
|
||||||
use axum::http::{HeaderValue, StatusCode};
|
|
||||||
use axum::http::header::ACCEPT_LANGUAGE;
|
|
||||||
use axum::http::request::Parts;
|
|
||||||
use serde::Deserialize;
|
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Default)]
|
|
||||||
pub enum Language {
|
|
||||||
#[default]
|
|
||||||
#[serde(rename = "en")]
|
|
||||||
En,
|
|
||||||
#[serde(rename = "nb")]
|
|
||||||
Nb,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub(crate) struct AcceptLanguage(HeaderValue);
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl<S> FromRequestParts<S> for AcceptLanguage
|
|
||||||
where
|
|
||||||
S: Send + Sync,
|
|
||||||
{
|
|
||||||
type Rejection = (StatusCode, &'static str);
|
|
||||||
|
|
||||||
async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> {
|
|
||||||
if let Some(accept_language) = parts.headers.get(ACCEPT_LANGUAGE) {
|
|
||||||
Ok(AcceptLanguage(accept_language.clone()))
|
|
||||||
} else {
|
|
||||||
Err((StatusCode::BAD_REQUEST, "`Accept-language` header is missing"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -11,7 +11,6 @@ use crate::routing::{index, simplify, table};
|
|||||||
mod expressions;
|
mod expressions;
|
||||||
mod parsing;
|
mod parsing;
|
||||||
mod routing;
|
mod routing;
|
||||||
mod language;
|
|
||||||
mod config;
|
mod config;
|
||||||
mod utils;
|
mod utils;
|
||||||
|
|
||||||
|
@ -2,15 +2,31 @@ use axum::Json;
|
|||||||
use axum::response::{IntoResponse, Response};
|
use axum::response::{IntoResponse, Response};
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
|
#[derive(Serialize, Default)]
|
||||||
|
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
|
||||||
|
pub enum ErrorKind {
|
||||||
|
/// The syntax of the expression is invalid.
|
||||||
|
InvalidExpression,
|
||||||
|
/// The expression is too long.
|
||||||
|
LimitExceeded,
|
||||||
|
/// The expression is missing a character to be considered valid.
|
||||||
|
MissingCharacter,
|
||||||
|
/// Unexpected error.
|
||||||
|
#[default]
|
||||||
|
Unexpected,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Serialize)]
|
#[derive(Serialize)]
|
||||||
pub struct Error {
|
pub struct Error {
|
||||||
pub message: String,
|
pub message: String,
|
||||||
|
pub kind: ErrorKind,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Error {
|
impl Error {
|
||||||
pub fn new(message: impl Into<String>) -> Self {
|
pub fn new(message: impl Into<String>, kind: ErrorKind) -> Self {
|
||||||
Self {
|
Self {
|
||||||
message: message.into(),
|
message: message.into(),
|
||||||
|
kind,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
use axum::Json;
|
use axum::Json;
|
||||||
use axum::response::{IntoResponse, Response};
|
use axum::response::{IntoResponse, Response};
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
use crate::expressions::expression::Expression;
|
use crate::expressions::expression::Expression;
|
||||||
use crate::expressions::truth_table::TruthTable;
|
use crate::expressions::truth_table::TruthTable;
|
||||||
|
|
||||||
|
@ -7,8 +7,7 @@ use serde::Deserialize;
|
|||||||
use crate::expressions::expression::Expression;
|
use crate::expressions::expression::Expression;
|
||||||
use crate::expressions::simplify::Simplify;
|
use crate::expressions::simplify::Simplify;
|
||||||
use crate::expressions::truth_table::{TruthTable, TruthTableOptions};
|
use crate::expressions::truth_table::{TruthTable, TruthTableOptions};
|
||||||
use crate::language::{AcceptLanguage, Language};
|
use crate::routing::error::{Error, ErrorKind};
|
||||||
use crate::routing::error::Error;
|
|
||||||
use crate::routing::response::SimplifyResponse;
|
use crate::routing::response::SimplifyResponse;
|
||||||
|
|
||||||
pub fn router() -> Router<()> {
|
pub fn router() -> Router<()> {
|
||||||
@ -26,8 +25,6 @@ const fn default_true() -> bool {
|
|||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
struct QueryOptions {
|
struct QueryOptions {
|
||||||
#[serde(default)]
|
|
||||||
lang: Language,
|
|
||||||
#[serde(default = "default_true")]
|
#[serde(default = "default_true")]
|
||||||
simplify: bool,
|
simplify: bool,
|
||||||
#[serde(default = "default_true")]
|
#[serde(default = "default_true")]
|
||||||
@ -35,7 +32,7 @@ struct QueryOptions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
async fn simplify(Path(path): Path<String>, query: Query<QueryOptions>, accept_language: Option<AcceptLanguage>) -> Response {
|
async fn simplify(Path(path): Path<String>, query: Query<QueryOptions>) -> Response {
|
||||||
if let Ok(mut expression) = Expression::try_from(path.as_str()) {
|
if let Ok(mut expression) = Expression::try_from(path.as_str()) {
|
||||||
let before = expression.to_string();
|
let before = expression.to_string();
|
||||||
if query.simplify {
|
if query.simplify {
|
||||||
@ -49,11 +46,11 @@ async fn simplify(Path(path): Path<String>, query: Query<QueryOptions>, accept_l
|
|||||||
truth_table: None,
|
truth_table: None,
|
||||||
}.into_response()
|
}.into_response()
|
||||||
} else {
|
} else {
|
||||||
(StatusCode::BAD_REQUEST, Error::new("Invalid expression")).into_response()
|
(StatusCode::BAD_REQUEST, Error::new("Invalid expression", ErrorKind::InvalidExpression)).into_response()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn simplify_and_table(Path(path): Path<String>, query: Query<QueryOptions>, accept_language: Option<AcceptLanguage>) -> Response {
|
async fn simplify_and_table(Path(path): Path<String>, query: Query<QueryOptions>) -> Response {
|
||||||
if let Ok(mut expression) = Expression::try_from(path.as_str()) {
|
if let Ok(mut expression) = Expression::try_from(path.as_str()) {
|
||||||
let before = expression.to_string();
|
let before = expression.to_string();
|
||||||
if query.simplify {
|
if query.simplify {
|
||||||
@ -69,6 +66,6 @@ async fn simplify_and_table(Path(path): Path<String>, query: Query<QueryOptions>
|
|||||||
truth_table: Some(truth_table),
|
truth_table: Some(truth_table),
|
||||||
}.into_response()
|
}.into_response()
|
||||||
} else {
|
} else {
|
||||||
(StatusCode::BAD_REQUEST, Error::new("Invalid expression")).into_response()
|
(StatusCode::BAD_REQUEST, Error::new("Invalid expression", ErrorKind::InvalidExpression)).into_response()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user