2024-03-20 05:44:50 +01:00
|
|
|
pub mod user;
|
2024-03-24 04:05:09 +01:00
|
|
|
pub mod inbox;
|
|
|
|
pub mod outbox;
|
2024-03-20 05:44:50 +01:00
|
|
|
pub mod object;
|
|
|
|
pub mod activity;
|
2024-03-22 00:17:52 +01:00
|
|
|
pub mod well_known;
|
|
|
|
|
2024-03-21 03:07:35 +01:00
|
|
|
pub mod jsonld;
|
|
|
|
pub use jsonld::JsonLD;
|
2024-03-20 05:44:50 +01:00
|
|
|
|
2024-03-28 04:52:17 +01:00
|
|
|
use axum::{extract::State, http::StatusCode, response::IntoResponse, Json};
|
2024-03-24 23:55:48 +01:00
|
|
|
use rand::Rng;
|
|
|
|
use sea_orm::{ColumnTrait, Condition, EntityTrait, QueryFilter};
|
2024-03-20 05:44:50 +01:00
|
|
|
|
2024-04-06 16:56:13 +02:00
|
|
|
use apb::{PublicKeyMut, ActorMut, ActorType, Link, Object, ObjectMut, BaseMut, Node};
|
|
|
|
use crate::{model, server::Context, url};
|
2024-03-21 19:15:19 +01:00
|
|
|
|
|
|
|
use self::jsonld::LD;
|
2024-03-20 05:44:50 +01:00
|
|
|
|
2024-04-06 16:56:13 +02:00
|
|
|
pub trait Addressed : Object {
|
|
|
|
fn addressed(&self) -> Vec<String>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Addressed for serde_json::Value {
|
|
|
|
fn addressed(&self) -> Vec<String> {
|
|
|
|
let mut to : Vec<String> = self.to().map(|x| x.href().to_string()).collect();
|
|
|
|
to.append(&mut self.bto().map(|x| x.href().to_string()).collect());
|
|
|
|
to.append(&mut self.cc().map(|x| x.href().to_string()).collect());
|
|
|
|
to.append(&mut self.bcc().map(|x| x.href().to_string()).collect());
|
|
|
|
to
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-21 00:04:44 +01:00
|
|
|
pub const PUBLIC_TARGET : &str = "https://www.w3.org/ns/activitystreams#Public";
|
|
|
|
|
|
|
|
pub fn split_id(id: &str) -> (String, String) {
|
|
|
|
let clean = id
|
|
|
|
.replace("http://", "")
|
|
|
|
.replace("https://", "");
|
|
|
|
let mut splits = clean.split('/');
|
|
|
|
let first = splits.next().unwrap_or("");
|
|
|
|
let last = splits.last().unwrap_or(first);
|
|
|
|
(first.to_string(), last.to_string())
|
|
|
|
}
|
|
|
|
|
2024-03-21 01:11:20 +01:00
|
|
|
pub fn domain(domain: &str) -> String {
|
|
|
|
domain
|
|
|
|
.replace("http://", "")
|
|
|
|
.replace("https://", "")
|
|
|
|
.replace('/', "")
|
|
|
|
}
|
|
|
|
|
2024-03-20 05:44:50 +01:00
|
|
|
|
2024-03-20 07:55:24 +01:00
|
|
|
#[derive(Debug, serde::Deserialize)]
|
|
|
|
// TODO i don't really like how pleroma/mastodon do it actually, maybe change this?
|
2024-03-22 02:50:38 +01:00
|
|
|
pub struct Pagination {
|
|
|
|
pub offset: Option<u64>,
|
|
|
|
pub batch: Option<u64>,
|
2024-03-20 05:44:50 +01:00
|
|
|
}
|
|
|
|
|
2024-03-28 04:52:17 +01:00
|
|
|
pub struct CreationResult(pub String);
|
|
|
|
impl IntoResponse for CreationResult {
|
|
|
|
fn into_response(self) -> axum::response::Response {
|
|
|
|
(
|
|
|
|
StatusCode::CREATED,
|
|
|
|
[("Location", self.0.as_str())]
|
|
|
|
)
|
|
|
|
.into_response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-20 11:24:54 +01:00
|
|
|
pub async fn view(State(ctx): State<Context>) -> Result<Json<serde_json::Value>, StatusCode> {
|
2024-03-21 00:04:01 +01:00
|
|
|
Ok(Json(
|
2024-03-21 19:15:19 +01:00
|
|
|
serde_json::Value::new_object()
|
2024-03-21 00:04:01 +01:00
|
|
|
.set_id(Some(&url!(ctx, "")))
|
2024-03-26 00:48:13 +01:00
|
|
|
.set_actor_type(Some(ActorType::Application))
|
2024-03-21 00:04:01 +01:00
|
|
|
.set_name(Some("μpub"))
|
|
|
|
.set_summary(Some("micro social network, federated"))
|
2024-03-26 00:48:13 +01:00
|
|
|
.set_published(Some(ctx.app().created))
|
|
|
|
.set_public_key(Node::object(
|
|
|
|
serde_json::Value::new_object()
|
|
|
|
.set_id(Some(&url!(ctx, "#main-key")))
|
2024-03-26 01:02:48 +01:00
|
|
|
.set_owner(Some(&url!(ctx, "")))
|
2024-03-26 00:48:13 +01:00
|
|
|
.set_public_key_pem(&ctx.app().public_key)
|
|
|
|
))
|
2024-03-21 19:32:07 +01:00
|
|
|
.ld_context()
|
2024-03-21 00:04:01 +01:00
|
|
|
))
|
2024-03-20 11:24:54 +01:00
|
|
|
}
|
|
|
|
|
2024-03-24 23:55:48 +01:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, serde::Deserialize)]
|
|
|
|
pub struct LoginForm {
|
|
|
|
email: String,
|
|
|
|
password: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn auth(State(ctx): State<Context>, Json(login): Json<LoginForm>) -> Result<Json<serde_json::Value>, StatusCode> {
|
|
|
|
// TODO salt the pwd
|
|
|
|
match model::credential::Entity::find()
|
|
|
|
.filter(Condition::all()
|
|
|
|
.add(model::credential::Column::Email.eq(login.email))
|
|
|
|
.add(model::credential::Column::Password.eq(sha256::digest(login.password)))
|
|
|
|
)
|
|
|
|
.one(ctx.db())
|
|
|
|
.await
|
|
|
|
{
|
|
|
|
Ok(Some(x)) => {
|
|
|
|
// TODO should probably use crypto-safe rng
|
|
|
|
let token : String = rand::thread_rng()
|
|
|
|
.sample_iter(&rand::distributions::Alphanumeric)
|
|
|
|
.take(128)
|
|
|
|
.map(char::from)
|
|
|
|
.collect();
|
|
|
|
model::session::Entity::insert(
|
|
|
|
model::session::ActiveModel {
|
2024-03-25 02:26:47 +01:00
|
|
|
id: sea_orm::ActiveValue::Set(token.clone()),
|
2024-03-24 23:55:48 +01:00
|
|
|
actor: sea_orm::ActiveValue::Set(x.id),
|
|
|
|
expires: sea_orm::ActiveValue::Set(chrono::Utc::now() + std::time::Duration::from_secs(3600 * 6)),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.exec(ctx.db())
|
|
|
|
.await.map_err(|_| StatusCode::INTERNAL_SERVER_ERROR)?;
|
|
|
|
Ok(Json(serde_json::Value::String(token)))
|
|
|
|
},
|
|
|
|
Ok(None) => Err(StatusCode::UNAUTHORIZED),
|
|
|
|
Err(e) => {
|
|
|
|
tracing::error!("error querying db for user credentials: {e}");
|
|
|
|
Err(StatusCode::INTERNAL_SERVER_ERROR)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 02:30:43 +02:00
|
|
|
|
|
|
|
#[axum::async_trait]
|
|
|
|
pub trait APOutbox {
|
2024-04-08 02:52:51 +02:00
|
|
|
async fn create_note(&self, uid: String, object: serde_json::Value) -> crate::Result<String>;
|
|
|
|
async fn create(&self, uid: String, activity: serde_json::Value) -> crate::Result<String>;
|
2024-04-08 02:30:43 +02:00
|
|
|
async fn like(&self, uid: String, activity: serde_json::Value) -> crate::Result<String>;
|
|
|
|
async fn follow(&self, uid: String, activity: serde_json::Value) -> crate::Result<String>;
|
|
|
|
async fn accept(&self, uid: String, activity: serde_json::Value) -> crate::Result<String>;
|
|
|
|
async fn reject(&self, _uid: String, _activity: serde_json::Value) -> crate::Result<String>;
|
|
|
|
async fn undo(&self, uid: String, activity: serde_json::Value) -> crate::Result<String>;
|
|
|
|
}
|
2024-04-08 02:52:51 +02:00
|
|
|
|
|
|
|
#[axum::async_trait]
|
|
|
|
pub trait APInbox {
|
|
|
|
async fn create(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn like(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn follow(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn accept(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn reject(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn undo(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn delete(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
async fn update(&self, activity: serde_json::Value) -> crate::Result<()>;
|
|
|
|
}
|