atuin/atuin-common/src/api.rs

90 lines
1.9 KiB
Rust
Raw Normal View History

2022-04-12 16:06:19 -06:00
use std::borrow::Cow;
2022-04-12 16:06:19 -06:00
use axum::{response::IntoResponse, Json};
use chrono::Utc;
use serde::Serialize;
#[derive(Debug, Serialize, Deserialize)]
2022-04-12 16:06:19 -06:00
pub struct UserResponse {
pub username: String,
}
#[derive(Debug, Serialize, Deserialize)]
2022-04-12 16:06:19 -06:00
pub struct RegisterRequest {
pub email: String,
pub username: String,
pub password: String,
}
#[derive(Debug, Serialize, Deserialize)]
2022-04-12 16:06:19 -06:00
pub struct RegisterResponse {
pub session: String,
}
#[derive(Debug, Serialize, Deserialize)]
2022-04-12 16:06:19 -06:00
pub struct LoginRequest {
pub username: String,
pub password: String,
}
#[derive(Debug, Serialize, Deserialize)]
2022-04-12 16:06:19 -06:00
pub struct LoginResponse {
pub session: String,
}
#[derive(Debug, Serialize, Deserialize)]
2022-04-12 16:06:19 -06:00
pub struct AddHistoryRequest {
pub id: String,
pub timestamp: chrono::DateTime<Utc>,
2022-04-12 16:06:19 -06:00
pub data: String,
pub hostname: String,
}
#[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 {
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,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SyncHistoryResponse {
pub history: Vec<String>,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ErrorResponse<'a> {
pub reason: Cow<'a, str>,
}
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()
}
}
pub struct ErrorResponseStatus<'a> {
pub error: ErrorResponse<'a>,
2022-04-12 16:06:19 -06:00
pub status: http::StatusCode,
}
impl<'a> ErrorResponse<'a> {
2022-04-12 16:06:19 -06:00
pub fn with_status(self, status: http::StatusCode) -> ErrorResponseStatus<'a> {
ErrorResponseStatus {
error: self,
status,
}
}
pub fn reply(reason: &'a str) -> ErrorResponse {
Self {
reason: reason.into(),
}
}
}