2022-04-12 16:06:19 -06:00
|
|
|
use std::borrow::Cow;
|
2021-05-07 14:06:56 -06:00
|
|
|
|
2022-04-12 16:06:19 -06:00
|
|
|
use axum::{response::IntoResponse, Json};
|
2021-04-13 12:14:07 -06:00
|
|
|
use chrono::Utc;
|
2021-05-10 15:16:07 -06:00
|
|
|
use serde::Serialize;
|
2021-04-13 12:14:07 -06:00
|
|
|
|
2021-04-20 10:07:11 -06:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct UserResponse {
|
|
|
|
pub username: String,
|
2021-04-20 10:07:11 -06:00
|
|
|
}
|
2021-04-13 12:14:07 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct RegisterRequest {
|
|
|
|
pub email: String,
|
|
|
|
pub username: String,
|
|
|
|
pub password: String,
|
2021-04-13 12:14:07 -06:00
|
|
|
}
|
|
|
|
|
2021-04-20 10:07:11 -06:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct RegisterResponse {
|
|
|
|
pub session: String,
|
2021-04-20 10:07:11 -06:00
|
|
|
}
|
|
|
|
|
2021-04-13 12:14:07 -06:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct LoginRequest {
|
|
|
|
pub username: String,
|
|
|
|
pub password: String,
|
2021-04-13 12:14:07 -06:00
|
|
|
}
|
|
|
|
|
2021-04-20 10:07:11 -06:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct LoginResponse {
|
|
|
|
pub session: String,
|
2021-04-20 10:07:11 -06:00
|
|
|
}
|
|
|
|
|
2021-04-13 12:14:07 -06:00
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct AddHistoryRequest {
|
|
|
|
pub id: String,
|
2021-04-13 12:14:07 -06:00
|
|
|
pub timestamp: chrono::DateTime<Utc>,
|
2022-04-12 16:06:19 -06:00
|
|
|
pub data: String,
|
|
|
|
pub hostname: String,
|
2021-04-13 12:14:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct CountResponse {
|
|
|
|
pub count: i64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2022-04-12 16:06:19 -06:00
|
|
|
pub struct SyncHistoryRequest {
|
2021-04-20 10:07:11 -06:00
|
|
|
pub sync_ts: chrono::DateTime<chrono::FixedOffset>,
|
|
|
|
pub history_ts: chrono::DateTime<chrono::FixedOffset>,
|
2022-04-12 16:06:19 -06:00
|
|
|
pub host: String,
|
2021-04-20 10:07:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct SyncHistoryResponse {
|
2021-04-13 12:14:07 -06:00
|
|
|
pub history: Vec<String>,
|
|
|
|
}
|
2021-04-20 10:07:11 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
2021-05-09 14:17:24 -06:00
|
|
|
pub struct ErrorResponse<'a> {
|
|
|
|
pub reason: Cow<'a, str>,
|
2021-04-20 10:07:11 -06:00
|
|
|
}
|
|
|
|
|
2022-04-12 16:06:19 -06:00
|
|
|
impl<'a> IntoResponse for ErrorResponseStatus<'a> {
|
|
|
|
fn into_response(self) -> axum::response::Response {
|
|
|
|
(self.status, Json(self.error)).into_response()
|
2021-05-07 14:06:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-09 14:17:24 -06:00
|
|
|
pub struct ErrorResponseStatus<'a> {
|
|
|
|
pub error: ErrorResponse<'a>,
|
2022-04-12 16:06:19 -06:00
|
|
|
pub status: http::StatusCode,
|
2021-05-07 14:06:56 -06:00
|
|
|
}
|
|
|
|
|
2021-05-09 14:17:24 -06:00
|
|
|
impl<'a> ErrorResponse<'a> {
|
2022-04-12 16:06:19 -06:00
|
|
|
pub fn with_status(self, status: http::StatusCode) -> ErrorResponseStatus<'a> {
|
2021-05-07 14:06:56 -06:00
|
|
|
ErrorResponseStatus {
|
|
|
|
error: self,
|
2021-04-20 10:07:11 -06:00
|
|
|
status,
|
2021-05-07 14:06:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-09 14:17:24 -06:00
|
|
|
pub fn reply(reason: &'a str) -> ErrorResponse {
|
2021-05-07 14:06:56 -06:00
|
|
|
Self {
|
2021-05-09 14:17:24 -06:00
|
|
|
reason: reason.into(),
|
2021-05-07 14:06:56 -06:00
|
|
|
}
|
2021-04-20 10:07:11 -06:00
|
|
|
}
|
|
|
|
}
|