2024-03-16 05:45:58 +01:00
|
|
|
pub mod object;
|
2023-12-30 05:08:05 +01:00
|
|
|
pub mod activity;
|
2024-03-23 05:01:45 +01:00
|
|
|
pub mod user;
|
|
|
|
pub mod config;
|
2024-03-22 05:34:08 +01:00
|
|
|
|
2024-03-22 02:29:37 +01:00
|
|
|
pub mod relation;
|
2024-03-24 04:05:09 +01:00
|
|
|
pub mod addressing;
|
2024-03-22 05:34:08 +01:00
|
|
|
pub mod share;
|
|
|
|
pub mod like;
|
2024-03-23 05:01:45 +01:00
|
|
|
pub mod credential;
|
2024-03-24 04:05:09 +01:00
|
|
|
pub mod session;
|
2024-03-25 05:07:58 +01:00
|
|
|
pub mod delivery;
|
2024-03-25 21:18:12 +01:00
|
|
|
pub mod application;
|
2024-03-22 02:29:37 +01:00
|
|
|
|
2024-04-06 18:03:13 +02:00
|
|
|
#[cfg(feature = "faker")]
|
2024-03-21 20:36:28 +01:00
|
|
|
pub mod faker;
|
2024-03-16 05:45:58 +01:00
|
|
|
|
2024-03-16 20:09:06 +01:00
|
|
|
#[derive(Debug, Clone, thiserror::Error)]
|
|
|
|
#[error("missing required field: '{0}'")]
|
2024-03-19 01:00:44 +01:00
|
|
|
pub struct FieldError(pub &'static str);
|
2024-03-16 20:09:06 +01:00
|
|
|
|
2024-03-26 00:49:07 +01:00
|
|
|
impl From<FieldError> for axum::http::StatusCode {
|
|
|
|
fn from(value: FieldError) -> Self {
|
|
|
|
tracing::error!("bad request: {value}");
|
|
|
|
axum::http::StatusCode::BAD_REQUEST
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-21 20:36:46 +01:00
|
|
|
#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize, sea_orm::FromJsonQueryResult)]
|
|
|
|
pub struct Audience(pub Vec<String>);
|
|
|
|
|
2024-04-12 21:42:06 +02:00
|
|
|
impl From<apb::Node<serde_json::Value>> for Audience {
|
|
|
|
fn from(value: apb::Node<serde_json::Value>) -> Self {
|
|
|
|
use apb::{Base, Link};
|
2024-03-21 20:36:46 +01:00
|
|
|
Audience(
|
|
|
|
match value {
|
2024-04-12 21:42:06 +02:00
|
|
|
apb::Node::Empty => vec![],
|
|
|
|
apb::Node::Link(l) => vec![l.href().to_string()],
|
|
|
|
apb::Node::Object(o) => if let Some(id) = o.id() { vec![id.to_string()] } else { vec![] },
|
|
|
|
apb::Node::Array(arr) => arr.into_iter().map(|l| l.href().to_string()).collect(),
|
2024-03-21 20:36:46 +01:00
|
|
|
}
|
|
|
|
)
|
2024-03-20 07:53:45 +01:00
|
|
|
}
|
2024-03-16 05:45:58 +01:00
|
|
|
}
|
2024-03-21 20:36:46 +01:00
|
|
|
|